From 6733bf112c3d6fb2feef51435ff69b1bded82c83 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Sun, 21 Jul 2024 22:00:17 +0200 Subject: [PATCH] chore: Update package.json version to 1.0.21 and remove unused funding.yml file --- .github/FUNDING.yml | 3 --- package.json | 2 +- src/commands/download/firefox.ts | 6 +----- src/constants/mozconfig.ts | 2 +- 4 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 1aaeeae..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -github: trickypr diff --git a/package.json b/package.json index 360801e..844e2f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zen-browser/surfer", - "version": "1.0.19", + "version": "1.0.21", "description": "Simplifying building firefox forks!", "main": "index.js", "bin": { diff --git a/src/commands/download/firefox.ts b/src/commands/download/firefox.ts index f65430d..53b7b5f 100644 --- a/src/commands/download/firefox.ts +++ b/src/commands/download/firefox.ts @@ -74,11 +74,7 @@ async function unpackFirefoxSource(name: string): Promise { windowsPathToUnix(resolve(MELON_TMP_DIR, name)), '-C', windowsPathToUnix(ENGINE_DIR), - ].filter(Boolean) as string[], - { - // HACK: Use bash shell on windows to get a sane version of tar that works - shell: BASH_PATH || false, - } + ].filter(Boolean) as string[] ) } diff --git a/src/constants/mozconfig.ts b/src/constants/mozconfig.ts index f4fb466..6b34b96 100644 --- a/src/constants/mozconfig.ts +++ b/src/constants/mozconfig.ts @@ -72,7 +72,7 @@ function getPlatformOptimiseFlags(): string { break } case 'win32': { - optimiseFlags = `ac_add_options --enable-optimize="-clang:-march=x86-64 -clang:-msse3 -clang:-mtune=haswell -clang:-O3 -w"` + optimiseFlags = `ac_add_options --enable-optimize="-clang:-march=x86-64-v3 -clang:-msse3 -clang:-mtune=haswell -clang:-O3 -w"` break } }