summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Occitan translationgnome-3-14Cédric Valmary2016-04-191-884/+1941
|
* Updated Portuguese translationPedro Albuquerque2015-10-221-441/+686
|
* Fix clearing all passwords from the clear data dialogMichael Catanzaro2015-09-211-2/+3
| | | | | | | | | | | | | | Epiphany saves passwords with EPHY_FORM_PASSWORD_SCHEMA. If we want to delete the passwords we've saved, we have to pass that schema to libsecret. Using the SECRET_SCHEMA_COMPAT_NETWORK guarantees we will only delete passwords saved by other apps, and none of our own passwords. Exception: WebKitGTK+ is saving HTTP auth passwords with SECRET_SCHEMA_COMPAT_NETWORK. This change means those passwords will no longer be deleted, which is non-ideal. https://bugzilla.gnome.org/show_bug.cgi?id=755190
* Don't overwrite page titles in historyMichael Catanzaro2015-09-082-1/+3
| | | | | | | | | | | | | When loading a page, we schedule two history updates: the first to reset the page's title to the empty string (when the web view's title property is unset after load started) and the second to set the page's title properly. The first history update is obviously a mistake. It seems like it should be harmless, so long as the page load is allowed to complete, but avoiding it seems to solve the bug where pages appear in the history dialog with URLs for the title, and it's clearly wrong, so let's stop doing this. https://bugzilla.gnome.org/show_bug.cgi?id=741385
* Be more careful with weak pointersMichael Catanzaro2015-07-032-0/+8
| | | | | | | | As a follow-up to bug #747422, be careful to remove weak pointers to objects when it appears that the lifetime of the object can outlive the lifetime of the memory location of the pointer. https://bugzilla.gnome.org/show_bug.cgi?id=751858
* ephy-web-view: Clean up after outliving web extension proxiesCarlos Garnacho2015-07-031-0/+6
| | | | | | | | | | | | If the EphyWebView is destroyed before the EphyWebExtensionProxy it's attached to does, we'll leave a dangling weak pointer, which will nullify random memory at the time the web extension proxy is actually destroyed. So, prepare for undoing the effects of page_created_cb() in case we ::dispose() when we still have a web extension attached. https://bugzilla.gnome.org/show_bug.cgi?id=747422
* Updated Bosnian translationSamir Ribic2015-03-141-2647/+2028
|
* Fix UI process crash if the web process crashes on startMichael Catanzaro2015-03-041-1/+5
| | | | | | | | | | | | | | | Currently there is a WebKit bug that causes the web process to crash when we use webkit_web_view_load_alternate_html() on a local page, say because Epiphany was closed when a file:// URI was opened in an embed other than the focused embed. That crash occurs after web_extension_appeared_cb() but prior to web_extension_proxy_created_cb(), triggering a call to web_extension_vanished_cb(), which deletes the EphyWebExtensionProxy object that is expected to still be alive when web_extension_proxy_created_cb() is called, crashing the UI process. We can fix this with a ref/unref pair. https://bugzilla.gnome.org/show_bug.cgi?id=744896
* Fix crash when receiving a NULL string from DOM bindingsMichael Catanzaro2015-02-281-3/+3
| | | | | | | | | | | As of WebKitGTK+ 2.6.5: "Object DOM bindings API now correctly returns NULL intead of empty strings to be able to differentiate between not present and present but empty." This was causing crashes on e.g. http://www.publico.pt/local/noticia/sindicato-anuncia-adiamento-de-greve-no-metro-de-lisboa-1687386 https://bugzilla.gnome.org/show_bug.cgi?id=745306
* Updated Slovenian translationMatej Urbančič2015-02-231-8/+25
|
* Updated Turkish translationNecdet Yücel2015-02-201-248/+596
|
* Updated Slovenian translationMatej Urbančič2015-02-141-194/+387
|
* Fix crash when we can't connect to the session busMichael Catanzaro2015-02-121-4/+1
| | | | | | | This GError is never initialized. g_application_get_dbus_connection() does not take a GError. https://bugzilla.gnome.org/show_bug.cgi?id=744360
* Updated German translationChristian Kirbach2014-12-161-187/+267
|
* Don't crash when a database access failsMichael Catanzaro2014-12-105-61/+61
| | | | | | | | Database accesses can fail for many reasons, none of which merit a crash. In particular, this should fix https://bugzilla.redhat.com/show_bug.cgi?id=1065494 https://bugzilla.gnome.org/show_bug.cgi?id=740396
* prefs-dialog: Make sure locale changes do not lose search engineClaudio Saavedra2014-12-092-3/+16
| | | | | | | Add a stock unstranslatable url to be stored in gsettings so that locale changes do not confuse the settings dialog. https://bugzilla.gnome.org/show_bug.cgi?id=741255
* prefs-dialog: plug a leaked stringClaudio Saavedra2014-12-091-0/+1
|
* Finnish translation updateLasse Liehu2014-11-151-162/+122
|
* [release] 3.14.23.14.2Claudio Saavedra2014-11-102-1/+7
|
* Add workaround for missing view source modeMichael Catanzaro2014-10-181-0/+4
| | | | | | We'll open the source in the default text editor instead https://bugzilla.gnome.org/show_bug.cgi?id=738475
* [release] 3.14.13.14.1Claudio Saavedra2014-10-142-1/+15
|
* tests: disable broken casesClaudio Saavedra2014-10-141-6/+6
| | | | | A page that doesn't load won't have a proper uri, so disable that. The about pages, not sure yet, but there's a release to make.
* window: Ignore new-window-in-tabs setting in application modeCarlos Garcia Campos2014-10-141-4/+5
| | | | | | There are no tabs in application mode. https://bugzilla.gnome.org/show_bug.cgi?id=712402
* app-mode: Make sure external links are openend in the default web browserCarlos Garcia Campos2014-10-141-8/+44
| | | | | | | | | Some sites like gmail, open external links by first opening an empty window and then loading the URL in that window. In that case we need to wait until we know the URL to decide whether to show the window, or open the request in the default browser. https://bugzilla.gnome.org/show_bug.cgi?id=658395
* window: Simplify the code to open external uris in default browser when in ↵Carlos Garcia Campos2014-10-141-32/+6
| | | | | | | | app mode Use ephy_embed_utils_urls_have_same_origin() to check if the target URL is external or not and ephy_file_open_uri_in_default_browser() to open the URL in the default browser if it's external.
* embed: Add ephy_embed_utils_urls_have_same_origin()Carlos Garcia Campos2014-10-142-0/+24
| | | | Helper function to check if two URLs have the same origin
* file-helpers: Add ephy_file_open_uri_in_default_browser()Carlos Garcia Campos2014-10-142-0/+36
| | | | Helper function to open the given uri in the default browser
* app-mode: Use shared secondary process model for web app modeCarlos Garcia Campos2014-10-141-1/+5
| | | | | External links that might broke the app are opened in a external browser, so better use a single web process for all web app windows.
* Do not show weird context menu entries in app modeMichael Catanzaro2014-10-101-4/+7
| | | | | | | "Inspect element" and "Send Link by Email" should not be shown in app mdoe. https://bugzilla.gnome.org/show_bug.cgi?id=699584
* Updated Italian translationGianvito Cavasoli2014-10-051-238/+370
|
* ephy-embed-shell: make history read-only in incognito modeClaudio Saavedra2014-10-031-1/+2
| | | | | Whatever is searched in a incognito session shouldn't go to the history, not even if this will be deleted afterwards.
* Add support for mhtml files to desktop fileMichael Catanzaro2014-10-021-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=737738
* Updated Chinese (Taiwan) translationCheng-Chia Tseng2014-10-021-146/+131
|
* Use a GtkMenuButton for the window menu and remove EphyPageMenuActionMichael Catanzaro2014-10-015-267/+19
| | | | | | This fixes the style of the button when it is active with GTK+ 3.14. https://bugzilla.gnome.org/show_bug.cgi?id=737688
* Updated Latvian translationRūdolfs Mazurs2014-09-281-260/+409
|
* configure.ac: bump libsoup version requirementAndres Gomez2014-09-261-1/+1
| | | | | | | | Since the update in some deprecated soup API, we are using new one only present sin 2.48.0, so bump to it. https://bugzilla.gnome.org/show_bug.cgi?id=737452
* Fix download failure when overwriting fileMichael Catanzaro2014-09-251-0/+4
| | | | | | | | | When using e.g. Save Image As, if the user tries to save a download over an existing file we prompt him to confirm that he wishes to delete the original file. Then the download fails. Actually delete the original file instead. https://bugzilla.gnome.org/show_bug.cgi?id=737329
* update zh_CN translationYunQiang Su2014-09-251-110/+52
|
* [release] 3.14.03.14.0Claudio Saavedra2014-09-242-2/+16
|
* update zh_CN translationTong Hui2014-09-231-161/+397
|
* Updated Dutch translationReinout van Schouwen2014-09-231-594/+777
|
* Revert "search provider: open result in default browser"Michael Catanzaro2014-09-221-22/+5
| | | | | | This reverts commit faaa23cb8956336fcd16258fd74ab9f69c01e438. https://bugzilla.gnome.org/show_bug.cgi?id=720245
* Updated Greek translationDimitris Spingos2014-09-221-136/+243
|
* Updated Hebrew translationYosef Or Boczko2014-09-221-30/+30
|
* Updated Greek translationMaria Mavridou2014-09-211-44/+53
|
* Updated Hungarian translationBalázs Úr2014-09-211-138/+243
|
* appdata: update screenshotMichael Catanzaro2014-09-201-0/+0
|
* Updated Spanish translationDaniel Mustieles2014-09-201-137/+240
|
* Revert "Updated Spanish translation"Daniel Mustieles2014-09-201-240/+137
| | | | This reverts commit 72be94914491c550717e393ce84318bfd6875ebd.
* Revert "Updated Spanish translation"Daniel Mustieles2014-09-201-1059/+1639
| | | | This reverts commit bf4fe4abc98d83b8da63ba61f8687aa6fae51dc6.