Support setting the installer language

This commit is contained in:
Yi Xin
2024-06-12 15:34:56 +08:00
parent 6297568df5
commit f6f9953125
5 changed files with 13 additions and 1 deletions

3
bin/cli.ts vendored
View File

@@ -52,6 +52,9 @@ program
.addOption(
new Option('--system-tray-icon <string>', 'Custom system tray icon').default(DEFAULT.systemTrayIcon).hideHelp(),
)
.addOption(
new Option('--installer-language <string>', 'Installer language').default(DEFAULT.installerLanguage).hideHelp(),
)
.version(packageJson.version, '-v, --version', 'Output the current version')
.action(async (url: string, options: PakeCliOptions) => {
await checkUpdateTips();

1
bin/defaults.ts vendored
View File

@@ -19,6 +19,7 @@ export const DEFAULT_PAKE_OPTIONS: PakeCliOptions = {
debug: false,
inject: [],
safeDomain: [],
installerLanguage: 'en-US',
};
// Just for cli development

View File

@@ -25,6 +25,7 @@ export async function mergeConfig(url: string, options: PakeAppOptions, tauriCon
resizable = true,
inject,
safeDomain,
installerLanguage,
} = options;
const { platform } = process;
@@ -44,6 +45,7 @@ export async function mergeConfig(url: string, options: PakeAppOptions, tauriCon
tauriConf.package.productName = name;
tauriConf.tauri.bundle.identifier = identifier;
tauriConf.tauri.bundle.windows.wix.language[0] = installerLanguage
//Judge the type of URL, whether it is a file or a website.
const pathExists = await fsExtra.pathExists(url);

3
bin/types.ts vendored
View File

@@ -59,6 +59,9 @@ export interface PakeCliOptions {
/* the domain that can use ipc or tauri javascript sdk */
safeDomain: string[];
// Installer language, valid for Windows users, default is en-US
installerLanguage: string;
}
export interface PakeAppOptions extends PakeCliOptions {