1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 14:55:30 +02:00

Update Firefox version to 134.0.1 in surfer.json and README.md; adjust LTO settings in mozconfig

This commit is contained in:
mr. M 2025-01-14 16:46:55 +01:00
parent 62df1fbc59
commit 9fd989106d
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
6 changed files with 16 additions and 7 deletions

View file

@ -9,6 +9,8 @@ engine/
**/*.svg
surfer.json
src/browser/app/profile/*.js
pnpm-lock.yaml

View file

@ -28,7 +28,7 @@
## 🖥️ Compatibility
Zen is currently built using firefox version `134.0`! 🚀
Zen is currently built using firefox version `134.0.1`! 🚀
- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using firefox version `RC 134.0.1`!
- Check out the latest [release notes](https://zen-browser.app/release-notes)!

View file

@ -59,8 +59,8 @@ if test "$ZEN_RELEASE"; then
# only enable full LTO when ZEN_RELEASE_BRANCH is 'release'
if test "$ZEN_RELEASE_BRANCH" = "release"; then
# TODO: make it "full" once we have the resources to build it
export MOZ_LTO=cross,thin
ac_add_options --enable-lto=cross,thin
export MOZ_LTO=cross,full
ac_add_options --enable-lto=cross,full
else
export MOZ_LTO=cross,thin
ac_add_options --enable-lto=cross,thin

View file

@ -6,6 +6,11 @@ ac_add_options --enable-eme=widevine
export MOZ_MACBUNDLE_ID=${appId}
export MOZ_MACBUNDLE_NAME="Zen Browser.app"
# override LTO settings
# TODO: Dont
export MOZ_LTO=cross,thin
ac_add_options --enable-lto=cross,thin
if test "$ZEN_RELEASE"; then
if test "$ZEN_GA_DISABLE_PGO"; then
export ZEN_DUMMY=1

View file

@ -45,7 +45,7 @@ def get_version_from_file(filename, is_rc):
def update_readme(last_version, new_version, is_rc=False):
"""Updates the README.md file to reflect the new version."""
prefix = "RC " if is_rc else ""
prefix = "RC " if is_rc else "`"
try:
with open("README.md", "r") as f:
data = f.read()

View file

@ -5,7 +5,7 @@
"binaryName": "zen",
"version": {
"product": "firefox",
"version": "134.0",
"version": "134.0.1",
"candidate": "134.0.1"
},
"buildOptions": {
@ -19,7 +19,7 @@
"brandShortName": "Zen",
"brandFullName": "Zen Browser",
"release": {
"displayVersion": "1.6b",
"displayVersion": "1.7b",
"github": {
"repo": "zen-browser/desktop"
},
@ -47,7 +47,9 @@
}
},
"license": {
"ignoredFiles": [".*\\.json"],
"ignoredFiles": [
".*\\.json"
],
"licenseType": "MPL-2.0"
},
"updateHostname": "updates.zen-browser.app"