Skip to content

Commit

Permalink
chore: Update package.json version to 1.0.21 and remove unused fundin…
Browse files Browse the repository at this point in the history
…g.yml file
  • Loading branch information
mauro-balades committed Jul 21, 2024
1 parent 74d9f7b commit 6733bf1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .github/FUNDING.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 1 addition & 5 deletions src/commands/download/firefox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,7 @@ async function unpackFirefoxSource(name: string): Promise<void> {
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[]
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/constants/mozconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 6733bf1

Please sign in to comment.