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

Commit

Permalink
🐛 Add branding prefs back (#242)
Browse files Browse the repository at this point in the history
* 🔥 Remove unneeded patch

* 🔧 Include required prefs
  • Loading branch information
trickypr authored May 1, 2023
1 parent 161fc86 commit 4e490a4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 37 deletions.
37 changes: 0 additions & 37 deletions src/D161738 - Python 3.11 fix.patch

This file was deleted.

20 changes: 20 additions & 0 deletions src/browser/app/profile/pulse-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@
// Betterfox has a lower priority than the prefs included in this file
#include better-fox.js

// Prefs from browser/branding/unofficial/prefs/firefox-branding.js:

// The time interval between checks for a new version (in seconds)
pref("app.update.interval", 86400); // 24 hours
// Give the user x seconds to react before showing the big UI. default=24 hours
pref("app.update.promptWaitTime", 86400);

// The number of days a binary is permitted to be old
// without checking for an update. This assumes that
// app.update.checkInstallTime is true.
pref("app.update.checkInstallTime.days", 2);

// Give the user x seconds to reboot before showing a badge on the hamburger
// button. default=immediately
pref("app.update.badgeWaitTime", 0);

// Number of usages of the web console.
// If this is less than 5, then pasting code into the web console is disabled
pref("devtools.selfxss.count", 5);

// Betterfox overrides:
pref('identity.fxaccounts.enabled', true); // Enable firefox sync

Expand Down

0 comments on commit 4e490a4

Please sign in to comment.