diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | doc/reference/tmpl/ephy-embed.sgml | 3 | ||||
-rw-r--r-- | lib/ephy-file-chooser.c | 4 |
5 files changed, 20 insertions, 5 deletions
@@ -1,3 +1,18 @@ +2004-11-29 Christian Persch <chpe@cvs.gnome.org> + + * NEWS: + * configure.ac: + * doc/reference/tmpl/ephy-embed.sgml: + * lib/ephy-file-chooser.c: (ephy_file_chooser_add_pattern_filter): + + Version 1.5.2. + +2004-11-28 Vincent Untz <vincent@vuntz.net> + + * src/bookmarks/ephy-bookmarksbar-model.c: (impl_get_item_id): + + Fixes leak. + 2004-11-28 Christian Persch <chpe@cvs.gnome.org> * src/ephy-notebook.c: (ephy_notebook_add_tab): @@ -60,6 +60,7 @@ Bug fixes * Fix some string comparision bugs in event context * Fix out-of-srcdir build (Marco, Christian) * Don't raise window on --new-tab [#158923] + * Fix a mem leak (Vincent Untz) Documentation updates diff --git a/configure.ac b/configure.ac index b2c876a76..c126405b3 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl You should have received a copy of the GNU General Public License along dnl with this program; if not, write to the Free Software Foundation, Inc., dnl 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -AC_INIT([GNOME Web Browser],[1.5.1.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany]) +AC_INIT([GNOME Web Browser],[1.5.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany]) GNOME_COMMON_INIT diff --git a/doc/reference/tmpl/ephy-embed.sgml b/doc/reference/tmpl/ephy-embed.sgml index aa6ecd5ce..90fa6f4c5 100644 --- a/doc/reference/tmpl/ephy-embed.sgml +++ b/doc/reference/tmpl/ephy-embed.sgml @@ -171,6 +171,8 @@ be done by casting). @: @: @: +@: +@: @: <!-- ##### SIGNAL EphyEmbed::ge-security-change ##### --> @@ -227,6 +229,7 @@ be done by casting). @shistory_get_pos: @shistory_go_nth: @get_security_level: +@show_page_certificate: @set_zoom: @get_zoom: @find_set_properties: diff --git a/lib/ephy-file-chooser.c b/lib/ephy-file-chooser.c index b9bccc588..d759416aa 100644 --- a/lib/ephy-file-chooser.c +++ b/lib/ephy-file-chooser.c @@ -173,8 +173,6 @@ ephy_file_chooser_get_persist_key (EphyFileChooser *dialog) return dialog->priv->persist_key; } -/* This function should really be in gtk+, see bug 142142 */ - GtkFileFilter * ephy_file_chooser_add_pattern_filter (EphyFileChooser *dialog, const char *title, @@ -204,8 +202,6 @@ ephy_file_chooser_add_pattern_filter (EphyFileChooser *dialog, return filth; } -/* This function should really be in gtk+, see bug 142142 */ - GtkFileFilter * ephy_file_chooser_add_mime_filter (EphyFileChooser *dialog, const char *title, |