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

Commit a9a25b5

Browse files
authored
Update Firefox to 111.0 (#227)
1 parent 6c02cf8 commit a9a25b5

File tree

11 files changed

+204
-246
lines changed

11 files changed

+204
-246
lines changed

.flagged

Whitespace-only changes.

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.61
9+
10+
### Added
11+
12+
- The user can reposition the sideber (#222)
13+
14+
### Changed
15+
16+
- Updated Firefox to `111.0` (#227)
17+
- Updated uBlock to `1.47.4` (#227)
18+
- Update BetterFox (#227)
19+
- Distroid is now `com.fushra.browser.alpha` (#227)
20+
821
## 1.0.0-a.60
922

1023
### Fixed

configs/common/mozconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export MOZ_APP_VENDOR="Pulse browser"
99
export MOZ_APP_BASENAME=PulseBrowser
1010
export MOZ_APP_PROFILE=${binName}
1111
export MOZ_APP_DISPLAYNAME="Pulse browser"
12-
export MOZ_MACBUNDLE_ID=com.fushra.browser.desktop
13-
export MOZ_DISTRIBUTION_ID=com.fushra.browser.desktop
12+
export MOZ_MACBUNDLE_ID=com.fushra.browser.alpha
13+
export MOZ_DISTRIBUTION_ID=com.fushra.browser.alpha
1414
export MOZ_MACBUNDLE_NAME="Pulse browser.app"
1515

1616
# Misc

gluon.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"binaryName": "pulse-browser",
66
"version": {
77
"product": "firefox",
8-
"version": "110.0.1"
8+
"version": "111.0"
99
},
1010
"buildOptions": {
1111
"generateBranding": true
@@ -15,7 +15,7 @@
1515
"platform": "github",
1616
1717
"repo": "gorhill/uBlock",
18-
"version": "1.47.0",
18+
"version": "1.47.4",
1919
"fileGlob": "uBlock0_*.firefox(.signed)?.xpi"
2020
},
2121
"tabliss": {
@@ -93,10 +93,8 @@
9393
}
9494
},
9595
"license": {
96-
"ignoredFiles": [
97-
".*\\.json"
98-
],
96+
"ignoredFiles": [".*\\.json"],
9997
"licenseType": "MPL-2.0"
10098
},
10199
"updateHostname": "updates.pulsebrowser.app"
102-
}
100+
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"scripts": {
1313
"build": "gluon build",
1414
"build:ui": "gluon build --ui",
15-
"bs": "yarn build && yarn start",
16-
"bus": "yarn build:ui && yarn start",
17-
"start": "yarn clearStartupCache && gluon run",
15+
"bs": "pnpm build && pnpm start",
16+
"bus": "pnpm build:ui && pnpm start",
17+
"start": "pnpm clearStartupCache && gluon run",
1818
"export": "gluon export-file",
1919
"imp": "gluon import",
2020
"clearProfile": "rm -rf engine/obj-x86_64-pc-linux-gnu/tmp/profile-default",

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/****************************************************************************
3636
* Betterfox *
3737
* "Ad meliora" *
38-
* version: 110 *
38+
* version: 111 *
3939
* url: https://github.com/yokoffing/Betterfox *
4040
****************************************************************************/
4141

@@ -76,6 +76,8 @@ pref('browser.cache.memory.max_entry_size', 153600);
7676
/** NETWORK ***/
7777
pref('network.buffer.cache.size', 262144);
7878
pref('network.buffer.cache.count', 128);
79+
pref('network.http.max-connections', 1800);
80+
pref('network.http.max-persistent-connections-per-server', 10);
7981
pref('network.ssl_tokens_cache_capacity', 32768);
8082

8183
/****************************************************************************
@@ -97,6 +99,8 @@ pref(
9799
'__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oft_c oft_ck oft_d oft_id oft_ids oft_k oft_lk oft_sk oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid'
98100
);
99101
pref('browser.uitour.enabled', false);
102+
pref('privacy.globalprivacycontrol.enabled', true);
103+
pref('privacy.globalprivacycontrol.functionality.enabled', true);
100104

101105
/** OCSP & CERTS / HPKP ***/
102106
pref('security.OCSP.enabled', 0);
@@ -280,10 +284,6 @@ pref('browser.link.open_newwindow.restriction', 0);
280284
pref('dom.disable_window_move_resize', true);
281285
pref('browser.tabs.loadBookmarksInTabs', true);
282286
pref('browser.bookmarks.openInTabClosesMenu', false);
283-
pref(
284-
'dom.popup_allowed_events',
285-
'change click dblclick auxclick mousedown mouseup pointerdown pointerup notificationclick reset submit touchend contextmenu'
286-
); // reset pref; remove in v.111
287287
pref('layout.css.has-selector.enabled', true);
288288

289289
/****************************************************************************
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
2-
index 9b56ba74cff12f029b6d8910ff487a216a15194f..ec90cd53380cd948d4aaee457c257fdeea7023ea 100644
2+
index 81f4d49068c285049d49db6c8fc5c0fbe042ff6b..39ef13fb66567c31ebf932d7a6f528fa1d635069 100644
33
--- a/browser/app/profile/firefox.js
44
+++ b/browser/app/profile/firefox.js
5-
@@ -2781,3 +2781,5 @@ pref("browser.pdfjs.feature-tour", "{\"screen\":\"\",\"complete\":false}");
6-
7-
// Enables the cookie banner desktop UI.
8-
pref("cookiebanners.ui.desktop.enabled", false);
5+
@@ -2804,3 +2804,5 @@ pref("cookiebanners.ui.desktop.cfrVariant", 0);
6+
pref("browser.swipe.navigation-icon-min-radius", 12);
7+
pref("browser.swipe.navigation-icon-max-radius", 20);
8+
#endif
99
+
1010
+#include pulse-browser.js

0 commit comments

Comments
 (0)