diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 82 | ||||
-rw-r--r-- | configure.in | 3 | ||||
-rw-r--r-- | embed/Makefile.am | 2 | ||||
-rw-r--r-- | src/Makefile.am | 3 |
5 files changed, 96 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2003-07-15 Marco Pesenti Gritti <marco@it.gnome.org> + + * NEWS: + * configure.in: + * embed/Makefile.am: + * src/Makefile.am: + + 0.8.0. Make it distcheck. + 2003-07-14 Marco Pesenti Gritti <marco@it.gnome.org> * configure.in: @@ -1,4 +1,86 @@ ============== +Epiphany 0.8.0 +============== + +Code changes + + * Replace "0" with "false" in .desktop Terminal entries + (Jordi Mallach) + * Fix node signal emission to work on Freebsd and alpha + (Christian Persch) + * Sync content handler api with mozilla head (Xan Lopez) + * Remove use of acconfig.h (Marco) + * Gconf schema cleanups (Christian Persch) + * Remove last bits of nautilus theme support from the + spinner code (Christian Persch) + * Use url/name to store topics and bookmarks in the toolbar + configuration. This is more manteinable but toolbar + settings are lost (Marco) + * Improve bookmarks rdf format (Marco, Edd Dumbill) + * Freeze all xml formats and update version to 1.0. + Bookmarks are reimported from the rdf. + * Fix saving of smart bookmarks on the rdf (Lee Willis) + * Very simple plugin framework, unused for now (Marco) + * Cleanup header dependencies. Now we have a basic set + of independent headers that will be useful for the + plugins. (Marco) + +Interface improvements + + * Remove ellipses from find toolbar item (Dave Bordoley) + * Tooltip for location entry, navigation buttons, + go button (Christian Persch) + * Use normal google search for keywords instead of feel + lucky (Marco) + * Implement toolbar overflow menu item for bookmark + topics (Christian Persch) + * Use the browser icon from gnome icon theme (Marco) + * Ellipsise the bookmarks titles in topics menus (Christian Persch) + * Show an alert when mozilla cant start instead of crashing (Marco) + * Ever save bookmarks when changed (Marco) + * Implement toolbar overflow menu item for the + go button (Christian Persch) + * Show the document context menu on ctrl+f10 (Marco) + * Fast search for bookmarks and history. + Pressing a key will make ephy select the first entry begining with + that character (Xan Lopez) + * Shorten session history menu items (Christian Persch) + * Delete key remove personal data manager entries (Xan Lopez) + * Higgy titles for all file pickers (Marco) + +Bugfixes + + * Fix bug with location entry no more sensible on clicks (Marco) + * Fix utf8 handling in the preferences dialog (Christian Persch) + * Fix a lot of memory leaks (Christian Persch) + * Add a news:// protocol handler (Marco) + * Rewrite autocompletion selection logic (Marco) + * Fix Tab key binding in location entry (Marco) + * Fix page load progress update logic (Christian Persch) + * Update the spinner when a tab is removed (Christian Persch) + * Sync autocompletion searches color with theme changes + (Dave Bordoley) + * Fall back to about:blank when first page load fails (Marco) + * Actually show the list of fonts in preference dialog + entries (Marco) + +Updated translations + + * ar (Arafat Medini) + * da (Ole Laursen) + * de (Christian Neumair) + * en_GB (Christian Persch) + * es (Francisco Javier F. Serrador) + * ms (Hasbullah Bin Pit) + * nl (Vincent van Adrighem) + * pt_BR (Evandro Fernandes Giovanini) + * ru (Valek Filippov) + * sr (Danilo Segan) + * sr@Latn (Danilo Segan) + * sv (Christian Rose) + * zh_CN (Wang Jian) + +============== Epiphany 0.7.3 ============== diff --git a/configure.in b/configure.in index 627ebd613..e383bfc2a 100644 --- a/configure.in +++ b/configure.in @@ -161,10 +161,11 @@ case "$MOZILLA_VERSION" in 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 or +Epiphany can be built using Mozilla 1.3, 1.3.1, 1.4a, 1.4b, 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/Makefile.am b/embed/Makefile.am index 5ca9f0a3b..c4998b8bb 100644 --- a/embed/Makefile.am +++ b/embed/Makefile.am @@ -53,7 +53,7 @@ libephyembed_la_SOURCES = \ find-dialog.c \ print-dialog.c \ $(INST_H_FILES) \ - $(NO_INST_H_FILES) + $(NOINST_H_FILES) libephyembed_la_LIBADD = \ $(top_builddir)/embed/mozilla/libephymozillaembed.la diff --git a/src/Makefile.am b/src/Makefile.am index 1d3035800..29af4c2c8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -43,7 +43,7 @@ endif headerdir = $(prefix)/include/epiphany-@EPIPHANY_MAJOR@/epiphany header_DATA = $(INST_H_FILES) -NO_INST_H_FILES = \ +NOINST_H_FILES = \ ephy-automation.h \ ephy-encoding-menu.h \ ephy-favicon-action.h \ @@ -58,6 +58,7 @@ NO_INST_H_FILES = \ ephy-toolbars-model.h \ language-editor.h \ pdm-dialog.h \ + popup-commands.h \ prefs-dialog.h \ ppview-toolbar.h \ statusbar.h \ |