1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

Fastfox 113b (#171)

* add early hints

* slow upload speed bug fixed 
https://bugzilla.mozilla.org/show_bug.cgi?id=1596576
This commit is contained in:
Hal
2023-06-06 13:34:30 -04:00
committed by GitHub
parent 2585a4f0b1
commit 7b3d41d91c
+5 -6
View File
@@ -3,7 +3,7 @@
* Fastfox * * Fastfox *
* "Non ducor duco" * * "Non ducor duco" *
* priority: speedy browsing * * priority: speedy browsing *
* version: 113 * * version: 113b *
* url: https://github.com/yokoffing/Betterfox * * 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 // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1795452
//user_pref("javascript.options.experimental.array_grouping", true); //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_change_array_by_copy", true);
//user_pref("javascript.options.experimental.enable_array_from_async", true);
// PREF: indexedDB // PREF: indexedDB
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1112702 // [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 // PREF: increase TLS token caching
user_pref("network.ssl_tokens_cache_capacity", 32768); // default=2048; more TLS token caching (fast reconnects) 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 * * 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.http.speculative-parallel-limit", 18); // default=6; overrides SecureFox
//user_pref("network.dns.disablePrefetch", false); // overrides SecureFox //user_pref("network.dns.disablePrefetch", false); // overrides SecureFox
//user_pref("network.dns.disablePrefetchFromHTTPS", false); //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.urlbar.speculativeConnect.enabled", true); // overrides SecureFox
//user_pref("browser.places.speculativeConnect.enabled", true); // overrides SecureFox //user_pref("browser.places.speculativeConnect.enabled", true); // overrides SecureFox
//user_pref("network.prefetch-next", true); // overrides SecureFox //user_pref("network.prefetch-next", true); // overrides SecureFox