From 71f89a3d8a4abbb6dd209d3dc9c3a7da23fddeb9 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 19 Feb 2011 23:38:34 +0100 Subject: [PATCH 1/2] Take text for Go button in location from the entry --- midori/midori-browser.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; From 4557f086ef9fff730a760a852f62afd4e769303b Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 20 Feb 2011 00:00:26 +0100 Subject: [PATCH 2/2] Bump version to 0.3.2 --- ChangeLog | 3 ++- wscript | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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/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)