Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit d89f640

Browse files
committed
⬆️ Update Betterfox to 117
1 parent 80d02a1 commit d89f640

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 1.0.0-a.81
9+
10+
### Changed
11+
12+
- Update Betterfox to `117.0`
13+
14+
## 1.0.0-a.80
15+
16+
### Changed
17+
18+
- Updated Gecko to `117.0.1`
19+
820
## 1.0.0-a.79
921

1022
### Changed

src/browser/app/profile/better-fox.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/****************************************************************************
3636
* Betterfox *
3737
* "Ad meliora" *
38-
* version: 116.1 *
38+
* version: 117 *
3939
* url: https://github.com/yokoffing/Betterfox *
4040
****************************************************************************/
4141

@@ -45,12 +45,12 @@
4545
pref('nglayout.initialpaint.delay', 0);
4646
pref('nglayout.initialpaint.delay_in_oopif', 0);
4747
pref('content.notify.interval', 100000);
48-
pref('browser.startup.preXulSkeletonUI', false); // WINDOWS
4948

5049
/** EXPERIMENTAL ***/
5150
pref('layout.css.grid-template-masonry-value.enabled', true);
5251
pref('dom.enable_web_task_scheduling', true);
5352
pref('layout.css.has-selector.enabled', true);
53+
pref('dom.security.sanitizer.enabled', true);
5454

5555
/** GFX ***/
5656
//pref("gfx.canvas.accelerated", true); // enable if using a dedicated GPU on WINDOWS
@@ -75,12 +75,11 @@ pref('network.buffer.cache.count', 128);
7575
pref('network.http.max-connections', 1800);
7676
pref('network.http.max-persistent-connections-per-server', 10);
7777
pref('network.http.max-urgent-start-excessive-connections-per-host', 5);
78-
pref('network.websocket.max-connections', 400);
7978
pref('network.http.pacing.requests.enabled', false);
80-
pref('network.dnsCacheEntries', 10000);
79+
pref('network.dnsCacheEntries', 1000);
8180
pref('network.dnsCacheExpiration', 86400);
8281
pref('network.dns.max_high_priority_threads', 8);
83-
pref('network.ssl_tokens_cache_capacity', 20480);
82+
pref('network.ssl_tokens_cache_capacity', 10240);
8483

8584
/** SPECULATIVE CONNECTIONS ***/
8685
pref('network.http.speculative-parallel-limit', 0);
@@ -234,7 +233,6 @@ pref('browser.display.focus_ring_on_anything', true);
234233
pref('browser.display.focus_ring_style', 0);
235234
pref('browser.display.focus_ring_width', 0);
236235
pref('browser.privateWindowSeparation.enabled', false); // WINDOWS
237-
pref('browser.privatebrowsing.enable-new-indicator', false);
238236
pref('cookiebanners.service.mode', 2);
239237
pref('cookiebanners.service.mode.privateBrowsing', 2);
240238
pref('browser.translations.enable', true);

0 commit comments

Comments
 (0)