From 7b3d41d91c28b2ed738fd731d456d020a3810b98 Mon Sep 17 00:00:00 2001 From: Hal <11689349+yokoffing@users.noreply.github.com> Date: Tue, 6 Jun 2023 13:34:30 -0400 Subject: [PATCH] Fastfox 113b (#171) * add early hints * slow upload speed bug fixed https://bugzilla.mozilla.org/show_bug.cgi?id=1596576 --- Fastfox.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Fastfox.js b/Fastfox.js index 7775e8d..f5b759c 100644 --- a/Fastfox.js +++ b/Fastfox.js @@ -3,7 +3,7 @@ * Fastfox * * "Non ducor duco" * * priority: speedy browsing * - * version: 113 * + * version: 113b * * url: https://github.com/yokoffing/Betterfox * ***************************************************************************************/ @@ -126,6 +126,7 @@ user_pref("dom.enable_web_task_scheduling", true); // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1795452 //user_pref("javascript.options.experimental.array_grouping", true); //user_pref("javascript.options.experimental.enable_change_array_by_copy", true); +//user_pref("javascript.options.experimental.enable_array_from_async", true); // PREF: indexedDB // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1112702 @@ -267,11 +268,6 @@ user_pref("network.http.max-persistent-connections-per-server", 10); // default= // PREF: increase TLS token caching user_pref("network.ssl_tokens_cache_capacity", 32768); // default=2048; more TLS token caching (fast reconnects) -// PREF: temporary fix for upload speed in Firefox -// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1596576 -//user_pref("network.http.http2.send-buffer-size", 33554432); -//user_pref("network.http.http2.push-allowance", 33554432); - /**************************************************************************** * SECTION: SPECULATIVE CONNECTIONS * ****************************************************************************/ @@ -290,6 +286,9 @@ user_pref("network.ssl_tokens_cache_capacity", 32768); // default=2048; more TLS //user_pref("network.http.speculative-parallel-limit", 18); // default=6; overrides SecureFox //user_pref("network.dns.disablePrefetch", false); // overrides SecureFox //user_pref("network.dns.disablePrefetchFromHTTPS", false); +//user_pref("network.early-hints.enabled", true); + //user_pref("network.early-hints.preconnect.enabled", true); + //user_pref("network.early-hints.preconnect.max_connections", 20); // FF113 //user_pref("browser.urlbar.speculativeConnect.enabled", true); // overrides SecureFox //user_pref("browser.places.speculativeConnect.enabled", true); // overrides SecureFox //user_pref("network.prefetch-next", true); // overrides SecureFox