f88a303327
- Play on Linux: use launch.linux_wrapper (wine) or linux_steam_uri; chmod .exe after install - Windows: retry EBUSY on MPQ replace; download to .new before rename - After successful sync: remove .bak-* backups; realmlist only Data/enUS (ignore enGB) - Gitea/distro merge: skip Fractured-Launcher* from GitHub assets (CI default-branch build wins) - Omit blockmap and builder-debug from staged artifacts and Gitea uploads; upload script validates before clearing attachments - README and launcher version 1.0.12 Co-authored-by: Cursor <cursoragent@cursor.com>
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "fractured-launcher-electron",
|
|
"version": "1.0.12",
|
|
"description": "Fractured WoW launcher (Electron) — no console window, native folder picker, auto-update",
|
|
"main": "main.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Dawnforger/Fractured.git"
|
|
},
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"pack:win": "electron-builder --win nsis portable --x64 --publish never",
|
|
"pack:linux": "electron-builder --linux AppImage --x64 --publish never",
|
|
"publish:win": "electron-builder --win nsis portable --x64 --publish never"
|
|
},
|
|
"author": "",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"electron": "^33.2.1",
|
|
"electron-builder": "^25.1.8"
|
|
},
|
|
"dependencies": {
|
|
"electron-updater": "^6.3.9"
|
|
},
|
|
"build": {
|
|
"appId": "net.fractured.launcher",
|
|
"productName": "Fractured Launcher",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"publish": null,
|
|
"files": [
|
|
"main.js",
|
|
"preload.cjs",
|
|
"index.html",
|
|
"renderer.js",
|
|
"styles.css",
|
|
"default-launcher.json",
|
|
"lib/win-game-dir.js",
|
|
"lib/baked-gitea-channel.js",
|
|
"lib/gitea-release.js",
|
|
"lib/patch-manifest.js",
|
|
"lib/**/*"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["x64"]
|
|
},
|
|
{
|
|
"target": "portable",
|
|
"arch": ["x64"]
|
|
}
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"artifactName": "Fractured-Launcher-${version}-Setup.${ext}"
|
|
},
|
|
"portable": {
|
|
"artifactName": "Fractured-Launcher-${version}-Windows-Portable.${ext}"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": ["x64"]
|
|
}
|
|
],
|
|
"category": "Game"
|
|
},
|
|
"appImage": {
|
|
"artifactName": "Fractured-Launcher-${version}-Linux-x86_64.${ext}"
|
|
}
|
|
}
|
|
}
|