Support setting navigation bar title

This commit is contained in:
Tw93
2025-08-14 17:18:52 +08:00
parent 7a4f4c6d3d
commit b2072b5e80
8 changed files with 45 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ export async function mergeConfig(
installerLanguage,
hideOnClose,
incognito,
title,
} = options;
const { platform } = process;
@@ -51,6 +52,7 @@ export async function mergeConfig(
disabled_web_shortcuts: disabledWebShortcuts,
hide_on_close: hideOnClose,
incognito: incognito,
title: title || null,
};
Object.assign(tauriConf.pake.windows[0], { url, ...tauriConfWindowOptions });