bump version to 1.11.4 and update branding directory path in build command

This commit is contained in:
mr. m 2025-03-31 17:49:57 +02:00
parent dcac68b312
commit 1a660b0df2
No known key found for this signature in database
GPG key ID: 419302196C23B258
3 changed files with 6 additions and 4 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "@zen-browser/surfer",
"version": "1.9.4",
"version": "1.11.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@zen-browser/surfer",
"version": "1.9.4",
"version": "1.11.4",
"license": "MPL-2.0",
"dependencies": {
"@resvg/resvg-js": "^1.4.0",

View file

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

View file

@ -50,7 +50,9 @@ const applyConfig = async (os: string) => {
name: config.name,
vendor: config.name,
appId: config.appId,
brandingDir: existsSync(join(ENGINE_DIR, 'branding', brandingKey))
brandingDir: existsSync(
join(ENGINE_DIR, 'browser', 'branding', brandingKey)
)
? 'branding/' + brandingKey
: 'branding/unofficial',
binName: config.binaryName,