bump version to 1.11.4 and update branding directory logic in build command
Some checks are pending
CI / general (push) Waiting to run

This commit is contained in:
mr. m 2025-03-31 16:40:03 +02:00
parent 1c14203808
commit dcac68b312
No known key found for this signature in database
GPG key ID: 419302196C23B258
2 changed files with 3 additions and 3 deletions

View file

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

View file

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