commit 0c3938f33f0a9eae849425a1dd9876f44c98a229 Author: Claudio Saavedra Date: Mon May 12 15:38:40 2014 +0300 ephy-web-view: do not clear typed address on first load Previously, the first page loaded in a webview would be done with before the user had any chance to type an address, so it was safe to assume that any typed address could be cleared during page loads, as they would always come from previously loaded pages. Now that the process of creating a webview is different and involves spawning a web process that needs to be ready before the initial page can be loaded, it might be possible for users to type an address before this is ready. This breaks the previous assumption and needs to be dealt with, in order to avoid cleaning up typed text during the initial page load. Additionally, it makes sense to make set_address() a no-op if the given address is the same as the currently loaded. https://bugzilla.gnome.org/show_bug.cgi?id=728143 embed/ephy-web-view.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 404a6eed5146c550d893223232e051b24bb6e2fa Author: Carles Ferrando Date: Fri May 9 00:30:48 2014 +0200 [l10n] Updated Catalan (Valencian) translation po/ca@valencia.po | 1750 ++++++++++++++++++++++++++++------------------------- 1 file changed, 937 insertions(+), 813 deletions(-) commit dba804f3e32bbc6c589d48d2387b6d540e38ffa2 Author: Yosef Or Boczko Date: Wed May 7 19:57:19 2014 +0300 Revert "ephy-title-box: Show correctly UTF-8 URL" This reverts commit 0eeb2c28ea751c6625e42177bf39b6ce0ae4abc7. src/ephy-title-box.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) commit 152aa65c7a425b65422ace813701fc3dfc275a82 Author: Yosef Or Boczko Date: Wed May 7 19:57:10 2014 +0300 Revert "nautilus-floating-bar: Show correctly UTF-8 URL" This reverts commit 2881a32296e04f0c6f721317d2c247da31926594. lib/widgets/nautilus-floating-bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a236fe62d9109cab0b000a5d242c0c2ef9c51ced Author: Yosef Or Boczko Date: Wed May 7 19:57:03 2014 +0300 Revert "Allow sorting by date, title or url in the history dialog." This reverts commit c3c38edbf82a4697078e658c3cda442ff5ac7229. lib/history/ephy-history-service-urls-table.c | 12 ----- lib/history/ephy-history-types.h | 6 +-- src/ephy-history-window.c | 68 +-------------------------- src/resources/history-dialog.ui | 10 +--- 4 files changed, 5 insertions(+), 91 deletions(-) commit 3cb7c78008502bafb3e07724fb95f79381ecef30 Author: Yosef Or Boczko Date: Wed May 7 19:56:54 2014 +0300 Revert "Fill the history window asynchronously when resorted." This reverts commit b3f380d41c779643216ac805f6e089cb97802ec6. src/ephy-history-window.c | 64 ++++++++--------------------------------------- 1 file changed, 10 insertions(+), 54 deletions(-) commit 56e16902ca8070c5205542a9720347d9fa5a91cb Author: Yosef Or Boczko Date: Wed May 7 19:56:42 2014 +0300 Revert "ephy-window: Make F6 focus address entry" This reverts commit 8b8ad903d686d8e8f5bd31aedb47635778fc4864. src/ephy-window.c | 1 - 1 file changed, 1 deletion(-) commit a3058d223a3d141caf275b330cd0998d7c646254 Author: William Jon McCann Date: Wed May 7 09:47:28 2014 -0400 Make location bar linked src/ephy-title-box.c | 1 + 1 file changed, 1 insertion(+) commit 8b8ad903d686d8e8f5bd31aedb47635778fc4864 Author: Yosef Or Boczko Date: Sun Apr 27 20:47:53 2014 +0300 ephy-window: Make F6 focus address entry https://bugzilla.gnome.org/show_bug.cgi?id=729060 src/ephy-window.c | 1 + 1 file changed, 1 insertion(+) commit b3f380d41c779643216ac805f6e089cb97802ec6 Author: Robert Roth Date: Fri Feb 28 16:49:42 2014 +0200 Fill the history window asynchronously when resorted. https://bugzilla.gnome.org/review?bug=699519 In case the history window contents are resorted, to avoid freezing the user interface, do the following: * register a source to process the url list received from the service one url at a time, by adding it to the model, and freeing the url * in case it is finished or another sort is done, remove the source, and free the list it was processing * as clearing the liststore while it is set to a treeview emits the row deleted signal for each row, the liststore is set to null before clearing, it is cleared, and then set again for the treeview * as setting the model again resets the sort column and indicator on the treeview, those attributes must be set again. src/ephy-history-window.c | 64 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 54 insertions(+), 10 deletions(-) commit c3c38edbf82a4697078e658c3cda442ff5ac7229 Author: Robert Roth Date: Wed Feb 19 15:34:38 2014 +0200 Allow sorting by date, title or url in the history dialog. https://bugzilla.gnome.org/show_bug.cgi?id=699519 Implemented by: * adding the proper sorting enum values in the history service * using the order by in query statements based on the enum values * overriding the column header clicked event to change the sorting order and/or direction * reloading the data from the history service on column header clicks lib/history/ephy-history-service-urls-table.c | 12 +++++ lib/history/ephy-history-types.h | 6 ++- src/ephy-history-window.c | 68 ++++++++++++++++++++++++++- src/resources/history-dialog.ui | 10 +++- 4 files changed, 91 insertions(+), 5 deletions(-) commit 2881a32296e04f0c6f721317d2c247da31926594 Author: Yosef Or Boczko Date: Fri Feb 28 15:17:41 2014 +0200 nautilus-floating-bar: Show correctly UTF-8 URL https://bugzilla.gnome.org/show_bug.cgi?id=710004 lib/widgets/nautilus-floating-bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 0eeb2c28ea751c6625e42177bf39b6ce0ae4abc7 Author: Yosef Or Boczko Date: Fri Feb 28 12:53:41 2014 +0200 ephy-title-box: Show correctly UTF-8 URL https://bugzilla.gnome.org/show_bug.cgi?id=710004 src/ephy-title-box.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 92e22257a1156481705567eafef447cb766aa3e2 Author: Dirgita Date: Thu Apr 24 06:16:49 2014 +0000 Updated Indonesian translation po/id.po | 126 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 64 insertions(+), 62 deletions(-) commit 765621f627f7b311683d42a65f43b314aae392c2 Author: Alexandre Franke Date: Thu Apr 17 17:36:09 2014 +0200 Update French translation help/fr/figures/epiphany-3-12.png | Bin 0 -> 181989 bytes help/fr/figures/private-browsing-3-12.png | Bin 0 -> 88082 bytes help/fr/fr.po | 5 ++++- 3 files changed, 4 insertions(+), 1 deletion(-) commit fb20c1edd72d99396157f1039a025545c1a30ce8 Author: Daniel Mustieles Date: Tue Apr 15 14:16:44 2014 +0200 Updated Spanish translation po/es.po | 267 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 133 insertions(+), 134 deletions(-) commit 13996e35ab795c367ada9256d021605dd03dec1c Author: Daniel Mustieles Date: Tue Apr 15 14:16:33 2014 +0200 Updated Spanish translation help/es/es.po | 62 +++-------------------------------------------------------- 1 file changed, 3 insertions(+), 59 deletions(-) commit 0c050be0a1cd2196c85967be390bfa751d64457a Author: Bastien Nocera Date: Mon Apr 14 13:51:10 2014 +0200 embed: Fix crash with some password forms 31bc1fe6 transformed a simple escape hatch of a comparison into an assertion. But that assertion keeps getting triggered, so it's clearly the wrong option for now. https://bugzilla.gnome.org/show_bug.cgi?id=723909 embed/ephy-web-view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 283c09ddae2288ddf52bb4ef0c5eaf8314c92727 Author: Bastien Nocera Date: Sat Mar 22 15:51:10 2014 +0100 embed: Add debug when a web page is blocked Should help with fixing bugs in an overzealous AdBlock. https://bugzilla.gnome.org/show_bug.cgi?id=726883 embed/web-extension/ephy-web-extension.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit acf689ffff506cd9d22fc68f4a585f6a8557a32a Author: maria thukididu Date: Fri Apr 4 15:11:06 2014 +0300 Updated Greek translation help/el/el.po | 733 ++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 454 insertions(+), 279 deletions(-) commit 81e250648a453249fc34ec4c3acfb07b80f34ef0 Author: Matej Urbančič Date: Thu Apr 3 20:07:53 2014 +0200 Updated Slovenian translation po/sl.po | 45 +++++++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 26 deletions(-) commit a945d01c7ed0474d321076ef476ebab2e12f8a65 Author: Pau Iranzo Date: Tue Apr 1 00:13:50 2014 +0200 [l10n] Update Catalan translation po/ca.po | 1749 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 937 insertions(+), 812 deletions(-) commit c0d4819cc5af0db0da5ba12aff57e29a78f16160 Author: Matej Urbančič Date: Mon Mar 31 22:30:19 2014 +0200 Updated Slovenian translation po/sl.po | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) commit 9095d5f8c74985ef56a66531fef5b838a06d80c8 Author: Matej Urbančič Date: Mon Mar 31 22:23:54 2014 +0200 Updated Slovenian translation po/sl.po | 901 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 401 insertions(+), 500 deletions(-) commit d424b4b141513b6c46fabe475a190e810751fdf0 Author: Carlos Garcia Campos Date: Mon Mar 31 14:49:49 2014 +0200 totem-glow-button: Do not add the custom CSS provider for every instance Since we are adding a global CSS for the default screen, we don't need to load and add the CSS for every instance we create. lib/widgets/totem-glow-button.c | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) commit 0af46320de37ef74102a891ab4b4874e7c9e37e6 Author: Carlos Garcia Campos Date: Mon Mar 31 14:45:23 2014 +0200 totem-glow-button: Fix memory leak GtkStyleContext takes a reference of the GtkCssProvider, so release ours when no longer needed. lib/widgets/totem-glow-button.c | 1 + 1 file changed, 1 insertion(+) commit 3b425285ffd6f331c93458bbf6236c474f3e1f4d Author: Thomas Perl Date: Mon Mar 31 14:37:23 2014 +0200 location-entry: Make CTRL+l work when the completion menu is shown When the completion popup menu is shown, it has an active keyboard grab that prevents the key events from being handled by the window. Handle the CTRL+l shortcut in the location entry to activate the entry when the completion popup menu is visible. https://bugzilla.gnome.org/show_bug.cgi?id=611435 lib/widgets/ephy-location-entry.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) commit 954b1ab6766a3f50172feb6abd0eecce4f6af4f4 Author: Piotr Drąg Date: Sun Mar 30 19:10:01 2014 +0200 doap: update URLs epiphany.doap | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 6fd9b597de083b0028776f8b886097eed2e5abf9 Author: Yosef Or Boczko Date: Fri Mar 28 16:27:16 2014 +0300 Updated Hebrew translation po/he.po | 248 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 124 insertions(+), 124 deletions(-) commit 8a9034ec8104c25f2a69a47c0a7376cbbdf292df Author: maria thukididu Date: Fri Mar 28 09:46:24 2014 +0200 Updated Greek translation po/el.po | 1160 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 566 insertions(+), 594 deletions(-)