Skip to content

Commit

Permalink
[email protected]: Fix goggalaxy manifest (#1040)
Browse files Browse the repository at this point in the history
Changes the installation and uninstallation of the app, from using InnoSetup to a script with silent installation switches.

During my experimentation, I have seen that some folders don't get deleted after the uninstallation, so I also made those folders persistent in the manifest.
  • Loading branch information
EstebanMunoz authored Oct 15, 2023
1 parent 7cb3592 commit 10b7b0f
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions bucket/goggalaxy.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,28 @@
"identifier": "Proprietary",
"url": "https://support.gog.com/hc/en-us/articles/212632089"
},
"suggest": {
"Microsoft Visual C++ Runtime 2015": "extras/vcredist2015"
},
"url": "https://content-system.gog.com/open_link/download?path=/open/galaxy/client/2.0.72.94/setup_galaxy_2.0.72.94.exe",
"url": "https://content-system.gog.com/open_link/download?path=/open/galaxy/client/2.0.72.94/setup_galaxy_2.0.72.94.exe#/setup.exe",
"hash": "md5:023915e26edb5a8e7af250e966779479",
"innosetup": true,
"installer": {
"args": [
"/VERYSILENT",
"/DIR=$dir"
]
},
"shortcuts": [
[
"GalaxyClient.exe",
"GOG Galaxy"
]
],
"persist": [
"Dependencies",
"Dependencies-Temp",
"Games"
],
"uninstaller": {
"script": "Start-Process \"$dir\\unins000.exe\" -Wait -ArgumentList \"/VERYSILENT\""
},
"checkver": {
"url": "https://remote-config.gog.com/components/webinstaller?component_version=2.0.0",
"jsonpath": "$.content.windows.version"
Expand Down

0 comments on commit 10b7b0f

Please sign in to comment.