mirror of
https://github.com/dream-pep/koring-launcher.git
synced 2026-09-12 05:45:18 +08:00
- 引入 electron-updater 实现自动更新功能 - 新增 Java 环境扫描与校验的 IPC 处理逻辑 - 实现离线账号登录功能 - 新增配置变更跨进程广播机制 - 重构游戏启动逻辑,使用主进程内存配置作为唯一权威来源 - 新增界面显示与语言设置的配置页面 - 添加 Windows 平台自动发布 CI 流水线 - 迁移旧版配置/认证文件到用户数据目录 - 修复崩溃日志路径、表单控件等多项 bug - 重构设置页组件系统统一界面样式
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
appId: com.lingke.koring.launcher
|
|
productName: Koring Launcher
|
|
directories:
|
|
output: dist-electron
|
|
buildResources: build
|
|
publish:
|
|
provider: github
|
|
owner: dream-pep
|
|
repo: koring-launcher
|
|
compression: maximum
|
|
asar: true
|
|
files:
|
|
- dist/**
|
|
- electron-dist/**/*.js
|
|
win:
|
|
target: nsis
|
|
icon: build/icon.ico
|
|
artifactName: "koring-launcher-${version}-setup.${ext}"
|
|
requestedExecutionLevel: asInvoker
|
|
# SignPath 远程签名:scripts/signpath-sign.js
|
|
# 无 SIGNPATH_API_TOKEN 时自动跳过(本地构建不受影响)
|
|
sign: scripts/signpath-sign.js
|
|
mac:
|
|
target: dmg
|
|
icon: build/icon.png
|
|
linux:
|
|
target: AppImage
|
|
icon: build/icon.png
|
|
nsis:
|
|
oneClick: false
|
|
allowToChangeInstallationDirectory: true
|
|
installerIcon: build/icon.ico
|
|
uninstallerIcon: build/icon.ico
|
|
installerHeaderIcon: build/icon.ico
|
|
installerSidebar: build/installer-header.bmp
|
|
license: build/license.txt
|
|
createDesktopShortcut: true
|
|
createStartMenuShortcut: true
|
|
shortcutName: Koring Launcher
|
|
include: build/installer-custom.nsh
|
|
uninstallDisplayName: "Koring Launcher"
|
|
deleteAppDataOnUninstall: false
|
|
installerLanguages:
|
|
- "zh_CN"
|
|
- "zh_TW"
|
|
- "en_US"
|