diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 67 | ||||
-rw-r--r-- | configure.in | 13 | ||||
-rw-r--r-- | embed/mozilla/GlobalHistory.cpp | 16 |
4 files changed, 79 insertions, 25 deletions
@@ -1,3 +1,11 @@ +2003-08-03 Marco Pesenti Gritti <marco@it.gnome.org> + + * NEWS: + * configure.in: + * embed/mozilla/GlobalHistory.cpp: + + 0.8.2. Drop mozilla 1.3 compatibility. + 2003-08-02 Marco Pesenti Gritti <marco@it.gnome.org> * src/ephy-notebook.c: (find_tab_num_at_pos), (button_press_cb): @@ -1,4 +1,71 @@ ============== +Epiphany 0.8.2 +============== + +Code changes + + * Improve toolbar editor api for costum items (Marco) + * Rework find implementation to integrate better + with type ahead and to simplify the code (Marco) + * Usual memory leaks fixes (Christian Persch) + * Add some comments for translators (Christian Persch, Marco) + * Use string valid also externally for drag and drop + Url for bookmarks, a special uri for topics (Marco) + * Cleanup toolbars model (Marco) + * Set a version on the toolbar xml and make it low disk safe (Marco) + +Interface improvements + + * Allow drag and drop of urls on the bookmarks toolbar (Xan Lopez) + * Disable smooth scroll and image autoresize (Marco) + * Remove useless icons from the print dialog (Marco) + * Fix incosistency between all topic on the toolbar and bookmarks menu (Marco) + * If the page is about:blank, set title to "Blank page" (Christian Persch) + * More friendly description for cache preferences (Marco) + * Add a show in bookmarks toolbar item on the bookmarks editor + context menu (Marco) + * Always open bookmarks and history pages in new window/tab according + to pref on double click (Marco) + +Bugfixes + + * Fix a crash when mozilla returns no system fonts on enumeration (Marco) + * Remove bookmarks from the toolbar also when no windows are open (Marco) + * If there are invalid bookmarks in the toolbar dont crash on startup + but remove them (Marco) + * Support mozilla language packs (Christian Persch) + * Fix type ahead/normal find interaction (Marco) + * Fixes transparency issue on tab label and site icon (Christian Persch) + * Do not try to open javascript links in new tab with + middle click (Marco) + * Fix crash when deleting all bookmarks/cookies (Christian Persch) + * Fix session management, typo in the executable name (Nikolai Weibull) + * Fix dialogs properties persistance (Marco) + * Fix a crash when clicking on bookmarks while exiting fullscreen (Marco) + +Translations + + * Dutch manual (Reinout van Schouwen) + + * be (Dmitry G. Mastrukov) + * cy (Keith Willoughby) + * cs (Miloslav Trmac) + * de (Christian Neumair) + * el (Nikos Charonitakis) + * en_GB (Christian Persch) + * es (Francisco Javier Fernandez) + * fi (Pauli Virtanen) + * ms (Hasbullah Bin Pit) + * nl (Vincent van Adrighem) + * pl (Artur Flinta) + * pt (Duarte Loreto) + * pt_BR (Evandro Fernandes Giovanini) + * sr (Danilo Segan) + * sr@Latn (Danilo Segan) + * sv (Christian Rose) + * zh_CN (Wang Jian) + +============== Epiphany 0.8.0 ============== diff --git a/configure.in b/configure.in index bcd4281aa..51d828757 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(epiphany, 0.8.1, +AC_INIT(epiphany, 0.8.2, [http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany]) EPIPHANY_MAJOR=1.0 @@ -146,26 +146,21 @@ MOZILLA_VERSION="`$PKG_CONFIG --modversion mozilla-gtkmozembed`" dnl allow user to override the autodetected mozilla version dnl - without arguments for cvs head AC_ARG_WITH(mozilla-snapshot, - AC_HELP_STRING([--with-mozilla-snapshot@<:@=1.3|1.3.1|1.4a|1.4|trunk@:>@], - [Whether to try building against mozilla 1.3|1.3.1|1.4a|1.4|trunk + AC_HELP_STRING([--with-mozilla-snapshot@<:@=1.4|trunk@:>@], + [Whether to try building against mozilla 1.4|trunk snapshot. @<:@guessed@:>@]), [autodetect=" (guessed: $MOZILLA_VERSION)"; MOZILLA_VERSION="$withval"]) AC_MSG_RESULT($MOZILLA_VERSION$autodetect) case "$MOZILLA_VERSION" in - 1.3) MOZILLA_SNAPSHOT=6 ;; -1.3.1) MOZILLA_SNAPSHOT=6 ;; - "") MOZILLA_SNAPSHOT=7 ;; - 1.4a) MOZILLA_SNAPSHOT=7 ;; - 1.4b) MOZILLA_SNAPSHOT=7 ;; 1.4) MOZILLA_SNAPSHOT=8 ;; 1.5a) MOZILLA_SNAPSHOT=9 ;; 1.5b) MOZILLA_SNAPSHOT=9 ;; trunk) MOZILLA_SNAPSHOT=9 ;; *) AC_ERROR([ ***************************************************************************** -Epiphany can be built using Mozilla 1.3, 1.3.1, 1.4a, 1.4b, 1.4, 1.5a, 1.5b or +Epiphany can be built using Mozilla 1.4, 1.5a, 1.5b or trunk snapshot, but the version available is $MOZILLA_VERSION. When using Mozilla trunk snapshot, a successful build is not guaranteed due diff --git a/embed/mozilla/GlobalHistory.cpp b/embed/mozilla/GlobalHistory.cpp index 24aff6f7f..62a5cfb75 100644 --- a/embed/mozilla/GlobalHistory.cpp +++ b/embed/mozilla/GlobalHistory.cpp @@ -109,22 +109,6 @@ NS_IMETHODIMP MozGlobalHistory::GetCount(PRUint32 *aCount) return NS_ERROR_NOT_IMPLEMENTED; } -#if MOZILLA_SNAPSHOT <= 7 - -/* void startBatchUpdate (); */ -NS_IMETHODIMP MozGlobalHistory::StartBatchUpdate() -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -/* void endBatchUpdate (); */ -NS_IMETHODIMP MozGlobalHistory::EndBatchUpdate() -{ - return NS_ERROR_NOT_IMPLEMENTED; -} - -#endif - /* void markPageAsTyped (in string url); */ NS_IMETHODIMP MozGlobalHistory::MarkPageAsTyped(const char *url) { |