-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to add full embed installer (#145)
- Loading branch information
1 parent
f388e5d
commit 533a128
Showing
5 changed files
with
128 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"build": { | ||
"beforeDevCommand": "yarn dev", | ||
"beforeBuildCommand": "yarn build", | ||
"devPath": "http://localhost:1420", | ||
"distDir": "../dist" | ||
}, | ||
"package": { | ||
"productName": "Coh3 Stats Desktop App - full bundle", | ||
"version": "../package.json" | ||
}, | ||
"tauri": { | ||
"allowlist": { | ||
"clipboard": { | ||
"writeText": true | ||
}, | ||
"dialog": { | ||
"all": true | ||
}, | ||
"fs": { | ||
"all": true, | ||
"scope": ["$APPDATA/*"] | ||
}, | ||
"http": { | ||
"all": true, | ||
"scope": ["https://coh3-api.reliclink.com/*", "https://api.steampowered.com/*", "https://coh3stats.com/*"] | ||
}, | ||
"path": { | ||
"all": true | ||
}, | ||
"shell": { | ||
"open": true | ||
}, | ||
"window": { | ||
"all": true | ||
}, | ||
"process": { | ||
"all": true | ||
} | ||
}, | ||
"bundle": { | ||
"active": true, | ||
"category": "DeveloperTool", | ||
"copyright": "", | ||
"deb": { | ||
"depends": [] | ||
}, | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"identifier": "com.coh3stats.desktop", | ||
"longDescription": "", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"providerShortName": null, | ||
"signingIdentity": null | ||
}, | ||
"resources": [], | ||
"shortDescription": "", | ||
"targets": ["msi", "updater"], | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "", | ||
"webviewInstallMode": { | ||
"type": "offlineInstaller" | ||
} | ||
} | ||
}, | ||
"security": { | ||
"csp": null | ||
}, | ||
"updater": { | ||
"active": true, | ||
"endpoints": ["https://coh3stats.com/api/appUpdateRoute"], | ||
"dialog": true, | ||
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IERFNjMzQTcwRjBEQjUwNTUKUldSVlVOdndjRHBqM21pc1BGYndieG03VVZOSGhxdUxPeDNkRkFqaXVpcEMyL2l1WUN6VDNCK1kK" | ||
}, | ||
"windows": [ | ||
{ | ||
"label": "main", | ||
"fullscreen": false, | ||
"resizable": true, | ||
"focus": true, | ||
"title": "COH3 Stats Desktop App", | ||
"width": 1000, | ||
"minWidth": 900, | ||
"height": 600, | ||
"minHeight": 200, | ||
"decorations": false | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters