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

Commit 4e490a4

Browse files
authored
πŸ› Add branding prefs back (#242)
* πŸ”₯ Remove unneeded patch * πŸ”§ Include required prefs
1 parent 161fc86 commit 4e490a4

File tree

2 files changed

+20
-37
lines changed

2 files changed

+20
-37
lines changed

β€Žsrc/D161738 - Python 3.11 fix.patch

-37
This file was deleted.

β€Žsrc/browser/app/profile/pulse-browser.js

+20
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@
77
// Betterfox has a lower priority than the prefs included in this file
88
#include better-fox.js
99

10+
// Prefs from browser/branding/unofficial/prefs/firefox-branding.js:
11+
12+
// The time interval between checks for a new version (in seconds)
13+
pref("app.update.interval", 86400); // 24 hours
14+
// Give the user x seconds to react before showing the big UI. default=24 hours
15+
pref("app.update.promptWaitTime", 86400);
16+
17+
// The number of days a binary is permitted to be old
18+
// without checking for an update. This assumes that
19+
// app.update.checkInstallTime is true.
20+
pref("app.update.checkInstallTime.days", 2);
21+
22+
// Give the user x seconds to reboot before showing a badge on the hamburger
23+
// button. default=immediately
24+
pref("app.update.badgeWaitTime", 0);
25+
26+
// Number of usages of the web console.
27+
// If this is less than 5, then pasting code into the web console is disabled
28+
pref("devtools.selfxss.count", 5);
29+
1030
// Betterfox overrides:
1131
pref('identity.fxaccounts.enabled', true); // Enable firefox sync
1232

0 commit comments

Comments
Β (0)