allow thumbnail capturing for NTP and tab cycling

This commit is contained in:
fxbrit 2023-01-27 00:37:54 +00:00
parent 338a7974ac
commit e417584a74
2 changed files with 19 additions and 5 deletions

View file

@ -1,10 +1,26 @@
This changelog will be used from now on to document changes in a precise manner, with a list of changes for each setting version. This changelog will be used from now on to document changes in a precise manner, with a list of changes for each setting version.
Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config. Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config.
# 7.4 # 7.5
**target commit**: **target commit**:
**base librewolf version**: 109.x
**References**:
- thumbnails are only used in privileged code to populate New Tab Page and Ctrl+Tab previews.
#### Removed preferences
```
defaultPref("browser.pagethumbnails.capturing_disabled", true);
```
# 7.4
**target commit**: b0d277a77b36e3bcc5c0f7a1b0eca7a54a388d9d
**base librewolf version**: 108.x **base librewolf version**: 108.x
**References**: **References**:

View file

@ -6,7 +6,7 @@
* *
* WARNING: make sure the first line of this file is empty. this is a known bug. * WARNING: make sure the first line of this file is empty. this is a known bug.
*/ */
lockPref("librewolf.cfg.version", "7.4"); lockPref("librewolf.cfg.version", "7.5");
/** INDEX /** INDEX
@ -60,9 +60,7 @@ defaultPref("browser.cache.disk.enable", false); // disable disk cache
/** prevent media cache from being written to disk in pb, but increase max cache size to avoid playback issues */ /** prevent media cache from being written to disk in pb, but increase max cache size to avoid playback issues */
defaultPref("browser.privatebrowsing.forceMediaMemoryCache", true); defaultPref("browser.privatebrowsing.forceMediaMemoryCache", true);
defaultPref("media.memory_cache_max_size", 65536); defaultPref("media.memory_cache_max_size", 65536);
// disable favicons in profile folder and page thumbnail capturing defaultPref("browser.shell.shortcutFavicons", false); // disable favicons in profile folder
defaultPref("browser.shell.shortcutFavicons", false);
defaultPref("browser.pagethumbnails.capturing_disabled", true);
defaultPref("browser.helperApps.deleteTempFileOnExit", true); // delete temporary files opened with external apps defaultPref("browser.helperApps.deleteTempFileOnExit", true); // delete temporary files opened with external apps
/** [SECTION] HISTORY AND SESSION RESTORE /** [SECTION] HISTORY AND SESSION RESTORE