chore: Bump package.json version to 1.3.5 and enable pasting code into the web console

This commit is contained in:
Mauro Balades 2024-08-26 13:48:37 +02:00
parent 1196e0fd70
commit 22efae264d
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "@zen-browser/surfer", "name": "@zen-browser/surfer",
"version": "1.3.4", "version": "1.3.5",
"description": "Simplifying building firefox forks!", "description": "Simplifying building firefox forks!",
"main": "index.js", "main": "index.js",
"bin": { "bin": {

View file

@ -387,6 +387,10 @@ pref("app.update.url.manual", "https://zen-browser.app/");
pref("app.update.url.details", "https://zen-browser.app/release-notes/latest/"); pref("app.update.url.details", "https://zen-browser.app/release-notes/latest/");
pref("app.releaseNotesURL", "https://zen-browser.app/release-notes/latest/"); pref("app.releaseNotesURL", "https://zen-browser.app/release-notes/latest/");
pref("app.releaseNotesURL.aboutDialog", "https://zen-browser.app/"); pref("app.releaseNotesURL.aboutDialog", "https://zen-browser.app/");
// 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", 0);
`); `);
} }