allow thumbnail capturing for NTP and tab cycling
This commit is contained in:
parent
338a7974ac
commit
e417584a74
2 changed files with 19 additions and 5 deletions
|
|
@ -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.
|
||||
Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config.
|
||||
|
||||
# 7.4
|
||||
# 7.5
|
||||
|
||||
**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
|
||||
|
||||
**References**:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* 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
|
||||
|
|
@ -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 */
|
||||
defaultPref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
||||
defaultPref("media.memory_cache_max_size", 65536);
|
||||
// disable favicons in profile folder and page thumbnail capturing
|
||||
defaultPref("browser.shell.shortcutFavicons", false);
|
||||
defaultPref("browser.pagethumbnails.capturing_disabled", true);
|
||||
defaultPref("browser.shell.shortcutFavicons", false); // disable favicons in profile folder
|
||||
defaultPref("browser.helperApps.deleteTempFileOnExit", true); // delete temporary files opened with external apps
|
||||
|
||||
/** [SECTION] HISTORY AND SESSION RESTORE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue