diff --git a/ChangeLog b/ChangeLog index e0050537..670ef6b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ This file is licensed under the terms of the expat license, see the file EXPAT. -v0.3.1 +v0.3.2 + + Fix opening address with Go button + Fix automigration of existing bookmarks + Fix crash on opening autocompletion + Fix adblock handling of frames diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 087869aa..0974f9c9 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -3597,7 +3597,10 @@ _action_location_secondary_icon_released (GtkAction* action, } } else if (gtk_window_get_focus (GTK_WINDOW (browser)) == widget) - _action_location_submit_uri (action, uri, FALSE, browser); + { + const gchar* text = gtk_entry_get_text (GTK_ENTRY (widget)); + _action_location_submit_uri (action, text, FALSE, browser); + } else if ((feed = g_object_get_data (G_OBJECT (view), "news-feeds"))) { KatzeArray* news_feeds; diff --git a/wscript b/wscript index 341cc39e..32775265 100644 --- a/wscript +++ b/wscript @@ -29,7 +29,7 @@ from Configure import find_program_impl major = 0 minor = 3 -micro = 1 +micro = 2 APPNAME = 'midori' VERSION = str (major) + '.' + str (minor) + '.' + str (micro)