Add descriptions, updater, bundle language with installer, and WiX config

This commit is contained in:
KingRainbow44 2022-06-06 00:01:57 -04:00
parent 0b24a2bb22
commit 9ef816aad8
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
2 changed files with 24 additions and 6 deletions

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<!-- Force installer to run as Administrator. -->
<Property Id="MSIUSEREALADMINDETECTION" Value="1" />
</Fragment>
</Wix>

View File

@ -31,7 +31,7 @@
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"category": "Game",
"copyright": "",
"deb": {
"depends": []
@ -45,7 +45,8 @@
"icons/icon.ico"
],
"identifier": "xyz.grasscutters",
"longDescription": "",
"shortDescription": "A game launcher.",
"longDescription": "A launcher for a certain anime game that proxies all related game traffic to external servers.",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
@ -53,20 +54,30 @@
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"resources": [
"lang/*.json"
],
"targets": "all",
"windows": {
"allowDowngrades": false,
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
"timestampUrl": "",
"wix": {
"fragmentPaths": ["resources/wix.wxs"]
}
}
},
"security": {
"csp": "default-src 'self' https://asset.localhost; img-src 'self'; img-src https://* asset: https://asset.localhost"
},
"updater": {
"active": false
"active": false,
"dialog": true,
"endpoints": [
"https://api.grasscutters.xyz/cultivation/update?version={{current_version}}"
],
"pubkey": ""
},
"windows": [
{