fix: resolve PR 877 issues - route params, artifact paths, and build configs

Fix route parameter name in use-initial-theme hook (communityAddress -> boardIdentifier), correct release workflow artifact paths (dist -> out/make), add BUILD_ARCH env var for Linux arm64 builds, fix macOS app name dev check, and update capacitor webDir to match vite output.
This commit is contained in:
plebeius
2026-01-30 14:33:45 +08:00
parent d4f16c707f
commit 50ee10cbc9
4 changed files with 23 additions and 20 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ const createMainWindow = () => {
app.whenReady().then(() => {
// Set app name and dock icon for development mode on macOS
if (process.platform === 'darwin') {
if (process.platform === 'darwin' && isDev) {
app.setName('seedit');
if (app.dock) {
const iconPath = path.join(dirname, '..', isDev ? 'public' : 'build', 'icon.png');