bump version to 1.11.9 and add appId to branding patch setupLocale function

This commit is contained in:
mr. m 2025-04-22 15:28:51 +02:00
parent 518d1af0c7
commit 0691eb9508
No known key found for this signature in database
GPG key ID: 419302196C23B258
2 changed files with 3 additions and 2 deletions

View file

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

View file

@ -147,6 +147,7 @@ async function setupLocale(
brandFullName: string brandFullName: string
brandingGenericName: string brandingGenericName: string
brandingVendor: string brandingVendor: string
appId: string
} }
) { ) {
for (const file of await walkDirectory( for (const file of await walkDirectory(
@ -266,7 +267,7 @@ export async function apply(name: string): Promise<void> {
ensureEmpty(outputPath) ensureEmpty(outputPath)
await setupImages(configPath, outputPath) await setupImages(configPath, outputPath)
await setupLocale(outputPath, brandingConfig) await setupLocale(outputPath, {...brandingConfig, appId: config.appId})
await copyMozFiles(outputPath, brandingConfig) await copyMozFiles(outputPath, brandingConfig)
await addOptionalIcons(configPath, outputPath) await addOptionalIcons(configPath, outputPath)