From f6eadee5d99e3d8c9fc79fd14d994038552537a0 Mon Sep 17 00:00:00 2001 From: H <11689349+yokoffing@users.noreply.github.com> Date: Tue, 16 May 2023 12:39:30 -0400 Subject: [PATCH] Fastfox 113 (#168) * about:home cache is now default: https://blog.nightly.mozilla.org/2023/05/05/short-but-sweet-these-weeks-in-firefox-issue-137/ * NVIDIA RTX Video Super Resolution * add bugzilla ref --- Fastfox.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Fastfox.js b/Fastfox.js index c7c1d4e..7775e8d 100644 --- a/Fastfox.js +++ b/Fastfox.js @@ -3,7 +3,7 @@ * Fastfox * * "Non ducor duco" * * priority: speedy browsing * - * version: 111 * + * version: 113 * * url: https://github.com/yokoffing/Betterfox * ***************************************************************************************/ @@ -78,11 +78,6 @@ user_pref("browser.startup.preXulSkeletonUI", false); * SECTION: EXPERIMENTAL * ****************************************************************************/ -// PREF: about:home startup cache [NIGHTLY] -// A cache for the initial about:home document that is loaded by default at startup -// The purpose of the cache is to improve startup performance -//user_pref("browser.startup.homepage.abouthome_cache.enabled", true); - // PREF: CSS Masonry Layout [NIGHTLY] // [1] https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout user_pref("layout.css.grid-template-masonry-value.enabled", true); @@ -150,6 +145,12 @@ user_pref("dom.enable_web_task_scheduling", true); // [1] https://codecalamity.com/animated-avif-is-finally-coming-to-firefox/ //user_pref("image.avif.sequence.enabled", true); +// PREF: NVIDIA RTX Video Super Resolution for video overlay [WINDOWS] +// This is also a setting in NVIDIA's driver settings, so once this is +// stable, it should default to true. +// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1823135 +//user_pref("gfx.webrender.super-resolution.nvidia", true); + /**************************************************************************** * SECTION: MAKE FIREFOX FAST * * [NOTE] The following is not recommended for low-end machines *