mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 00:10:00 +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:
parent
62df1fbc59
commit
9fd989106d
6 changed files with 16 additions and 7 deletions
|
@ -9,6 +9,8 @@ engine/
|
||||||
|
|
||||||
**/*.svg
|
**/*.svg
|
||||||
|
|
||||||
|
surfer.json
|
||||||
|
|
||||||
src/browser/app/profile/*.js
|
src/browser/app/profile/*.js
|
||||||
pnpm-lock.yaml
|
pnpm-lock.yaml
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
## 🖥️ Compatibility
|
## 🖥️ 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`!
|
- [`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)!
|
- Check out the latest [release notes](https://zen-browser.app/release-notes)!
|
||||||
|
|
|
@ -59,8 +59,8 @@ if test "$ZEN_RELEASE"; then
|
||||||
# only enable full LTO when ZEN_RELEASE_BRANCH is 'release'
|
# only enable full LTO when ZEN_RELEASE_BRANCH is 'release'
|
||||||
if test "$ZEN_RELEASE_BRANCH" = "release"; then
|
if test "$ZEN_RELEASE_BRANCH" = "release"; then
|
||||||
# TODO: make it "full" once we have the resources to build it
|
# TODO: make it "full" once we have the resources to build it
|
||||||
export MOZ_LTO=cross,thin
|
export MOZ_LTO=cross,full
|
||||||
ac_add_options --enable-lto=cross,thin
|
ac_add_options --enable-lto=cross,full
|
||||||
else
|
else
|
||||||
export MOZ_LTO=cross,thin
|
export MOZ_LTO=cross,thin
|
||||||
ac_add_options --enable-lto=cross,thin
|
ac_add_options --enable-lto=cross,thin
|
||||||
|
|
|
@ -6,6 +6,11 @@ ac_add_options --enable-eme=widevine
|
||||||
export MOZ_MACBUNDLE_ID=${appId}
|
export MOZ_MACBUNDLE_ID=${appId}
|
||||||
export MOZ_MACBUNDLE_NAME="Zen Browser.app"
|
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_RELEASE"; then
|
||||||
if test "$ZEN_GA_DISABLE_PGO"; then
|
if test "$ZEN_GA_DISABLE_PGO"; then
|
||||||
export ZEN_DUMMY=1
|
export ZEN_DUMMY=1
|
||||||
|
|
|
@ -45,7 +45,7 @@ def get_version_from_file(filename, is_rc):
|
||||||
|
|
||||||
def update_readme(last_version, new_version, is_rc=False):
|
def update_readme(last_version, new_version, is_rc=False):
|
||||||
"""Updates the README.md file to reflect the new version."""
|
"""Updates the README.md file to reflect the new version."""
|
||||||
prefix = "RC " if is_rc else ""
|
prefix = "RC " if is_rc else "`"
|
||||||
try:
|
try:
|
||||||
with open("README.md", "r") as f:
|
with open("README.md", "r") as f:
|
||||||
data = f.read()
|
data = f.read()
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"binaryName": "zen",
|
"binaryName": "zen",
|
||||||
"version": {
|
"version": {
|
||||||
"product": "firefox",
|
"product": "firefox",
|
||||||
"version": "134.0",
|
"version": "134.0.1",
|
||||||
"candidate": "134.0.1"
|
"candidate": "134.0.1"
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"brandShortName": "Zen",
|
"brandShortName": "Zen",
|
||||||
"brandFullName": "Zen Browser",
|
"brandFullName": "Zen Browser",
|
||||||
"release": {
|
"release": {
|
||||||
"displayVersion": "1.6b",
|
"displayVersion": "1.7b",
|
||||||
"github": {
|
"github": {
|
||||||
"repo": "zen-browser/desktop"
|
"repo": "zen-browser/desktop"
|
||||||
},
|
},
|
||||||
|
@ -47,7 +47,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license": {
|
"license": {
|
||||||
"ignoredFiles": [".*\\.json"],
|
"ignoredFiles": [
|
||||||
|
".*\\.json"
|
||||||
|
],
|
||||||
"licenseType": "MPL-2.0"
|
"licenseType": "MPL-2.0"
|
||||||
},
|
},
|
||||||
"updateHostname": "updates.zen-browser.app"
|
"updateHostname": "updates.zen-browser.app"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue