Added possibility to claim other freegames from GOG

This commit is contained in:
4n4n4s 2023-09-10 18:50:06 +00:00
parent d51f7310d9
commit a8809fcd79
4 changed files with 183 additions and 11 deletions

19
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch GOG",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/gog.js",
"env": {
"GOG_GIVEAWAY": "1",
"GOG_FREEGAMES": "1"
}
}
]
}