aboutsummaryrefslogtreecommitdiffstats
path: root/data/org.gnome.epiphany.gschema.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add gsettings key "extract-downloaded-archives"Ting-Wei Lan2013-07-071-0/+5
|
* Add setting for delayed tab loading, and use it to fix the session testsGustavo Noronha Silva2013-02-241-0/+5
| | | | | | | | | | | | | The session tests were broken by the delayed tab loading feature - the restored embeds would not finish loading and thus the expectations for the URIs were not met. This change adds a setting that is now used by those tests to disable the feature temporarily. Also revert "ephy-session-test: make tests pass", which is no longer necessary. This reverts commit 75da5fff3f4489dacf4ded6f012daa06af306709. https://bugzilla.gnome.org/show_bug.cgi?id=694470
* Remove ability to open URIs in the clipboard through middle clickXan Lopez2013-01-181-5/+0
| | | | | This is disabled by default, pretty obscure, and problematic to port properly to WebKit2. So just drop the code.
* Remove extensions supportXan Lopez2012-10-081-5/+0
| | | | | | | This removes the old style extension support, you can read the rationale in the bug report. https://bugzilla.gnome.org/show_bug.cgi?id=685630
* Add adblock GSetting, use itXan Lopez2012-10-021-0/+5
| | | | | | | org.gnome.epiphany.web.enable-adblock, controls whether adblock is enabled (globally). https://bugzilla.gnome.org/show_bug.cgi?id=681657
* Settings: add a enable-webaudio setting.Philippe Normand2012-08-021-0/+5
| | | | | | WebAudio support in WebKitGTK is not stable yet but it would be good to allow Epiphany users to test this feature nonetheless. The enable-webaudio gsetting is set to false by default.
* Add support for 'Do Not Track'Xan Lopez2012-05-191-0/+5
| | | | | | | If the org.gnome.Epiphany.web.do-not-track setting is enabled, we'll send the DNT: 1 header with every outbound request we make. See http://donottrack.us/ for more details.
* Add an option to never show the tabs barXan Lopez2012-04-161-1/+1
| | | | We'll use this when we land the Overview.
* Create a new 'tabs-bar-visibility-policy' settingXan Lopez2012-04-161-2/+7
| | | | | | We need this to be an enum, since we'll a third option in the future for the Overview (to never show the tabs bar). For now just add the two values we have now and migrate the code and the user data.
* Add a 'crashed' option to the session restore policyXan Lopez2012-04-121-1/+1
| | | | | | | | | With this policy the session will only be restored if the application has exited unexpectedly, but not if the user manually closes it. There are no code changes needed for this to work, having a (valid) different value than always/never in the setting makes things just work.
* Add a setting to control whether the session is automatically restoredXan Lopez2012-04-121-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We add a new gsettings key, 'restore-session-policy', with two valid values: 'always' and 'never'. A brief explanation of our session state mechanism follows. There are three ways to exit Epiphany: 1) Activate 'Quit' in the application menu 2) Close the last application window 3) Kill the process manually, SIGSEGV, or other similar unexpected event. For 1) and 2), we'll now do the same thing: a) Call ephy_session_close b) Exit the application manually ephy_session_close will check the new restore-session-policy setting, and only save the session state if it's set to 'always'. Before it used to manually destroy all present windows. We now let EphyShell or EphyWindow do this, EphySession only manages the session state saving. For 3), the process will die with the state saved up to that point, there's nothing we can do. For that reason, on startup also check the new setting; if it's set to 'never' ignore the session state, open a window in the homepage, and delete the old state file. https://bugzilla.gnome.org/show_bug.cgi?id=673453
* Remove the 'disable-menubar' optionXan Lopez2012-03-301-3/+0
| | | | Since we don't have one anymore.
* Remove 'show-boomkarks-bar' optionXan Lopez2012-03-301-4/+0
| | | | Since we don't have one anymore.
* build: intltool 0.50 add proper support for gsettings schemasJavier Jardón2012-03-291-0/+258
Its not needed to use the .in hack anymore Fixes https://bugzilla.gnome.org/show_bug.cgi?id=672932