Releases: Countryen/gog-generic-integration
Releases · Countryen/gog-generic-integration
Version 2
As it turns out, the first version was not really working, games were not loading correctly (after some time) due to not using the same ID for the game etc. Also the integration didn't stay connected.
This release fixes both and now uses a csv file instead of a text file, where you need to provide ID and Title of each game. To stay connected the (fake) credentials are stored locally (in the galaxy plugin's database file).
This version completely replaces version 1.x and I don't recommend using version 1.x anymore.
Please update your games.data to a games.csv.
This PowerShell can help you with that (execute in the same folder the games.data is):
"id;title`r`n" + [string]::Join("`r`n",((gc games.data).Split("\r\n") | % { "$(New-Guid);$_" })) | Out-File games.csv