refactor: unify bucket structure

This commit is contained in:
h404bi 2019-03-08 10:44:25 +08:00 committed by Hugo Locurcio
parent 4130344c58
commit aa93004fab
76 changed files with 2210 additions and 2184 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# retain windows line-endings in case checked out on mac or linux
* text eol=crlf

6
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"recommendations": [
"EditorConfig.EditorConfig",
"ms-vscode.PowerShell"
]
}

14
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"json.schemas": [
{
"url": "https://raw.githubusercontent.com/lukesampson/scoop/master/schema.json",
"fileMatch": [
"bucket/*.json"
]
}
],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true
}
}

View File

@ -1,27 +1,29 @@
# scoop-games
A [Scoop](https://scoop.sh/) bucket for open source/freeware games and game-related tools.
## Usage
After installing [Scoop](https://scoop.sh/), enter the following line in a
Command Prompt or PowerShell window:
```powershell
scoop bucket add games
```
Once this is done, you can install any app from this bucket (check the list
of files in this repository). For instance, use the following command:
```powershell
# Don't include the .json file extension in the app name
scoop install ericw-tools
```
## License
Copyright © 2018 Hugo Locurcio and contributors
Files in this repository are licensed under CC0 1.0 Universal,
see [LICENSE.md](LICENSE.md) for more information.
# scoop-games
[![Repo size](https://img.shields.io/github/repo-size/Calinou/scoop-games.svg?style=flat-square)](https://github.com/Calinou/scoop-games) [![Mentioned in Awesome Scoop](https://awesome.re/mentioned-badge.svg)](https://github.com/scoopinstaller/awesome-scoop)
A [Scoop](https://scoop.sh/) bucket for open source/freeware games and game-related tools.
## Usage
After installing [Scoop](https://scoop.sh/), enter the following line in a
Command Prompt or PowerShell window:
```powershell
scoop bucket add games
```
Once this is done, you can install any app from this bucket (check the list
of files in this repository). For instance, use the following command:
```powershell
# Don't include the .json file extension in the app name
scoop install ericw-tools
```
## License
Copyright © 2018 Hugo Locurcio and contributors
Files in this repository are licensed under CC0 1.0 Universal,
see [LICENSE.md](LICENSE.md) for more information.

View File

@ -1,9 +1,9 @@
param(
# overwrite upstream param
[String]$upstream = "Calinou/scoop-games:master"
)
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
$dir = "$psscriptroot/.." # checks the parent dir
iex -command "$autopr -dir $dir -upstream $upstream $($args |% { "$_ " })"
param(
# overwrite upstream param
[String]$upstream = "Calinou/scoop-games:master"
)
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
$dir = "$psscriptroot/../bucket" # checks the parent dir
Invoke-Expression -command "$autopr -dir $dir -upstream $upstream $($args | ForEach-Object { "$_ " })"

View File

@ -1,4 +1,4 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$checkurls = "$env:SCOOP_HOME/bin/checkurls.ps1"
$dir = "$psscriptroot/.." # checks the parent dir
iex -command "$checkurls -dir $dir $($args |% { "$_ " })"
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$checkurls = "$env:SCOOP_HOME/bin/checkurls.ps1"
$dir = "$psscriptroot/../bucket" # checks the parent dir
Invoke-Expression -command "$checkurls -dir $dir $($args | ForEach-Object { "$_ " })"

View File

@ -1,4 +1,4 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$checkver = "$env:SCOOP_HOME/bin/checkver.ps1"
$dir = "$psscriptroot/.." # checks the parent dir
iex -command "$checkver -dir $dir $($args |% { "$_ " })"
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$checkver = "$env:SCOOP_HOME/bin/checkver.ps1"
$dir = "$psscriptroot/../bucket" # checks the parent dir
Invoke-Expression -command "$checkver -dir $dir $($args | ForEach-Object { "$_ " })"

View File

@ -1,4 +1,4 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$formatjson = "$env:SCOOP_HOME/bin/formatjson.ps1"
$path = "$psscriptroot/.." # checks the parent dir
iex -command "$formatjson -path $path $($args |% { "$_ " })"
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$formatjson = "$env:SCOOP_HOME/bin/formatjson.ps1"
$path = "$psscriptroot/../bucket" # checks the parent dir
Invoke-Expression -command "$formatjson -path $path $($args | ForEach-Object { "$_ " })"

View File

@ -1,4 +1,4 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$missing_checkver = "$env:SCOOP_HOME/bin/missing-checkver.ps1"
$dir = "$psscriptroot/.." # checks the parent dir
iex -command "$missing_checkver -dir $dir $($args |% { "$_ " })"
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
$missing_checkver = "$env:SCOOP_HOME/bin/missing-checkver.ps1"
$dir = "$psscriptroot/../bucket" # checks the parent dir
Invoke-Expression -command "$missing_checkver -dir $dir $($args | ForEach-Object { "$_ " })"

View File

@ -1,2 +1,4 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
Invoke-Pester "$psscriptroot/.."
#requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '4.4.0' }
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
Invoke-Pester "$psscriptroot/.."

View File

@ -1,15 +1,15 @@
{
"homepage": "http://www.armagetronad.org/",
"description": "3D multiplayer game with Tron-style lightcycles",
"version": "0.2.8.3.4",
"license": "GPL-2.0-or-later",
"url": "https://launchpad.net/armagetronad/0.2.8/0.2.8.3.4/+download/armagetronad-0.2.8.3.4.gcc.win32.exe#/dl.7z",
"hash": "5279281ab664f4a17dd7a1842c29da210d0026ab9ee5300bd714fe14c8356d15",
"bin": "armagetronad.exe",
"shortcuts": [
[
"armagetronad.exe",
"Armagetron Advanced"
]
]
}
{
"homepage": "http://www.armagetronad.org/",
"description": "3D multiplayer game with Tron-style lightcycles",
"version": "0.2.8.3.4",
"license": "GPL-2.0-or-later",
"url": "https://launchpad.net/armagetronad/0.2.8/0.2.8.3.4/+download/armagetronad-0.2.8.3.4.gcc.win32.exe#/dl.7z",
"hash": "5279281ab664f4a17dd7a1842c29da210d0026ab9ee5300bd714fe14c8356d15",
"bin": "armagetronad.exe",
"shortcuts": [
[
"armagetronad.exe",
"Armagetron Advanced"
]
]
}

View File

@ -1,20 +1,20 @@
{
"homepage": "https://assault.cubers.net/",
"description": "Semi-realistic first-person shooter based on the Cube engine",
"version": "1.2.0.2",
"license": "https://assault.cubers.net/docs/license.html",
"url": "https://github.com/assaultcube/AC/releases/download/v1.2.0.2/AssaultCube_v1.2.0.2.exe#/dl.7z",
"hash": "679cd987564d68e56b64c603e5d15269c3c00864535305c7025022751d77703b",
"shortcuts": [
[
"assaultcube.bat",
"AssaultCube",
"",
"docs/images/favicon.ico"
]
],
"post_install": "Move-Item \"$dir\\bin_win32\\openal32_RemoveThisPartToUseOpenAL-Soft.dll\" \"$dir\\bin_win32\\openal32.dll\"",
"checkver": {
"github": "https://github.com/assaultcube/AC"
}
}
{
"homepage": "https://assault.cubers.net/",
"description": "Semi-realistic first-person shooter based on the Cube engine",
"version": "1.2.0.2",
"license": "https://assault.cubers.net/docs/license.html",
"url": "https://github.com/assaultcube/AC/releases/download/v1.2.0.2/AssaultCube_v1.2.0.2.exe#/dl.7z",
"hash": "679cd987564d68e56b64c603e5d15269c3c00864535305c7025022751d77703b",
"shortcuts": [
[
"assaultcube.bat",
"AssaultCube",
"",
"docs/images/favicon.ico"
]
],
"post_install": "Move-Item \"$dir\\bin_win32\\openal32_RemoveThisPartToUseOpenAL-Soft.dll\" \"$dir\\bin_win32\\openal32.dll\"",
"checkver": {
"github": "https://github.com/assaultcube/AC"
}
}

View File

@ -1,14 +1,14 @@
{
"homepage": "https://boa.realm667.com/",
"description": "World War II-themed singleplayer FPS running on the GZDoom engine",
"version": "c2",
"license": "GPL-3.0-or-later",
"url": "https://realm667.com/index.php/en/downloads/doom-wads/1050-blade-of-agony-chapter-1-2-standalone/file#boa_c2_s.zip",
"hash": "72214f2d33d1dc933ea2e4ce631849053e51fc72961e654fd1cf76474ff6d99f",
"shortcuts": [
[
"boa_c2.exe",
"Blade of Agony"
]
]
}
{
"homepage": "https://boa.realm667.com/",
"description": "World War II-themed singleplayer FPS running on the GZDoom engine",
"version": "c2",
"license": "GPL-3.0-or-later",
"url": "https://realm667.com/index.php/en/downloads/doom-wads/1050-blade-of-agony-chapter-1-2-standalone/file#boa_c2_s.zip",
"hash": "72214f2d33d1dc933ea2e4ce631849053e51fc72961e654fd1cf76474ff6d99f",
"shortcuts": [
[
"boa_c2.exe",
"Blade of Agony"
]
]
}

View File

@ -1,26 +1,26 @@
{
"homepage": "https://cxong.github.io/cdogs-sdl/",
"description": "Classic overhead run-and-gun game",
"version": "0.6.9",
"license": "GPL-2.0-or-later",
"url": "https://github.com/cxong/cdogs-sdl/releases/download/0.6.9/C-Dogs.SDL-0.6.9-win32.zip",
"hash": "13cc2056d83cfa3d6e5ac0d0fa325159802a8039036c0e21a0a02ee59c9bce87",
"extract_dir": "C-Dogs SDL-0.6.9-win32",
"shortcuts": [
[
"bin\\cdogs-sdl.exe",
"C-Dogs SDL"
],
[
"bin\\cdogs-sdl-editor.exe",
"C-Dogs SDL Editor"
]
],
"checkver": {
"github": "https://github.com/cxong/cdogs-sdl"
},
"autoupdate": {
"url": "https://github.com/cxong/cdogs-sdl/releases/download/$version/C-Dogs.SDL-$version-win32.zip",
"extract_dir": "C-Dogs SDL-$version-win32"
}
}
{
"homepage": "https://cxong.github.io/cdogs-sdl/",
"description": "Classic overhead run-and-gun game",
"version": "0.6.9",
"license": "GPL-2.0-or-later",
"url": "https://github.com/cxong/cdogs-sdl/releases/download/0.6.9/C-Dogs.SDL-0.6.9-win32.zip",
"hash": "13cc2056d83cfa3d6e5ac0d0fa325159802a8039036c0e21a0a02ee59c9bce87",
"extract_dir": "C-Dogs SDL-0.6.9-win32",
"shortcuts": [
[
"bin\\cdogs-sdl.exe",
"C-Dogs SDL"
],
[
"bin\\cdogs-sdl-editor.exe",
"C-Dogs SDL Editor"
]
],
"checkver": {
"github": "https://github.com/cxong/cdogs-sdl"
},
"autoupdate": {
"url": "https://github.com/cxong/cdogs-sdl/releases/download/$version/C-Dogs.SDL-$version-win32.zip",
"extract_dir": "C-Dogs SDL-$version-win32"
}
}

View File

@ -1,67 +1,67 @@
{
"homepage": "https://www.chocolate-doom.org/wiki/index.php/Crispy_Doom",
"description": "Faithful enhanced-resolution source port for Doom",
"version": "5.4",
"license": "GPL-2.0-or-later",
"url": "https://github.com/fabiangreffrath/crispy-doom/releases/download/crispy-doom-5.4/crispy-doom_5.4.zip",
"hash": "376d1ec4883fa5d8db9f8a5a03ee5aec70ef15c38114e3b435c107a8f3490c7a",
"extract_dir": "crispy-doom_5.4",
"shortcuts": [
[
"crispy-doom.exe",
"Crispy Doom (Doom 2)",
"-iwad doom2.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (The Ultimate Doom)",
"-iwad doom.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (The Plutonia Experiment)",
"-iwad plutonia.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (TNT Evilution)",
"-iwad tnt.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (Freedoom Phase 1)",
"-iwad freedoom1.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (Freedoom Phase 2)",
"-iwad freedoom2.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (FreeDM)",
"-iwad freedm.wad"
],
[
"crispy-doom-setup.exe",
"Setup Crispy Doom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"checkver": {
"github": "https://github.com/fabiangreffrath/crispy-doom",
"regex": "/releases/tag/crispy-doom-([\\d.]+)"
},
"autoupdate": {
"url": "https://github.com/fabiangreffrath/crispy-doom/releases/download/crispy-doom-$version/crispy-doom_$version.zip",
"extract_dir": "crispy-doom_$version"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "https://www.chocolate-doom.org/wiki/index.php/Crispy_Doom",
"description": "Faithful enhanced-resolution source port for Doom",
"version": "5.4",
"license": "GPL-2.0-or-later",
"url": "https://github.com/fabiangreffrath/crispy-doom/releases/download/crispy-doom-5.4/crispy-doom_5.4.zip",
"hash": "376d1ec4883fa5d8db9f8a5a03ee5aec70ef15c38114e3b435c107a8f3490c7a",
"extract_dir": "crispy-doom_5.4",
"shortcuts": [
[
"crispy-doom.exe",
"Crispy Doom (Doom 2)",
"-iwad doom2.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (The Ultimate Doom)",
"-iwad doom.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (The Plutonia Experiment)",
"-iwad plutonia.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (TNT Evilution)",
"-iwad tnt.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (Freedoom Phase 1)",
"-iwad freedoom1.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (Freedoom Phase 2)",
"-iwad freedoom2.wad"
],
[
"crispy-doom.exe",
"Crispy Doom (FreeDM)",
"-iwad freedm.wad"
],
[
"crispy-doom-setup.exe",
"Setup Crispy Doom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"checkver": {
"github": "https://github.com/fabiangreffrath/crispy-doom",
"regex": "/releases/tag/crispy-doom-([\\d.]+)"
},
"autoupdate": {
"url": "https://github.com/fabiangreffrath/crispy-doom/releases/download/crispy-doom-$version/crispy-doom_$version.zip",
"extract_dir": "crispy-doom_$version"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,57 +1,57 @@
{
"homepage": "https://icculus.org/twilight/darkplaces/",
"description": "Modern Quake source port with advanced graphics capabilities",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://icculus.org/twilight/darkplaces/files/darkplacesenginewindows64onlyautobuild.zip"
},
"32bit": {
"url": "https://icculus.org/twilight/darkplaces/files/darkplacesenginewindowsonlyautobuild.zip"
}
},
"shortcuts": [
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake)",
"-game id1"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Abyss of Pandemonium)",
"-game abyss"
]
],
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}
{
"homepage": "https://icculus.org/twilight/darkplaces/",
"description": "Modern Quake source port with advanced graphics capabilities",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://icculus.org/twilight/darkplaces/files/darkplacesenginewindows64onlyautobuild.zip"
},
"32bit": {
"url": "https://icculus.org/twilight/darkplaces/files/darkplacesenginewindowsonlyautobuild.zip"
}
},
"shortcuts": [
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake)",
"-game id1"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"darkplaces-sdl.exe",
"DarkPlaces (Quake - Abyss of Pandemonium)",
"-game abyss"
]
],
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}

View File

@ -1,35 +1,35 @@
{
"homepage": "http://dengine.net/",
"description": "Modern source port for Doom, Heretic, Hexen and more",
"version": "2.1.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://files.dengine.net/archive/doomsday_2.1.0_x64.zip",
"hash": "137d82eb463b54eeef110fc0b4fd516aec48902c3fe8d9757ce37231511860d5",
"extract_dir": "doomsday_2.1.0_x64"
},
"32bit": {
"url": "https://files.dengine.net/archive/doomsday_2.1.0_x86.zip",
"hash": "aeb559c74431ff20e99ef80a86935de296e340cdb9a6dc8828fb083a3e093aee",
"extract_dir": "doomsday_2.1.0_x86"
}
},
"bin": [
"bin\\Doomsday.exe"
],
"shortcuts": [
[
"bin\\Doomsday.exe",
"Doomsday Engine"
]
],
"persist": [
"data"
],
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\data"
]
}
{
"homepage": "http://dengine.net/",
"description": "Modern source port for Doom, Heretic, Hexen and more",
"version": "2.1.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://files.dengine.net/archive/doomsday_2.1.0_x64.zip",
"hash": "137d82eb463b54eeef110fc0b4fd516aec48902c3fe8d9757ce37231511860d5",
"extract_dir": "doomsday_2.1.0_x64"
},
"32bit": {
"url": "https://files.dengine.net/archive/doomsday_2.1.0_x86.zip",
"hash": "aeb559c74431ff20e99ef80a86935de296e340cdb9a6dc8828fb083a3e093aee",
"extract_dir": "doomsday_2.1.0_x86"
}
},
"bin": [
"bin\\Doomsday.exe"
],
"shortcuts": [
[
"bin\\Doomsday.exe",
"Doomsday Engine"
]
],
"persist": [
"data"
],
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\data"
]
}

View File

@ -1,21 +1,21 @@
{
"homepage": "http://www.bay12games.com/dwarves",
"description": "Indie construction and management game",
"version": "0.44.12",
"license": "Custom",
"url": "http://www.bay12games.com/dwarves/df_44_12_win.zip",
"hash": "36d690dbf28b4a0d3a324a792acf7abac0a6983fdf7df9b6df4796886bec657d",
"shortcuts": [
[
"Dwarf Fortress.exe",
"Dwarf Fortress"
]
],
"checkver": {
"url": "http://www.bay12games.com/dwarves",
"re": "DOWNLOAD DWARF FORTRESS ([\\d\\.]+)"
},
"autoupdate": {
"url": "http://www.bay12games.com/dwarves/df_$minorVersion_$patchVersion_win.zip"
}
}
{
"homepage": "http://www.bay12games.com/dwarves",
"description": "Indie construction and management game",
"version": "0.44.12",
"license": "Custom",
"url": "http://www.bay12games.com/dwarves/df_44_12_win.zip",
"hash": "36d690dbf28b4a0d3a324a792acf7abac0a6983fdf7df9b6df4796886bec657d",
"shortcuts": [
[
"Dwarf Fortress.exe",
"Dwarf Fortress"
]
],
"checkver": {
"url": "http://www.bay12games.com/dwarves",
"re": "DOWNLOAD DWARF FORTRESS ([\\d\\.]+)"
},
"autoupdate": {
"url": "http://www.bay12games.com/dwarves/df_$minorVersion_$patchVersion_win.zip"
}
}

View File

@ -1,30 +1,30 @@
{
"homepage": "https://maniacsvault.net/ecwolf/",
"description": "Source port for Wolfenstein 3D",
"version": "1.3.3",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "http://maniacsvault.net/ecwolf/files/ecwolf/1.x/ecwolf-1.3.3_x64.zip",
"hash": "f96e1119b1646aad30f05bb0adb079f57326a3093bef304c8124a2ec9fc8ea7d"
},
"32bit": {
"url": "http://maniacsvault.net/ecwolf/files/ecwolf/1.x/ecwolf-1.3.3_x86.zip",
"hash": "b541f23b53659a2d2117632f77e421f5bce77a98e8e2b252988983c0a48d1ed3"
}
},
"bin": [
"ecwolf.exe"
],
"shortcuts": [
[
"ecwolf.exe",
"ECWolf"
]
],
"notes": [
"Place WL6/SOD/SD1/SD2/SD3 files (game data) in:",
"",
"\t%APPDATA%\\ECWolf"
]
}
{
"homepage": "https://maniacsvault.net/ecwolf/",
"description": "Source port for Wolfenstein 3D",
"version": "1.3.3",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "http://maniacsvault.net/ecwolf/files/ecwolf/1.x/ecwolf-1.3.3_x64.zip",
"hash": "f96e1119b1646aad30f05bb0adb079f57326a3093bef304c8124a2ec9fc8ea7d"
},
"32bit": {
"url": "http://maniacsvault.net/ecwolf/files/ecwolf/1.x/ecwolf-1.3.3_x86.zip",
"hash": "b541f23b53659a2d2117632f77e421f5bce77a98e8e2b252988983c0a48d1ed3"
}
},
"bin": [
"ecwolf.exe"
],
"shortcuts": [
[
"ecwolf.exe",
"ECWolf"
]
],
"notes": [
"Place WL6/SOD/SD1/SD2/SD3 files (game data) in:",
"",
"\t%APPDATA%\\ECWolf"
]
}

View File

@ -1,50 +1,50 @@
{
"homepage": "http://www.eduke32.com/",
"description": "Modern source port for Duke Nukem 3D",
"version": "20190304-7392",
"license": "http://www.eduke32.com/buildlic.txt",
"architecture": {
"64bit": {
"url": "https://dukeworld.com/eduke32/synthesis/20190304-7392/eduke32_win64_20190304-7392.7z",
"hash": "689309cf175b224204fa89f6feb4f1089ecd335f721e6c68b2f1ca099601eba2"
},
"32bit": {
"url": "https://dukeworld.com/eduke32/synthesis/20190304-7392/eduke32_win32_20190304-7392.7z",
"hash": "0b8ff94176ffb98687e9d21ad263aeb8eb3b97d19ec27ee35123789943d2571a"
}
},
"bin": [
[
"eduke32.exe",
"eduke32",
"-j $persist_dir\\data"
]
],
"shortcuts": [
[
"eduke32.exe",
"EDuke32",
"-j data"
]
],
"persist": "data",
"notes": [
"Place GRP files (game data) in:",
"",
" $persist_dir\\data"
],
"checkver": {
"url": "https://dukeworld.com/eduke32/synthesis/",
"regex": "<strong>(\\d{8}-\\d{4,})</strong>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://dukeworld.com/eduke32/synthesis/$version/eduke32_win64_$version.7z"
},
"32bit": {
"url": "https://dukeworld.com/eduke32/synthesis/$version/eduke32_win32_$version.7z"
}
}
}
{
"homepage": "http://www.eduke32.com/",
"description": "Modern source port for Duke Nukem 3D",
"version": "20190304-7392",
"license": "http://www.eduke32.com/buildlic.txt",
"architecture": {
"64bit": {
"url": "https://dukeworld.com/eduke32/synthesis/20190304-7392/eduke32_win64_20190304-7392.7z",
"hash": "689309cf175b224204fa89f6feb4f1089ecd335f721e6c68b2f1ca099601eba2"
},
"32bit": {
"url": "https://dukeworld.com/eduke32/synthesis/20190304-7392/eduke32_win32_20190304-7392.7z",
"hash": "0b8ff94176ffb98687e9d21ad263aeb8eb3b97d19ec27ee35123789943d2571a"
}
},
"bin": [
[
"eduke32.exe",
"eduke32",
"-j $persist_dir\\data"
]
],
"shortcuts": [
[
"eduke32.exe",
"EDuke32",
"-j data"
]
],
"persist": "data",
"notes": [
"Place GRP files (game data) in:",
"",
" $persist_dir\\data"
],
"checkver": {
"url": "https://dukeworld.com/eduke32/synthesis/",
"regex": "<strong>(\\d{8}-\\d{4,})</strong>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://dukeworld.com/eduke32/synthesis/$version/eduke32_win64_$version.7z"
},
"32bit": {
"url": "https://dukeworld.com/eduke32/synthesis/$version/eduke32_win32_$version.7z"
}
}
}
}

View File

@ -1,32 +1,32 @@
{
"description": "A 2D space trading and combat game similar to the classic Escape Velocity series",
"homepage": "https://github.com/endless-sky/endless-sky",
"version": "0.9.8",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v0.9.8/endless-sky-win64-0.9.8.zip",
"hash": "b1d43be211197a2c230f093de904e4a8a55b38a07653fb79d1fde53d64bfa90b",
"extract_dir": "endless-sky-win64-0.9.8"
},
"32bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v0.9.8/endless-sky-win32-0.9.8.zip",
"hash": "d6800f329d13a7aa327fc4a798c59369c0883e4ad502be16f844ed0467db8ef8",
"extract_dir": "endless-sky-win32-0.9.8"
}
},
"bin": "EndlessSky.exe",
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v$version/endless-sky-win64-$version.zip",
"extract_dir": "endless-sky-win64-$version"
},
"32bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v$version/endless-sky-win32-$version.zip",
"extract_dir": "endless-sky-win32-$version"
}
}
}
}
{
"description": "A 2D space trading and combat game similar to the classic Escape Velocity series",
"homepage": "https://github.com/endless-sky/endless-sky",
"version": "0.9.8",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v0.9.8/endless-sky-win64-0.9.8.zip",
"hash": "b1d43be211197a2c230f093de904e4a8a55b38a07653fb79d1fde53d64bfa90b",
"extract_dir": "endless-sky-win64-0.9.8"
},
"32bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v0.9.8/endless-sky-win32-0.9.8.zip",
"hash": "d6800f329d13a7aa327fc4a798c59369c0883e4ad502be16f844ed0467db8ef8",
"extract_dir": "endless-sky-win32-0.9.8"
}
},
"bin": "EndlessSky.exe",
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v$version/endless-sky-win64-$version.zip",
"extract_dir": "endless-sky-win64-$version"
},
"32bit": {
"url": "https://github.com/endless-sky/endless-sky/releases/download/v$version/endless-sky-win32-$version.zip",
"extract_dir": "endless-sky-win32-$version"
}
}
}
}

View File

@ -1,43 +1,43 @@
{
"homepage": "https://ericwa.github.io/ericw-tools/",
"description": "Command-line tools for compiling and analyzing Quake maps",
"version": "0.18.1",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v0.18.1/ericw-tools-v0.18.1-win64.zip",
"hash": "a0f39c6faeb29cd08b267880cdcebb310f9938fef4cbbff07d1f6843c36e9cd3",
"extract_dir": "ericw-tools-v0.18.1-win64"
},
"32bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v0.18.1/ericw-tools-v0.18.1-win32.zip",
"hash": "562aae414b914ffa8d3a208ca74d16ac4ca2b61031773227c7d4bdc8384b13ef",
"extract_dir": "ericw-tools-v0.18.1-win32"
}
},
"bin": [
"bin\\bspinfo.exe",
"bin\\bsputil.exe",
"bin\\light.exe",
"bin\\qbsp.exe",
"bin\\vis.exe"
],
"checkver": {
"github": "https://github.com/ericwa/ericw-tools"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v$version/ericw-tools-v$version-win64.zip",
"extract_dir": "ericw-tools-v$version-win64"
},
"32bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v$version/ericw-tools-v$version-win32.zip",
"extract_dir": "ericw-tools-v$version-win32"
}
}
},
"depends": [
"extras/vcredist2013"
]
}
{
"homepage": "https://ericwa.github.io/ericw-tools/",
"description": "Command-line tools for compiling and analyzing Quake maps",
"version": "0.18.1",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v0.18.1/ericw-tools-v0.18.1-win64.zip",
"hash": "a0f39c6faeb29cd08b267880cdcebb310f9938fef4cbbff07d1f6843c36e9cd3",
"extract_dir": "ericw-tools-v0.18.1-win64"
},
"32bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v0.18.1/ericw-tools-v0.18.1-win32.zip",
"hash": "562aae414b914ffa8d3a208ca74d16ac4ca2b61031773227c7d4bdc8384b13ef",
"extract_dir": "ericw-tools-v0.18.1-win32"
}
},
"bin": [
"bin\\bspinfo.exe",
"bin\\bsputil.exe",
"bin\\light.exe",
"bin\\qbsp.exe",
"bin\\vis.exe"
],
"checkver": {
"github": "https://github.com/ericwa/ericw-tools"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v$version/ericw-tools-v$version-win64.zip",
"extract_dir": "ericw-tools-v$version-win64"
},
"32bit": {
"url": "https://github.com/ericwa/ericw-tools/releases/download/v$version/ericw-tools-v$version-win32.zip",
"extract_dir": "ericw-tools-v$version-win32"
}
}
},
"depends": [
"extras/vcredist2013"
]
}

View File

@ -1,24 +1,24 @@
{
"homepage": "https://sourceforge.net/projects/extremetuxracer/",
"description": "High-speed arctic racing game based on Tux Racer",
"version": "0.7.5",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/extremetuxracer/releases/0.7.5/ExtremeTuxRacer_0.7.5_x64.msi",
"hash": "342e36ce09fdb1181923850543327fc23afc69466b32d461d4d93e0b177c04c4"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/extremetuxracer/releases/0.7.5/ExtremeTuxRacer_0.7.5_x86.msi",
"hash": "9e39c4219f85c6a03ed93e1b0d9c81bea969db3d18c52dfc2a2d022b41efddad"
}
},
"extract_dir": "PFiles\\Extreme TuxRacer",
"shortcuts": [
[
"ExtremeTuxRacer.exe",
"Extreme Tux Racer"
]
],
"depends": "extras/vcredist2015"
}
{
"homepage": "https://sourceforge.net/projects/extremetuxracer/",
"description": "High-speed arctic racing game based on Tux Racer",
"version": "0.7.5",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/extremetuxracer/releases/0.7.5/ExtremeTuxRacer_0.7.5_x64.msi",
"hash": "342e36ce09fdb1181923850543327fc23afc69466b32d461d4d93e0b177c04c4"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/extremetuxracer/releases/0.7.5/ExtremeTuxRacer_0.7.5_x86.msi",
"hash": "9e39c4219f85c6a03ed93e1b0d9c81bea969db3d18c52dfc2a2d022b41efddad"
}
},
"extract_dir": "PFiles\\Extreme TuxRacer",
"shortcuts": [
[
"ExtremeTuxRacer.exe",
"Extreme Tux Racer"
]
],
"depends": "extras/vcredist2015"
}

View File

@ -1,15 +1,15 @@
{
"homepage": "http://www.freedroid.org/",
"description": "Isometric RPG influenced by Paradroid",
"version": "0.16.1",
"license": "GPL-2.0-or-later",
"url": "ftp://ftp.osuosl.org/pub/freedroid/freedroidRPG-0.16/freedroidRPG-0.16.1-win32.exe#/dl.7z",
"hash": "bbfb6688a93a9513c4b593e536ddd8a81a5aab5935c98758033118f5a987144b",
"bin": "freedroidRPG.exe",
"shortcuts": [
[
"freedroidRPG.exe",
"FreedroidRPG"
]
]
}
{
"homepage": "http://www.freedroid.org/",
"description": "Isometric RPG influenced by Paradroid",
"version": "0.16.1",
"license": "GPL-2.0-or-later",
"url": "ftp://ftp.osuosl.org/pub/freedroid/freedroidRPG-0.16/freedroidRPG-0.16.1-win32.exe#/dl.7z",
"hash": "bbfb6688a93a9513c4b593e536ddd8a81a5aab5935c98758033118f5a987144b",
"bin": "freedroidRPG.exe",
"shortcuts": [
[
"freedroidRPG.exe",
"FreedroidRPG"
]
]
}

View File

@ -1,79 +1,79 @@
{
"homepage": "http://fte.triptohell.info/",
"description": "Modern QuakeWorld source port with advanced graphics capabilities",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "http://triptohell.info/moodles/win64/fteqw64.exe",
"shortcuts": [
[
"fteqw64.exe",
"FTEQW (Quake)",
"-game id1"
],
[
"fteqw64.exe",
"FTEQW (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"fteqw64.exe",
"FTEQW (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"fteqw64.exe",
"FTEQW (Quake - Abyss of Pandemonium)",
"-game abyss"
]
]
},
"32bit": {
"url": "http://triptohell.info/moodles/win32/fteqw.exe",
"shortcuts": [
[
"fteqw.exe",
"FTEQW (Quake)",
"-game id1"
],
[
"fteqw.exe",
"FTEQW (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"fteqw.exe",
"FTEQW (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"fteqw.exe",
"FTEQW (Quake - Abyss of Pandemonium)",
"-game abyss"
]
]
}
},
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}
{
"homepage": "http://fte.triptohell.info/",
"description": "Modern QuakeWorld source port with advanced graphics capabilities",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "http://triptohell.info/moodles/win64/fteqw64.exe",
"shortcuts": [
[
"fteqw64.exe",
"FTEQW (Quake)",
"-game id1"
],
[
"fteqw64.exe",
"FTEQW (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"fteqw64.exe",
"FTEQW (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"fteqw64.exe",
"FTEQW (Quake - Abyss of Pandemonium)",
"-game abyss"
]
]
},
"32bit": {
"url": "http://triptohell.info/moodles/win32/fteqw.exe",
"shortcuts": [
[
"fteqw.exe",
"FTEQW (Quake)",
"-game id1"
],
[
"fteqw.exe",
"FTEQW (Quake - Scourge of Armagon)",
"-game hipnotic"
],
[
"fteqw.exe",
"FTEQW (Quake - Dissolution of Eternity)",
"-game rogue"
],
[
"fteqw.exe",
"FTEQW (Quake - Abyss of Pandemonium)",
"-game abyss"
]
]
}
},
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}

View File

@ -1,38 +1,38 @@
{
"homepage": "https://zdoom.org/",
"description": "Modern source port for Doom, Heretic, Hexen and more",
"version": "3.7.2",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/coelckers/gzdoom/releases/download/g3.7.2/gzdoom-bin-3-7-2-x64.zip",
"hash": "7e8256fa1b6235132539db948e6d6a8217e534ca614fb357ef0226daa26331a6"
},
"32bit": {
"url": "https://github.com/coelckers/gzdoom/releases/download/g3.7.2/gzdoom-bin-3-7-2.zip",
"hash": "948b8819004dd02cc32582a98b127fa7a25e6539acc5e8ed0df0a697b2563478"
}
},
"bin": [
"gzdoom.exe"
],
"shortcuts": [
[
"gzdoom.exe",
"GZDoom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"checkver": {
"github": "https://github.com/coelckers/gzdoom",
"regex": "/releases/tag/(?:g)?([\\w.]+)"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "https://zdoom.org/",
"description": "Modern source port for Doom, Heretic, Hexen and more",
"version": "3.7.2",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/coelckers/gzdoom/releases/download/g3.7.2/gzdoom-bin-3-7-2-x64.zip",
"hash": "7e8256fa1b6235132539db948e6d6a8217e534ca614fb357ef0226daa26331a6"
},
"32bit": {
"url": "https://github.com/coelckers/gzdoom/releases/download/g3.7.2/gzdoom-bin-3-7-2.zip",
"hash": "948b8819004dd02cc32582a98b127fa7a25e6539acc5e8ed0df0a697b2563478"
}
},
"bin": [
"gzdoom.exe"
],
"shortcuts": [
[
"gzdoom.exe",
"GZDoom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"checkver": {
"github": "https://github.com/coelckers/gzdoom",
"regex": "/releases/tag/(?:g)?([\\w.]+)"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,19 +1,19 @@
{
"homepage": "https://www.hedgewars.org/",
"description": "2D turn-based artillery game featuring fighting hedgehogs",
"version": "0.9.25",
"license": "GPL-2.0-only",
"url": "https://www.hedgewars.org/download/releases/Hedgewars-0.9.25.exe#/dl.7z",
"hash": "54e77aaec1efdf8fd5b728c630913c8cdaa106b39b606304bcae49c869878956",
"bin": [
"hedgewars.exe",
"hedgewars-server.exe",
"hwengine.exe"
],
"shortcuts": [
[
"hedgewars.exe",
"Hedgewars"
]
]
}
{
"homepage": "https://www.hedgewars.org/",
"description": "2D turn-based artillery game featuring fighting hedgehogs",
"version": "0.9.25",
"license": "GPL-2.0-only",
"url": "https://www.hedgewars.org/download/releases/Hedgewars-0.9.25.exe#/dl.7z",
"hash": "54e77aaec1efdf8fd5b728c630913c8cdaa106b39b606304bcae49c869878956",
"bin": [
"hedgewars.exe",
"hedgewars-server.exe",
"hwengine.exe"
],
"shortcuts": [
[
"hedgewars.exe",
"Hedgewars"
]
]
}

View File

@ -1,71 +1,71 @@
{
"homepage": "https://ioquake3.org/",
"description": "Reference source port for Quake III Arena and Quake III: Team Arena",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://ioquake3.org/files/jenkins/latest/gcc/no_options/release-mingw32-x86_64.zip",
"bin": [
[
"ioquake3.x86_64.exe",
"ioquake3"
],
[
"ioq3ded.x86_64.exe",
"ioq3ded"
]
],
"shortcuts": [
[
"ioquake3.x86_64.exe",
"ioquake3",
"+set fs_game baseq3"
],
[
"ioquake3.x86_64.exe",
"ioquake3 - Team Arena",
"+set fs_game missionpack"
]
]
},
"32bit": {
"url": "https://ioquake3.org/files/jenkins/latest/gcc/no_options/release-mingw32-x86.zip",
"bin": [
[
"ioquake3.x86.exe",
"ioquake3"
],
[
"ioq3ded.x86.exe",
"ioq3ded"
]
],
"shortcuts": [
[
"ioquake3.x86.exe",
"ioquake3",
"+set fs_game baseq3"
],
[
"ioquake3.x86.exe",
"ioquake3 - Team Arena",
"+set fs_game missionpack"
]
]
}
},
"persist": [
"baseq3",
"missionpack"
],
"notes": [
"Place game data files (such as pak0.pk3-pak8.pk3) in:",
"",
"- Quake 3 Arena:",
"\t$persist_dir\\baseq3\\",
"",
"- Quake 3 - Team Arena:",
"\t$persist_dir\\missionpack\\"
]
}
{
"homepage": "https://ioquake3.org/",
"description": "Reference source port for Quake III Arena and Quake III: Team Arena",
"version": "nightly",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://ioquake3.org/files/jenkins/latest/gcc/no_options/release-mingw32-x86_64.zip",
"bin": [
[
"ioquake3.x86_64.exe",
"ioquake3"
],
[
"ioq3ded.x86_64.exe",
"ioq3ded"
]
],
"shortcuts": [
[
"ioquake3.x86_64.exe",
"ioquake3",
"+set fs_game baseq3"
],
[
"ioquake3.x86_64.exe",
"ioquake3 - Team Arena",
"+set fs_game missionpack"
]
]
},
"32bit": {
"url": "https://ioquake3.org/files/jenkins/latest/gcc/no_options/release-mingw32-x86.zip",
"bin": [
[
"ioquake3.x86.exe",
"ioquake3"
],
[
"ioq3ded.x86.exe",
"ioq3ded"
]
],
"shortcuts": [
[
"ioquake3.x86.exe",
"ioquake3",
"+set fs_game baseq3"
],
[
"ioquake3.x86.exe",
"ioquake3 - Team Arena",
"+set fs_game missionpack"
]
]
}
},
"persist": [
"baseq3",
"missionpack"
],
"notes": [
"Place game data files (such as pak0.pk3-pak8.pk3) in:",
"",
"- Quake 3 Arena:",
"\t$persist_dir\\baseq3\\",
"",
"- Quake 3 - Team Arena:",
"\t$persist_dir\\missionpack\\"
]
}

View File

@ -1,88 +1,88 @@
{
"homepage": "https://github.com/iortcw/iortcw",
"description": "Source port for Return to Castle Wolfenstein",
"version": "1.51b",
"license": "https://github.com/iortcw/iortcw/blob/master/SP/COPYING.txt",
"architecture": {
"64bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/1.51b/iortcw-1.51b-win-x64.zip",
"hash": "061d7da4dfcda32357db687ebe6e35604b9ab65b1f89cd34d6ce335672cf6fdc",
"extract_dir": "iortcw-1.51b-win-x64",
"bin": [
[
"ioWolfSP.x86_64.exe",
"iowolfsp"
],
[
"ioWolfMP.x86_64.exe",
"iowolfmp"
],
[
"ioWolfDED.x86_64.exe",
"iowolfded"
]
],
"shortcuts": [
[
"ioWolfSP.x86_64.exe",
"iortcw - Singleplayer"
],
[
"ioWolfMP.x86_64.exe",
"iortcw - Multiplayer"
]
]
},
"32bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/1.51b/iortcw-1.51b-win-x86.zip",
"hash": "3cce7c3333ba96895997a20920ce8a46fdd77f3920f658ca70a6d5abcfe4bbbd",
"extract_dir": "iortcw-1.51b-win-x86",
"bin": [
[
"ioWolfSP.x86.exe",
"iowolfsp"
],
[
"ioWolfMP.x86.exe",
"iowolfmp"
],
[
"ioWolfDED.x86.exe",
"iowolfded"
]
],
"shortcuts": [
[
"ioWolfSP.x86.exe",
"iortcw - Singleplayer"
],
[
"ioWolfMP.x86.exe",
"iortcw - Multiplayer"
]
]
}
},
"persist": "Main",
"checkver": {
"github": "https://github.com/iortcw/iortcw",
"regex": "/releases/tag/(?:v|V)?([\\w.]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/$version/iortcw-$version-win-x64.zip",
"extract_dir": "iortcw-$version-win-x64"
},
"32bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/$version/iortcw-$version-win-x86.zip",
"extract_dir": "iortcw-$version-win-x86"
}
}
},
"notes": [
"Place game data files (such as pak0.pk3, sp_pak1.pk3-sp_pak4.pk3, mp_*.pk3) in:",
"",
"\t$persist_dir\\Main\\"
]
}
{
"homepage": "https://github.com/iortcw/iortcw",
"description": "Source port for Return to Castle Wolfenstein",
"version": "1.51b",
"license": "https://github.com/iortcw/iortcw/blob/master/SP/COPYING.txt",
"architecture": {
"64bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/1.51b/iortcw-1.51b-win-x64.zip",
"hash": "061d7da4dfcda32357db687ebe6e35604b9ab65b1f89cd34d6ce335672cf6fdc",
"extract_dir": "iortcw-1.51b-win-x64",
"bin": [
[
"ioWolfSP.x86_64.exe",
"iowolfsp"
],
[
"ioWolfMP.x86_64.exe",
"iowolfmp"
],
[
"ioWolfDED.x86_64.exe",
"iowolfded"
]
],
"shortcuts": [
[
"ioWolfSP.x86_64.exe",
"iortcw - Singleplayer"
],
[
"ioWolfMP.x86_64.exe",
"iortcw - Multiplayer"
]
]
},
"32bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/1.51b/iortcw-1.51b-win-x86.zip",
"hash": "3cce7c3333ba96895997a20920ce8a46fdd77f3920f658ca70a6d5abcfe4bbbd",
"extract_dir": "iortcw-1.51b-win-x86",
"bin": [
[
"ioWolfSP.x86.exe",
"iowolfsp"
],
[
"ioWolfMP.x86.exe",
"iowolfmp"
],
[
"ioWolfDED.x86.exe",
"iowolfded"
]
],
"shortcuts": [
[
"ioWolfSP.x86.exe",
"iortcw - Singleplayer"
],
[
"ioWolfMP.x86.exe",
"iortcw - Multiplayer"
]
]
}
},
"persist": "Main",
"checkver": {
"github": "https://github.com/iortcw/iortcw",
"regex": "/releases/tag/(?:v|V)?([\\w.]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/$version/iortcw-$version-win-x64.zip",
"extract_dir": "iortcw-$version-win-x64"
},
"32bit": {
"url": "https://github.com/iortcw/iortcw/releases/download/$version/iortcw-$version-win-x86.zip",
"extract_dir": "iortcw-$version-win-x86"
}
}
},
"notes": [
"Place game data files (such as pak0.pk3, sp_pak1.pk3-sp_pak4.pk3, mp_*.pk3) in:",
"",
"\t$persist_dir\\Main\\"
]
}

View File

@ -1,58 +1,58 @@
{
"homepage": "https://megaglest.org/",
"description": "Real-time 3D strategy game",
"version": "3.13.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/MegaGlest/megaglest-source/releases/download/3.13.0/MegaGlest-Installer-3.13.0_windows_64bit.exe#/dl.7z",
"hash": "d08d6248b1d9edadb5709d84eb39af61fbcd2fbb8edd649ccebe3e96541e3847",
"bin": [
[
"megaglestx64.exe",
"megaglest"
],
[
"megaglest_editorx64.exe",
"megaglest_editor"
],
[
"megaglest_g3dviewerx64.exe",
"megaglest_g3dviewer"
]
],
"shortcuts": [
[
"megaglestx64.exe",
"MegaGlest"
],
[
"megaglest_editorx64.exe",
"MegaGlest Editor"
]
]
},
"32bit": {
"url": "https://github.com/MegaGlest/megaglest-source/releases/download/3.13.0/MegaGlest-Installer-3.13.0_windows_32bit.exe#/dl.7z",
"hash": "84eade59226fe52f8349bfcffec1b71a4d45760671f59e4d7d25c1c991a9610d",
"bin": [
"megaglest.exe",
"megaglest_editor.exe",
"megaglest_g3dviewer.exe"
],
"shortcuts": [
[
"megaglest.exe",
"MegaGlest"
],
[
"megaglest_editor.exe",
"MegaGlest Editor"
]
]
}
},
"checkver": {
"github": "https://github.com/MegaGlest/megaglest-source"
}
}
{
"homepage": "https://megaglest.org/",
"description": "Real-time 3D strategy game",
"version": "3.13.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/MegaGlest/megaglest-source/releases/download/3.13.0/MegaGlest-Installer-3.13.0_windows_64bit.exe#/dl.7z",
"hash": "d08d6248b1d9edadb5709d84eb39af61fbcd2fbb8edd649ccebe3e96541e3847",
"bin": [
[
"megaglestx64.exe",
"megaglest"
],
[
"megaglest_editorx64.exe",
"megaglest_editor"
],
[
"megaglest_g3dviewerx64.exe",
"megaglest_g3dviewer"
]
],
"shortcuts": [
[
"megaglestx64.exe",
"MegaGlest"
],
[
"megaglest_editorx64.exe",
"MegaGlest Editor"
]
]
},
"32bit": {
"url": "https://github.com/MegaGlest/megaglest-source/releases/download/3.13.0/MegaGlest-Installer-3.13.0_windows_32bit.exe#/dl.7z",
"hash": "84eade59226fe52f8349bfcffec1b71a4d45760671f59e4d7d25c1c991a9610d",
"bin": [
"megaglest.exe",
"megaglest_editor.exe",
"megaglest_g3dviewer.exe"
],
"shortcuts": [
[
"megaglest.exe",
"MegaGlest"
],
[
"megaglest_editor.exe",
"MegaGlest Editor"
]
]
}
},
"checkver": {
"github": "https://github.com/MegaGlest/megaglest-source"
}
}

View File

@ -1,26 +1,26 @@
{
"homepage": "https://minecraft.net/",
"description": "Official launcher for Minecraft, a sandbox voxel game",
"version": "java-edition",
"license": {
"identifier": "Freeware",
"url": "https://account.mojang.com/terms"
},
"url": "https://launcher.mojang.com/download/Minecraft.exe",
"hash": "a76c2c056fc762f875471d1d49c108ecf23939b9abde5f38b59529af250469ef",
"##": [
"Using the `current` junction prevents Minecraft from loading the login screen."
],
"bin": [
"../java-edition/Minecraft.exe"
],
"shortcuts": [
[
"../java-edition/Minecraft.exe",
"Minecraft"
]
],
"notes": [
"This is only the launcher; you need to log in with a premium account to play Minecraft."
]
}
{
"homepage": "https://minecraft.net/",
"description": "Official launcher for Minecraft, a sandbox voxel game",
"version": "java-edition",
"license": {
"identifier": "Freeware",
"url": "https://account.mojang.com/terms"
},
"url": "https://launcher.mojang.com/download/Minecraft.exe",
"hash": "a76c2c056fc762f875471d1d49c108ecf23939b9abde5f38b59529af250469ef",
"##": [
"Using the `current` junction prevents Minecraft from loading the login screen."
],
"bin": [
"../java-edition/Minecraft.exe"
],
"shortcuts": [
[
"../java-edition/Minecraft.exe",
"Minecraft"
]
],
"notes": [
"This is only the launcher; you need to log in with a premium account to play Minecraft."
]
}

View File

@ -1,42 +1,42 @@
{
"homepage": "https://www.minetest.net/",
"description": "Minecraft-like infinite-world multiplayer sandbox game",
"version": "5.0.0",
"license": "LGPL-2.1-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/minetest/minetest/releases/download/5.0.0/minetest-5.0.0-win64.zip",
"hash": "16b86aa9f38133a80e80c399c8e57fc394e9309fc2454192c61907663a12ac33",
"extract_dir": "minetest-5.0.0-win64"
},
"32bit": {
"url": "https://github.com/minetest/minetest/releases/download/5.0.0/minetest-5.0.0-win32.zip",
"hash": "1050df9af488ac949e717b2af38961498cb6908ab172d5125a9b347cef135b0e",
"extract_dir": "minetest-5.0.0-win32"
}
},
"shortcuts": [
[
"bin\\minetest.exe",
"Minetest",
"--config ..\\config\\minetest.conf"
]
],
"persist": "config",
"post_install": "New-Item -ErrorAction Ignore -Type file \"$persist_dir\\config\\minetest.conf\"",
"checkver": {
"github": "https://github.com/minetest/minetest"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/minetest/minetest/releases/download/$version/minetest-$version-win64.zip",
"extract_dir": "minetest-$version-win64"
},
"32bit": {
"url": "https://github.com/minetest/minetest/releases/download/$version/minetest-$version-win32.zip",
"extract_dir": "minetest-$version-win32"
}
}
}
{
"homepage": "https://www.minetest.net/",
"description": "Minecraft-like infinite-world multiplayer sandbox game",
"version": "5.0.0",
"license": "LGPL-2.1-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/minetest/minetest/releases/download/5.0.0/minetest-5.0.0-win64.zip",
"hash": "16b86aa9f38133a80e80c399c8e57fc394e9309fc2454192c61907663a12ac33",
"extract_dir": "minetest-5.0.0-win64"
},
"32bit": {
"url": "https://github.com/minetest/minetest/releases/download/5.0.0/minetest-5.0.0-win32.zip",
"hash": "1050df9af488ac949e717b2af38961498cb6908ab172d5125a9b347cef135b0e",
"extract_dir": "minetest-5.0.0-win32"
}
},
"shortcuts": [
[
"bin\\minetest.exe",
"Minetest",
"--config ..\\config\\minetest.conf"
]
],
"persist": "config",
"post_install": "New-Item -ErrorAction Ignore -Type file \"$persist_dir\\config\\minetest.conf\"",
"checkver": {
"github": "https://github.com/minetest/minetest"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/minetest/minetest/releases/download/$version/minetest-$version-win64.zip",
"extract_dir": "minetest-$version-win64"
},
"32bit": {
"url": "https://github.com/minetest/minetest/releases/download/$version/minetest-$version-win32.zip",
"extract_dir": "minetest-$version-win32"
}
}
}
}

View File

@ -1,23 +1,23 @@
{
"homepage": "https://neverball.org/",
"description": "3D roll-the-ball puzzle game (includes Neverputt)",
"version": "1.6.0",
"license": "GPL-2.0-or-later",
"url": "https://neverball.org/neverball-1.6.0.zip",
"hash": "865391cc041208e526401a8eb1f14fba44323f17d7e818c5e65e82393ff747fb",
"extract_dir": "neverball-1.6.0",
"bin": [
"neverball.exe",
"neverputt.exe"
],
"shortcuts": [
[
"neverball.exe",
"Neverball"
],
[
"neverputt.exe",
"Neverputt"
]
]
}
{
"homepage": "https://neverball.org/",
"description": "3D roll-the-ball puzzle game (includes Neverputt)",
"version": "1.6.0",
"license": "GPL-2.0-or-later",
"url": "https://neverball.org/neverball-1.6.0.zip",
"hash": "865391cc041208e526401a8eb1f14fba44323f17d7e818c5e65e82393ff747fb",
"extract_dir": "neverball-1.6.0",
"bin": [
"neverball.exe",
"neverputt.exe"
],
"shortcuts": [
[
"neverball.exe",
"Neverball"
],
[
"neverputt.exe",
"Neverputt"
]
]
}

View File

@ -1,20 +1,20 @@
{
"homepage": "http://uppgarn.com/nuncabola/",
"description": "3D roll-the-ball puzzle game (reimplementation of Neverball in Java)",
"version": "0.192",
"license": "GPL-2.0-or-later",
"url": "http://uppgarn.com/nuncabola/nuncabola-0.192.zip",
"hash": "878406ec5c22b31d7fa05cc54519a1caf7c57d45a449adf3a81dc875ebece06f",
"extract_dir": "Nuncabola",
"shortcuts": [
[
"nuncabola.bat",
"Nuncabola"
]
],
"suggest": {
"JDK": [
"java/adoptopenjdk-hotspot-jre"
]
}
}
{
"homepage": "http://uppgarn.com/nuncabola/",
"description": "3D roll-the-ball puzzle game (reimplementation of Neverball in Java)",
"version": "0.192",
"license": "GPL-2.0-or-later",
"url": "http://uppgarn.com/nuncabola/nuncabola-0.192.zip",
"hash": "878406ec5c22b31d7fa05cc54519a1caf7c57d45a449adf3a81dc875ebece06f",
"extract_dir": "Nuncabola",
"shortcuts": [
[
"nuncabola.bat",
"Nuncabola"
]
],
"suggest": {
"JDK": [
"java/adoptopenjdk-hotspot-jre"
]
}
}

View File

@ -1,37 +1,37 @@
{
"homepage": "https://odamex.net/",
"description": "Multiplayer-oriented source port for Doom",
"version": "0.7.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/odamex/Odamex/0.7.0/odamex-win64-0.7.0.zip",
"hash": "1540ff988edd81dbf662015a839f87208769f98976cbf75dcdfa09c9584172e2",
"extract_dir": "odamex-win64-0.7.0"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/odamex/Odamex/0.7.0/odamex-win32-0.7.0.zip",
"hash": "dfc169e0db2eb26a97e66c78ed78d3583ab911d2177966dae93013172b1692f9",
"extract_dir": "odamex-win32-0.7.0"
}
},
"shortcuts": [
[
"odamex.exe",
"Odamex"
],
[
"odalaunch.exe",
"Odalaunch"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "https://odamex.net/",
"description": "Multiplayer-oriented source port for Doom",
"version": "0.7.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/odamex/Odamex/0.7.0/odamex-win64-0.7.0.zip",
"hash": "1540ff988edd81dbf662015a839f87208769f98976cbf75dcdfa09c9584172e2",
"extract_dir": "odamex-win64-0.7.0"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/odamex/Odamex/0.7.0/odamex-win32-0.7.0.zip",
"hash": "dfc169e0db2eb26a97e66c78ed78d3583ab911d2177966dae93013172b1692f9",
"extract_dir": "odamex-win32-0.7.0"
}
},
"shortcuts": [
[
"odamex.exe",
"Odamex"
],
[
"odalaunch.exe",
"Odalaunch"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,18 +1,18 @@
{
"homepage": "http://openarena.ws/",
"description": "Free fast-paced first-person shooter based on the Quake III Arena engine",
"version": "0.8.8",
"license": "GPL-2.0-or-later",
"url": "http://download.tuxfamily.org/openarena/rel/088/openarena-0.8.8.zip",
"hash": "5a8faf7f5b51f351b0a1618c06b6b98a5f1a6758f1d39818de2c87df2a0bac4a",
"extract_dir": "openarena-0.8.8",
"bin": [
"openarena.exe"
],
"shortcuts": [
[
"openarena.exe",
"OpenArena"
]
]
}
{
"homepage": "http://openarena.ws/",
"description": "Free fast-paced first-person shooter based on the Quake III Arena engine",
"version": "0.8.8",
"license": "GPL-2.0-or-later",
"url": "http://download.tuxfamily.org/openarena/rel/088/openarena-0.8.8.zip",
"hash": "5a8faf7f5b51f351b0a1618c06b6b98a5f1a6758f1d39818de2c87df2a0bac4a",
"extract_dir": "openarena-0.8.8",
"bin": [
"openarena.exe"
],
"shortcuts": [
[
"openarena.exe",
"OpenArena"
]
]
}

View File

@ -1,23 +1,23 @@
{
"homepage": "https://www.openclonk.org/",
"description": "2D multiplayer action game with mining, settling and fast-paced melees",
"version": "8.1",
"license": "ISC",
"architecture": {
"64bit": {
"url": "https://www.openclonk.org/builds/release/8.1/openclonk-8.1-x64.exe#/dl.7z",
"hash": "cb595b8b7495b9c68cb21db01c852ff3c12f20de51d72dfc99009aa1093f0b01"
},
"32bit": {
"url": "https://www.openclonk.org/builds/release/8.1/openclonk-8.1.exe#/dl.7z",
"hash": "db5285406c359d67cfb82a6c772854c8d3ef78a646aa141da09506a8a542e10c"
}
},
"bin": "openclonk.exe",
"shortcuts": [
[
"openclonk.exe",
"OpenClonk"
]
]
}
{
"homepage": "https://www.openclonk.org/",
"description": "2D multiplayer action game with mining, settling and fast-paced melees",
"version": "8.1",
"license": "ISC",
"architecture": {
"64bit": {
"url": "https://www.openclonk.org/builds/release/8.1/openclonk-8.1-x64.exe#/dl.7z",
"hash": "cb595b8b7495b9c68cb21db01c852ff3c12f20de51d72dfc99009aa1093f0b01"
},
"32bit": {
"url": "https://www.openclonk.org/builds/release/8.1/openclonk-8.1.exe#/dl.7z",
"hash": "db5285406c359d67cfb82a6c772854c8d3ef78a646aa141da09506a8a542e10c"
}
},
"bin": "openclonk.exe",
"shortcuts": [
[
"openclonk.exe",
"OpenClonk"
]
]
}

View File

@ -1,18 +1,18 @@
{
"homepage": "https://opendungeons.github.io/",
"description": "Real-time strategy game inspired by the Dungeon Keeper series",
"version": "0.7.1",
"license": "GPL-3.0-or-later",
"url": "ftp://download.tuxfamily.org/opendungeons/0.7/OpenDungeons-0.7.1-Win32-MSVS2013.zip",
"hash": "7ed4889a4d7fea5deb02b3f730f26be1a16563b85781f513de065f82b8d0d535",
"extract_dir": "OpenDungeons-0.7.1-Win32-MSVS2013",
"shortcuts": [
[
"OpenDungeons.exe",
"OpenDungeons"
]
],
"checkver": {
"github": "https://github.com/OpenDungeons/OpenDungeons"
}
}
{
"homepage": "https://opendungeons.github.io/",
"description": "Real-time strategy game inspired by the Dungeon Keeper series",
"version": "0.7.1",
"license": "GPL-3.0-or-later",
"url": "ftp://download.tuxfamily.org/opendungeons/0.7/OpenDungeons-0.7.1-Win32-MSVS2013.zip",
"hash": "7ed4889a4d7fea5deb02b3f730f26be1a16563b85781f513de065f82b8d0d535",
"extract_dir": "OpenDungeons-0.7.1-Win32-MSVS2013",
"shortcuts": [
[
"OpenDungeons.exe",
"OpenDungeons"
]
],
"checkver": {
"github": "https://github.com/OpenDungeons/OpenDungeons"
}
}

View File

@ -1,28 +1,28 @@
{
"description": "An open source re-implementation of RollerCoaster Tycoon 2",
"homepage": "https://github.com/OpenRCT2/OpenRCT2",
"version": "0.2.1",
"license": "GPL-3.0-only",
"architecture": {
"64bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v0.2.1/OpenRCT2-0.2.1-windows-portable-x64.zip",
"hash": "a6421329c83b436d6f1686079b9a8e5dc820eaecb9efc06c43f6766c54698b77"
},
"32bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v0.2.1/OpenRCT2-0.2.1-windows-portable-win32.zip",
"hash": "8cf86a8cb7ad7426d3b59d72712c4f4e299a0d360311fb5beaef302db647f952"
}
},
"bin": "OpenRCT2.exe",
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v$version/OpenRCT2-$version-windows-portable-x64.zip"
},
"32bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v$version/OpenRCT2-$version-windows-portable-win32.zip"
}
}
}
}
{
"description": "An open source re-implementation of RollerCoaster Tycoon 2",
"homepage": "https://github.com/OpenRCT2/OpenRCT2",
"version": "0.2.1",
"license": "GPL-3.0-only",
"architecture": {
"64bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v0.2.1/OpenRCT2-0.2.1-windows-portable-x64.zip",
"hash": "a6421329c83b436d6f1686079b9a8e5dc820eaecb9efc06c43f6766c54698b77"
},
"32bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v0.2.1/OpenRCT2-0.2.1-windows-portable-win32.zip",
"hash": "8cf86a8cb7ad7426d3b59d72712c4f4e299a0d360311fb5beaef302db647f952"
}
},
"bin": "OpenRCT2.exe",
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v$version/OpenRCT2-$version-windows-portable-x64.zip"
},
"32bit": {
"url": "https://github.com/OpenRCT2/OpenRCT2/releases/download/v$version/OpenRCT2-$version-windows-portable-win32.zip"
}
}
}
}

View File

@ -1,22 +1,22 @@
{
"homepage": "https://openspades.yvt.jp/",
"description": "Voxel first-person shooter compatible with Ace of Spades 0.75",
"version": "0.1.3",
"license": "GPL-3.0-or-later",
"url": "https://github.com/yvt/openspades/releases/download/v0.1.3/OpenSpades-0.1.3-Windows.zip",
"hash": "c1e72ee70615cc750445c9f1cd2f8afa68b6867f148ffd52e50e927982f3a36e",
"extract_dir": "OpenSpades-0.1.2-Windows",
"bin": "OpenSpades.exe",
"shortcuts": [
[
"OpenSpades.exe",
"OpenSpades"
]
],
"checkver": {
"github": "https://github.com/yvt/openspades"
},
"autoupdate": {
"url": "https://github.com/yvt/openspades/releases/download/v$version/OpenSpades-$version-Windows.zip"
}
}
{
"homepage": "https://openspades.yvt.jp/",
"description": "Voxel first-person shooter compatible with Ace of Spades 0.75",
"version": "0.1.3",
"license": "GPL-3.0-or-later",
"url": "https://github.com/yvt/openspades/releases/download/v0.1.3/OpenSpades-0.1.3-Windows.zip",
"hash": "c1e72ee70615cc750445c9f1cd2f8afa68b6867f148ffd52e50e927982f3a36e",
"extract_dir": "OpenSpades-0.1.2-Windows",
"bin": "OpenSpades.exe",
"shortcuts": [
[
"OpenSpades.exe",
"OpenSpades"
]
],
"checkver": {
"github": "https://github.com/yvt/openspades"
},
"autoupdate": {
"url": "https://github.com/yvt/openspades/releases/download/v$version/OpenSpades-$version-Windows.zip"
}
}

View File

@ -1,50 +1,50 @@
{
"homepage": "https://www.openttd.org/",
"description": "Simulation game based upon Transport Tycoon Deluxe",
"version": "1.8.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": [
"https://binaries.openttd.org/releases/1.8.0/openttd-1.8.0-windows-win64.zip",
"https://binaries.openttd.org/extra/opengfx/0.5.2/opengfx-0.5.2-all.zip",
"https://binaries.openttd.org/extra/opensfx/0.2.3/opensfx-0.2.3-all.zip",
"https://binaries.openttd.org/extra/openmsx/0.3.1/openmsx-0.3.1-all.zip"
],
"hash": [
"f3e333d7597309b432d7f6529d746923ffd4339dffca43bb024d37db7beddc91",
"19be61f1cb04cbb3cb9602f0b8eb6e6f56ecbefbfdd6e0e03f9579e5a5c1cbc8",
"6831b651b3dc8b494026f7277989a1d757961b67c17b75d3c2e097451f75af02",
"92e293ae89f13ad679f43185e83fb81fb8cad47fe63f4af3d3d9f955130460f5"
]
},
"32bit": {
"url": [
"https://binaries.openttd.org/releases/1.8.0/openttd-1.8.0-windows-win32.zip",
"https://binaries.openttd.org/extra/opengfx/0.5.2/opengfx-0.5.2-all.zip",
"https://binaries.openttd.org/extra/opensfx/0.2.3/opensfx-0.2.3-all.zip",
"https://binaries.openttd.org/extra/openmsx/0.3.1/openmsx-0.3.1-all.zip"
],
"hash": [
"415a518557d5a15ebcf578d21c0c6a7c67727680ca677707989af5c1818c9c63",
"19be61f1cb04cbb3cb9602f0b8eb6e6f56ecbefbfdd6e0e03f9579e5a5c1cbc8",
"6831b651b3dc8b494026f7277989a1d757961b67c17b75d3c2e097451f75af02",
"92e293ae89f13ad679f43185e83fb81fb8cad47fe63f4af3d3d9f955130460f5"
]
}
},
"pre_install": [
"Move-Item \"$dir\\opengfx-0.5.2.tar\" \"$dir\\baseset\"",
"Move-Item \"$dir\\opensfx-0.2.3\" \"$dir\\baseset\"",
"Move-Item \"$dir\\openmsx-0.3.1\" \"$dir\\baseset\""
],
"bin": [
"openttd.exe"
],
"shortcuts": [
[
"openttd.exe",
"OpenTTD"
]
]
}
{
"homepage": "https://www.openttd.org/",
"description": "Simulation game based upon Transport Tycoon Deluxe",
"version": "1.8.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": [
"https://binaries.openttd.org/releases/1.8.0/openttd-1.8.0-windows-win64.zip",
"https://binaries.openttd.org/extra/opengfx/0.5.2/opengfx-0.5.2-all.zip",
"https://binaries.openttd.org/extra/opensfx/0.2.3/opensfx-0.2.3-all.zip",
"https://binaries.openttd.org/extra/openmsx/0.3.1/openmsx-0.3.1-all.zip"
],
"hash": [
"f3e333d7597309b432d7f6529d746923ffd4339dffca43bb024d37db7beddc91",
"19be61f1cb04cbb3cb9602f0b8eb6e6f56ecbefbfdd6e0e03f9579e5a5c1cbc8",
"6831b651b3dc8b494026f7277989a1d757961b67c17b75d3c2e097451f75af02",
"92e293ae89f13ad679f43185e83fb81fb8cad47fe63f4af3d3d9f955130460f5"
]
},
"32bit": {
"url": [
"https://binaries.openttd.org/releases/1.8.0/openttd-1.8.0-windows-win32.zip",
"https://binaries.openttd.org/extra/opengfx/0.5.2/opengfx-0.5.2-all.zip",
"https://binaries.openttd.org/extra/opensfx/0.2.3/opensfx-0.2.3-all.zip",
"https://binaries.openttd.org/extra/openmsx/0.3.1/openmsx-0.3.1-all.zip"
],
"hash": [
"415a518557d5a15ebcf578d21c0c6a7c67727680ca677707989af5c1818c9c63",
"19be61f1cb04cbb3cb9602f0b8eb6e6f56ecbefbfdd6e0e03f9579e5a5c1cbc8",
"6831b651b3dc8b494026f7277989a1d757961b67c17b75d3c2e097451f75af02",
"92e293ae89f13ad679f43185e83fb81fb8cad47fe63f4af3d3d9f955130460f5"
]
}
},
"pre_install": [
"Move-Item \"$dir\\opengfx-0.5.2.tar\" \"$dir\\baseset\"",
"Move-Item \"$dir\\opensfx-0.2.3\" \"$dir\\baseset\"",
"Move-Item \"$dir\\openmsx-0.3.1\" \"$dir\\baseset\""
],
"bin": [
"openttd.exe"
],
"shortcuts": [
[
"openttd.exe",
"OpenTTD"
]
]
}

View File

@ -1,20 +1,20 @@
{
"homepage": "http://digitalpaint.org/",
"description": "Fast-paced paintball first-person shooter based on the Quake 2 engine",
"version": "build041",
"license": "Custom",
"url": "https://downloads.sourceforge.net/project/paintball2/Paintball%202/Paintball%202.0%20Alpha%20build041/paintball2_build041_full.exe#/dl.7z",
"hash": "c59b20273d16d1f7a277ff1f7ae15ff128a0b1a04cc13319f6c7aa8825da0799",
"bin": [
"paintball2.exe"
],
"shortcuts": [
[
"paintball2.exe",
"Paintball 2"
]
],
"persist": [
"pball\\configs"
]
}
{
"homepage": "http://digitalpaint.org/",
"description": "Fast-paced paintball first-person shooter based on the Quake 2 engine",
"version": "build041",
"license": "Custom",
"url": "https://downloads.sourceforge.net/project/paintball2/Paintball%202/Paintball%202.0%20Alpha%20build041/paintball2_build041_full.exe#/dl.7z",
"hash": "c59b20273d16d1f7a277ff1f7ae15ff128a0b1a04cc13319f6c7aa8825da0799",
"bin": [
"paintball2.exe"
],
"shortcuts": [
[
"paintball2.exe",
"Paintball 2"
]
],
"persist": [
"pball\\configs"
]
}

View File

@ -1,56 +1,56 @@
{
"homepage": "http://prboom-plus.sourceforge.net/",
"description": "Enhanced, highly-compatible source port for Doom",
"version": "2.5.1.4",
"license": "GPL-2.0-or-later",
"url": "https://downloads.sourceforge.net/project/prboom-plus/prboom-plus/2.5.1.4/prboom-plus-2.5.1.4-win32.zip",
"hash": "310e04a94aaf4f0ed9109294a9b336a9ca3a668771e8a9bb78c2f40258dcaad1",
"extract_dir": "prboom-plus-2.5.1.4",
"shortcuts": [
[
"glboom-plus.exe",
"PrBoom+ (Doom 2)",
"-iwad doom2.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (The Ultimate Doom)",
"-iwad doom.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (The Plutonia Experiment)",
"-iwad plutonia.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (TNT Evilution)",
"-iwad tnt.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (Freedoom Phase 1)",
"-iwad freedoom1.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (Freedoom Phase 2)",
"-iwad freedoom2.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (FreeDM)",
"-iwad freedm.wad"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "http://prboom-plus.sourceforge.net/",
"description": "Enhanced, highly-compatible source port for Doom",
"version": "2.5.1.4",
"license": "GPL-2.0-or-later",
"url": "https://downloads.sourceforge.net/project/prboom-plus/prboom-plus/2.5.1.4/prboom-plus-2.5.1.4-win32.zip",
"hash": "310e04a94aaf4f0ed9109294a9b336a9ca3a668771e8a9bb78c2f40258dcaad1",
"extract_dir": "prboom-plus-2.5.1.4",
"shortcuts": [
[
"glboom-plus.exe",
"PrBoom+ (Doom 2)",
"-iwad doom2.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (The Ultimate Doom)",
"-iwad doom.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (The Plutonia Experiment)",
"-iwad plutonia.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (TNT Evilution)",
"-iwad tnt.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (Freedoom Phase 1)",
"-iwad freedoom1.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (Freedoom Phase 2)",
"-iwad freedoom2.wad"
],
[
"glboom-plus.exe",
"PrBoom+ (FreeDM)",
"-iwad freedm.wad"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,21 +1,21 @@
{
"homepage": "http://pychess.org/",
"description": "A chess client for Linux and Windows",
"license": "GPL-3.0",
"version": "0.99.4",
"url": "https://github.com/pychess/pychess/releases/download/0.99.4/pychess-0.99.4-win32.msi",
"hash": "aa4464cceb06686d657d25d7de2e14f2de84b6f3d7511c1bcd45dbcfa570e55d",
"bin": "pychess.exe",
"shortcuts": [
[
"pychess.exe",
"PyChess"
]
],
"checkver": {
"github": "https://github.com/pychess/pychess/"
},
"autoupdate": {
"url": "https://github.com/pychess/pychess/releases/download/$version/pychess-$version-win32.msi"
}
}
{
"homepage": "http://pychess.org/",
"description": "A chess client for Linux and Windows",
"license": "GPL-3.0",
"version": "0.99.4",
"url": "https://github.com/pychess/pychess/releases/download/0.99.4/pychess-0.99.4-win32.msi",
"hash": "aa4464cceb06686d657d25d7de2e14f2de84b6f3d7511c1bcd45dbcfa570e55d",
"bin": "pychess.exe",
"shortcuts": [
[
"pychess.exe",
"PyChess"
]
],
"checkver": {
"github": "https://github.com/pychess/pychess/"
},
"autoupdate": {
"url": "https://github.com/pychess/pychess/releases/download/$version/pychess-$version-win32.msi"
}
}

View File

@ -1,27 +1,27 @@
{
"homepage": "http://www.skuller.net/q2pro/",
"description": "Quake 2 source port focused on multiplayer gameplay",
"version": "nightly",
"license": "GPL-2.0-or-later",
"url": "http://www.skuller.net/q2pro/nightly/q2pro-client_win32_x86.zip",
"bin": [
[
"q2pro.exe",
"q2pro"
]
],
"shortcuts": [
[
"q2pro.exe",
"Q2PRO"
]
],
"persist": [
"baseq2"
],
"notes": [
"Place game data files (such as pak0.pak-pak2.pak) in:",
"",
"\t$persist_dir\\baseq2\\"
]
}
{
"homepage": "http://www.skuller.net/q2pro/",
"description": "Quake 2 source port focused on multiplayer gameplay",
"version": "nightly",
"license": "GPL-2.0-or-later",
"url": "http://www.skuller.net/q2pro/nightly/q2pro-client_win32_x86.zip",
"bin": [
[
"q2pro.exe",
"q2pro"
]
],
"shortcuts": [
[
"q2pro.exe",
"Q2PRO"
]
],
"persist": [
"baseq2"
],
"notes": [
"Place game data files (such as pak0.pak-pak2.pak) in:",
"",
"\t$persist_dir\\baseq2\\"
]
}

View File

@ -1,61 +1,61 @@
{
"homepage": "http://quakespasm.sourceforge.net/",
"description": "Conservative Quake source port for singleplayer gameplay",
"version": "0.93.1",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/quakespasm/Windows/quakespasm-0.93.1_win64.zip",
"hash": "348035345bca0655e7bba9e5af4fc1fd90c631b1ec2d129d9edb8c7b3a89d3a1",
"extract_dir": "quakespasm-0.93.1_win64"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/quakespasm/Windows/quakespasm-0.93.1_windows.zip",
"hash": "c158ce9967d5d67b220fa510ce32f34402e705afbf5fdca7599772a3fa964bee",
"extract_dir": "quakespasm-0.93.1_windows"
}
},
"shortcuts": [
[
"quakespasm.exe",
"QuakeSpasm",
"-game id1"
],
[
"quakespasm.exe",
"QuakeSpasm (Scourge of Armagon)",
"-game hipnotic"
],
[
"quakespasm.exe",
"QuakeSpasm (Dissolution of Eternity)",
"-game rogue"
],
[
"quakespasm.exe",
"QuakeSpasm (Abyss of Pandemonium)",
"-game abyss"
]
],
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}
{
"homepage": "http://quakespasm.sourceforge.net/",
"description": "Conservative Quake source port for singleplayer gameplay",
"version": "0.93.1",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/quakespasm/Windows/quakespasm-0.93.1_win64.zip",
"hash": "348035345bca0655e7bba9e5af4fc1fd90c631b1ec2d129d9edb8c7b3a89d3a1",
"extract_dir": "quakespasm-0.93.1_win64"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/quakespasm/Windows/quakespasm-0.93.1_windows.zip",
"hash": "c158ce9967d5d67b220fa510ce32f34402e705afbf5fdca7599772a3fa964bee",
"extract_dir": "quakespasm-0.93.1_windows"
}
},
"shortcuts": [
[
"quakespasm.exe",
"QuakeSpasm",
"-game id1"
],
[
"quakespasm.exe",
"QuakeSpasm (Scourge of Armagon)",
"-game hipnotic"
],
[
"quakespasm.exe",
"QuakeSpasm (Dissolution of Eternity)",
"-game rogue"
],
[
"quakespasm.exe",
"QuakeSpasm (Abyss of Pandemonium)",
"-game abyss"
]
],
"persist": [
"id1",
"hipnotic",
"rogue",
"abyss"
],
"notes": [
"Place game data files (such as pak0.pak and pak1.pak) in:",
"",
"- Quake:",
"\t$persist_dir\\id1\\",
"",
"- Quake Mission Pack 1 - Scourge of Armagon:",
"\t$persist_dir\\hipnotic\\",
"",
"- Quake Mission Pack 2 - Dissolution of Eternity:",
"\t$persist_dir\\rogue\\",
"",
"- Quake Mission Pack 3 - Abyss of Pandemonium:",
"\t$persist_dir\\abyss\\"
]
}

View File

@ -1,34 +1,34 @@
{
"homepage": "https://zdoom.org/",
"description": "Experimental source port for Doom, Heretic, Hexen and more",
"version": "2.1.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://zdoom.org/files/qzdoom/bin/qzdoom-bin-2-1-0-x64.zip",
"hash": "d3ffd98af5ce59dab6437bd0787e5e31fd0a013346a21803b1ebb6bea8cbcd5a"
},
"32bit": {
"url": "https://zdoom.org/files/qzdoom/bin/qzdoom-bin-2-1-0.zip",
"hash": "5c32ceecb2bc19c6431784b37ca4bb793e34f385a28cf7bcc5da178ebec05e2b"
}
},
"bin": [
"qzdoom.exe"
],
"shortcuts": [
[
"qzdoom.exe",
"QZDoom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "https://zdoom.org/",
"description": "Experimental source port for Doom, Heretic, Hexen and more",
"version": "2.1.0",
"license": "GPL-3.0-or-later",
"architecture": {
"64bit": {
"url": "https://zdoom.org/files/qzdoom/bin/qzdoom-bin-2-1-0-x64.zip",
"hash": "d3ffd98af5ce59dab6437bd0787e5e31fd0a013346a21803b1ebb6bea8cbcd5a"
},
"32bit": {
"url": "https://zdoom.org/files/qzdoom/bin/qzdoom-bin-2-1-0.zip",
"hash": "5c32ceecb2bc19c6431784b37ca4bb793e34f385a28cf7bcc5da178ebec05e2b"
}
},
"bin": [
"qzdoom.exe"
],
"shortcuts": [
[
"qzdoom.exe",
"QZDoom"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,24 +1,24 @@
{
"homepage": "https://github.com/RobertBeckebans/RBDOOM-3-BFG",
"description": "Source port for Doom 3: BFG Edition",
"version": "1.1.0-preview3",
"license": "https://github.com/RobertBeckebans/RBDOOM-3-BFG/blob/master/COPYING.txt",
"url": "https://github.com/RobertBeckebans/RBDOOM-3-BFG/releases/download/1.1.0-preview3/RBDOOM-3-BFG-1.1.0-preview3-win32-20160411-git-7728dc3.7z",
"hash": "e4678101d903090a3aa26d7d743b9ae70e00ef3989a578679f48256916d79f8e",
"shortcuts": [
[
"RBDoom3BFG.exe",
"RBDOOM-3-BFG"
]
],
"persist": "base",
"notes": [
"Place game data in:",
"",
" $persist_dir\\base",
"",
"In case of errors about a missing XAudio library, set up DirectX using the installer below:",
"",
"https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe"
]
}
{
"homepage": "https://github.com/RobertBeckebans/RBDOOM-3-BFG",
"description": "Source port for Doom 3: BFG Edition",
"version": "1.1.0-preview3",
"license": "https://github.com/RobertBeckebans/RBDOOM-3-BFG/blob/master/COPYING.txt",
"url": "https://github.com/RobertBeckebans/RBDOOM-3-BFG/releases/download/1.1.0-preview3/RBDOOM-3-BFG-1.1.0-preview3-win32-20160411-git-7728dc3.7z",
"hash": "e4678101d903090a3aa26d7d743b9ae70e00ef3989a578679f48256916d79f8e",
"shortcuts": [
[
"RBDoom3BFG.exe",
"RBDOOM-3-BFG"
]
],
"persist": "base",
"notes": [
"Place game data in:",
"",
" $persist_dir\\base",
"",
"In case of errors about a missing XAudio library, set up DirectX using the installer below:",
"",
"https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe"
]
}

View File

@ -1,20 +1,20 @@
{
"homepage": "https://redeclipse.net/",
"description": "Free arena shooter with parkour elements and a cooperative map editor",
"version": "1.6.0",
"license": "Zlib",
"url": "https://github.com/red-eclipse/base/releases/download/v1.6.0/redeclipse_1.6.0_win.zip",
"hash": "162deb41a141edfc331eaaa45a94c64aba70fa7f0f87c78c501dcd2d008f0a4f",
"extract_dir": "redeclipse-1.6.0-win",
"bin": [
"redeclipse.bat"
],
"shortcuts": [
[
"redeclipse.bat",
"Red Eclipse",
"",
"src/redeclipse.ico"
]
]
}
{
"homepage": "https://redeclipse.net/",
"description": "Free arena shooter with parkour elements and a cooperative map editor",
"version": "1.6.0",
"license": "Zlib",
"url": "https://github.com/red-eclipse/base/releases/download/v1.6.0/redeclipse_1.6.0_win.zip",
"hash": "162deb41a141edfc331eaaa45a94c64aba70fa7f0f87c78c501dcd2d008f0a4f",
"extract_dir": "redeclipse-1.6.0-win",
"bin": [
"redeclipse.bat"
],
"shortcuts": [
[
"redeclipse.bat",
"Red Eclipse",
"",
"src/redeclipse.ico"
]
]
}

View File

@ -1,73 +1,73 @@
{
"homepage": "https://www.rtcwcoop.com/",
"description": "Source port for playing Return to Castle Wolfenstein cooperatively",
"version": "1.0.2",
"license": "https://github.com/rtcwcoop/rtcwcoop/blob/master/COPYING.txt",
"architecture": {
"64bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/1.0.2/rtcwcoop-1.0.2-win-x64.zip",
"hash": "3eb112b1198cf6f1b820dc29c90c6bd5e4acc91b59011934de4c2a7d66b85982",
"extract_dir": "rtcwcoop-1.0.2-win-x64",
"bin": [
[
"RTCWCoop.x64.exe",
"rtcwcoop"
],
[
"RTCWCoopDED.x64.exe",
"rtcwcoopded"
]
],
"shortcuts": [
[
"RTCWCoop.x64.exe",
"Return to Castle Wolfenstein - Coop"
]
]
},
"32bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/1.0.2/rtcwcoop-1.0.2-win-x86.zip",
"hash": "7946046c9de3189d9f08d7a9d345b3a2b9b5f2fb3b58d7e56f0709fb18112119",
"extract_dir": "rtcwcoop-1.0.2-win-x86",
"bin": [
[
"RTCWCoop.x86.exe",
"rtcwcoop"
],
[
"RTCWCoopDED.x86.exe",
"rtcwcoopded"
]
],
"shortcuts": [
[
"RTCWCoop.x86.exe",
"Return to Castle Wolfenstein - Coop"
]
]
}
},
"persist": [
"Main"
],
"checkver": {
"github": "https://github.com/rtcwcoop/rtcwcoop"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/$version/rtcwcoop-$version-win-x64.zip",
"extract_dir": "rtcwcoop-$version-win-x64"
},
"32bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/$version/rtcwcoop-$version-win-x86.zip",
"extract_dir": "rtcwcoop-$version-win-x86"
}
}
},
"notes": [
"Place game data files (such as pak0.pk3, sp_pak1.pk3-sp_pak4.pk3, mp_*.pk3) in:",
"",
"\t$persist_dir\\Main\\"
]
}
{
"homepage": "https://www.rtcwcoop.com/",
"description": "Source port for playing Return to Castle Wolfenstein cooperatively",
"version": "1.0.2",
"license": "https://github.com/rtcwcoop/rtcwcoop/blob/master/COPYING.txt",
"architecture": {
"64bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/1.0.2/rtcwcoop-1.0.2-win-x64.zip",
"hash": "3eb112b1198cf6f1b820dc29c90c6bd5e4acc91b59011934de4c2a7d66b85982",
"extract_dir": "rtcwcoop-1.0.2-win-x64",
"bin": [
[
"RTCWCoop.x64.exe",
"rtcwcoop"
],
[
"RTCWCoopDED.x64.exe",
"rtcwcoopded"
]
],
"shortcuts": [
[
"RTCWCoop.x64.exe",
"Return to Castle Wolfenstein - Coop"
]
]
},
"32bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/1.0.2/rtcwcoop-1.0.2-win-x86.zip",
"hash": "7946046c9de3189d9f08d7a9d345b3a2b9b5f2fb3b58d7e56f0709fb18112119",
"extract_dir": "rtcwcoop-1.0.2-win-x86",
"bin": [
[
"RTCWCoop.x86.exe",
"rtcwcoop"
],
[
"RTCWCoopDED.x86.exe",
"rtcwcoopded"
]
],
"shortcuts": [
[
"RTCWCoop.x86.exe",
"Return to Castle Wolfenstein - Coop"
]
]
}
},
"persist": [
"Main"
],
"checkver": {
"github": "https://github.com/rtcwcoop/rtcwcoop"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/$version/rtcwcoop-$version-win-x64.zip",
"extract_dir": "rtcwcoop-$version-win-x64"
},
"32bit": {
"url": "https://github.com/rtcwcoop/rtcwcoop/releases/download/$version/rtcwcoop-$version-win-x86.zip",
"extract_dir": "rtcwcoop-$version-win-x86"
}
}
},
"notes": [
"Place game data files (such as pak0.pk3, sp_pak1.pk3-sp_pak4.pk3, mp_*.pk3) in:",
"",
"\t$persist_dir\\Main\\"
]
}

View File

@ -1,16 +1,16 @@
{
"homepage": "http://sauerbraten.org/",
"description": "First-person shooter featuring a real-time cooperative map editor",
"version": "collect-edition",
"license": "http://sauerbraten.org/README.html#license",
"url": "https://downloads.sourceforge.net/project/sauerbraten/sauerbraten/2013_01_04/sauerbraten_2013_04_04_collect_edition_windows.exe#/dl.7z",
"hash": "949a63eed9e63b5c9ec36d0166b45661dfba51e0a71ba21fe1dcc441e832db74",
"shortcuts": [
[
"sauerbraten.bat",
"Sauerbraten",
"",
"docs/favicon.ico"
]
]
}
{
"homepage": "http://sauerbraten.org/",
"description": "First-person shooter featuring a real-time cooperative map editor",
"version": "collect-edition",
"license": "http://sauerbraten.org/README.html#license",
"url": "https://downloads.sourceforge.net/project/sauerbraten/sauerbraten/2013_01_04/sauerbraten_2013_04_04_collect_edition_windows.exe#/dl.7z",
"hash": "949a63eed9e63b5c9ec36d0166b45661dfba51e0a71ba21fe1dcc441e832db74",
"shortcuts": [
[
"sauerbraten.bat",
"Sauerbraten",
"",
"docs/favicon.ico"
]
]
}

View File

@ -1,20 +1,20 @@
{
"homepage": "https://www.simutrans.com/",
"description": "Transport management simulation game",
"version": "120.4.1",
"license": "Artistic-1.0",
"url": "https://downloads.sourceforge.net/project/simutrans/simutrans/120-4-1/simuwin-sdl-120-4-1.zip",
"hash": "59fac9a297b9cc3b9dec38328081f5324600052c88d990d5044780261fb43316",
"extract_dir": "simutrans",
"bin": "simutrans.exe",
"shortcuts": [
[
"simutrans.exe",
"Simutrans"
],
[
"download-paksets.exe",
"Download Simutrans Paksets"
]
]
}
{
"homepage": "https://www.simutrans.com/",
"description": "Transport management simulation game",
"version": "120.4.1",
"license": "Artistic-1.0",
"url": "https://downloads.sourceforge.net/project/simutrans/simutrans/120-4-1/simuwin-sdl-120-4-1.zip",
"hash": "59fac9a297b9cc3b9dec38328081f5324600052c88d990d5044780261fb43316",
"extract_dir": "simutrans",
"bin": "simutrans.exe",
"shortcuts": [
[
"simutrans.exe",
"Simutrans"
],
[
"download-paksets.exe",
"Download Simutrans Paksets"
]
]
}

View File

@ -1,23 +1,23 @@
{
"homepage": "http://slade.mancubus.net/",
"description": "Level and resource editor for Doom engine games",
"version": "3.1.4",
"license": "GPL-2.0-or-later",
"url": "http://slade.mancubus.net/files/slade_3.1.4.7z",
"hash": "effa3dd50238e8983ef843b8e4bf391ac12e991a104765ae4cc184bdeebf66ba",
"bin": [
"SLADE.exe"
],
"shortcuts": [
[
"SLADE.exe",
"SLADE"
]
],
"checkver": {
"github": "https://github.com/sirjuddington/SLADE"
},
"depends": [
"extras/vcredist2015"
]
}
{
"homepage": "http://slade.mancubus.net/",
"description": "Level and resource editor for Doom engine games",
"version": "3.1.4",
"license": "GPL-2.0-or-later",
"url": "http://slade.mancubus.net/files/slade_3.1.4.7z",
"hash": "effa3dd50238e8983ef843b8e4bf391ac12e991a104765ae4cc184bdeebf66ba",
"bin": [
"SLADE.exe"
],
"shortcuts": [
[
"SLADE.exe",
"SLADE"
]
],
"checkver": {
"github": "https://github.com/sirjuddington/SLADE"
},
"depends": [
"extras/vcredist2015"
]
}

View File

@ -1,86 +1,86 @@
{
"homepage": "https://clover.moe/spearmint/",
"description": "Modern source port for Quake III Arena, Quake III: Team Arena and OpenArena",
"version": "0.6",
"license": "https://github.com/zturtleman/spearmint/blob/master/COPYING.txt",
"url": "https://github.com/zturtleman/spearmint/releases/download/release-0.6/spearmint-0.6-windows.zip",
"hash": "154b2c15c32fca6cc8f19989d0d9aec2e6e1d30aed9563a09f43fed672186139",
"extract_dir": "spearmint-0.6-windows",
"architecture": {
"64bit": {
"bin": [
[
"spearmint_x86_64.exe",
"spearmint"
],
[
"spearmint-server_x86_64.exe",
"spearmint-server"
]
],
"shortcuts": [
[
"spearmint_x86_64.exe",
"Spearmint Quake 3",
"+set fs_game baseq3"
],
[
"spearmint_x86_64.exe",
"Spearmint Quake 3 - Team Arena",
"+set fs_game missionpack"
],
[
"spearmint_x86_64.exe",
"Spearmint OpenArena",
"+set fs_game baseoa"
]
]
},
"32bit": {
"bin": [
[
"spearmint_x86.exe",
"spearmint"
],
[
"spearmint-server_x86.exe",
"spearmint-server"
]
],
"shortcuts": [
[
"spearmint_x86.exe",
"Spearmint Quake 3",
"+set fs_game baseq3"
],
[
"spearmint_x86.exe",
"Spearmint Quake 3 - Team Arena",
"+set fs_game missionpack"
],
[
"spearmint_x86.exe",
"Spearmint OpenArena",
"+set fs_game baseoa"
]
]
}
},
"persist": [
"settings\\baseq3",
"settings\\missionpack",
"settings\\baseoa"
],
"notes": [
"Place game data files (such as pak0.pk3-pak8.pk3) in:",
"",
"- Quake 3 Arena:",
"\t$persist_dir\\baseq3\\",
"",
"- Quake 3 - Team Arena:",
"\t$persist_dir\\missionpack\\",
"",
"- OpenArena:",
"\t$persist_dir\\baseoa\\"
]
}
{
"homepage": "https://clover.moe/spearmint/",
"description": "Modern source port for Quake III Arena, Quake III: Team Arena and OpenArena",
"version": "0.6",
"license": "https://github.com/zturtleman/spearmint/blob/master/COPYING.txt",
"url": "https://github.com/zturtleman/spearmint/releases/download/release-0.6/spearmint-0.6-windows.zip",
"hash": "154b2c15c32fca6cc8f19989d0d9aec2e6e1d30aed9563a09f43fed672186139",
"extract_dir": "spearmint-0.6-windows",
"architecture": {
"64bit": {
"bin": [
[
"spearmint_x86_64.exe",
"spearmint"
],
[
"spearmint-server_x86_64.exe",
"spearmint-server"
]
],
"shortcuts": [
[
"spearmint_x86_64.exe",
"Spearmint Quake 3",
"+set fs_game baseq3"
],
[
"spearmint_x86_64.exe",
"Spearmint Quake 3 - Team Arena",
"+set fs_game missionpack"
],
[
"spearmint_x86_64.exe",
"Spearmint OpenArena",
"+set fs_game baseoa"
]
]
},
"32bit": {
"bin": [
[
"spearmint_x86.exe",
"spearmint"
],
[
"spearmint-server_x86.exe",
"spearmint-server"
]
],
"shortcuts": [
[
"spearmint_x86.exe",
"Spearmint Quake 3",
"+set fs_game baseq3"
],
[
"spearmint_x86.exe",
"Spearmint Quake 3 - Team Arena",
"+set fs_game missionpack"
],
[
"spearmint_x86.exe",
"Spearmint OpenArena",
"+set fs_game baseoa"
]
]
}
},
"persist": [
"settings\\baseq3",
"settings\\missionpack",
"settings\\baseoa"
],
"notes": [
"Place game data files (such as pak0.pk3-pak8.pk3) in:",
"",
"- Quake 3 Arena:",
"\t$persist_dir\\baseq3\\",
"",
"- Quake 3 - Team Arena:",
"\t$persist_dir\\missionpack\\",
"",
"- OpenArena:",
"\t$persist_dir\\baseoa\\"
]
}

View File

@ -1,30 +1,30 @@
{
"homepage": "http://www.speed-dreams.org/",
"description": "3D simulation racing game",
"version": "2.2.2",
"license": "GPL-2.0-or-later",
"url": [
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-base-2.2.2-r6553-win32-setup.exe#/dl1.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-hq-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl2.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-more-hq-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl3.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-wip-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl4.7z"
],
"hash": [
"b5e398c5cba6530747dae6fa7e10a7747e807f1f4f040ed21f257798b7a22510",
"50afe14c5b97302e974b4f8a9ef52313bb23954d0a33ef850f98f9969e8086da",
"60e893ca636979163f3cad9ae78cdc42a7fa1bbe81e635492788fd7093cae2d9",
"eabe77bb09de90bac8de1e50490f7b4aae7e9959adb112c8d9e707a7880a320f"
],
"bin": [
[
"bin\\speed-dreams-2.exe",
"speed-dreams"
]
],
"shortcuts": [
[
"bin\\speed-dreams-2.exe",
"Speed Dreams"
]
]
}
{
"homepage": "http://www.speed-dreams.org/",
"description": "3D simulation racing game",
"version": "2.2.2",
"license": "GPL-2.0-or-later",
"url": [
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-base-2.2.2-r6553-win32-setup.exe#/dl1.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-hq-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl2.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-more-hq-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl3.7z",
"https://downloads.sourceforge.net/project/speed-dreams/2.2.2/speed-dreams-wip-cars-and-tracks-2.2.2-r6553-win32-setup.exe#/dl4.7z"
],
"hash": [
"b5e398c5cba6530747dae6fa7e10a7747e807f1f4f040ed21f257798b7a22510",
"50afe14c5b97302e974b4f8a9ef52313bb23954d0a33ef850f98f9969e8086da",
"60e893ca636979163f3cad9ae78cdc42a7fa1bbe81e635492788fd7093cae2d9",
"eabe77bb09de90bac8de1e50490f7b4aae7e9959adb112c8d9e707a7880a320f"
],
"bin": [
[
"bin\\speed-dreams-2.exe",
"speed-dreams"
]
],
"shortcuts": [
[
"bin\\speed-dreams-2.exe",
"Speed Dreams"
]
]
}

View File

@ -1,17 +1,17 @@
{
"homepage": "https://springlobby.info/",
"description": "Lobby client for Spring RTS-based games",
"version": "0.267",
"license": "GPL-2.0-or-later",
"url": "http://springlobby.info/windows/springlobby-0.267-win32.zip",
"hash": "3d4396ac7e7fa0b678f614a5b9ce170e21a31f92d4a934b2d93ffb73d7b3572e",
"bin": [
"springlobby.exe"
],
"shortcuts": [
[
"springlobby.exe",
"SpringLobby"
]
]
}
{
"homepage": "https://springlobby.info/",
"description": "Lobby client for Spring RTS-based games",
"version": "0.267",
"license": "GPL-2.0-or-later",
"url": "http://springlobby.info/windows/springlobby-0.267-win32.zip",
"hash": "3d4396ac7e7fa0b678f614a5b9ce170e21a31f92d4a934b2d93ffb73d7b3572e",
"bin": [
"springlobby.exe"
],
"shortcuts": [
[
"springlobby.exe",
"SpringLobby"
]
]
}

View File

@ -1,27 +1,27 @@
{
"homepage": "https://stuntrally.tuxfamily.org/",
"description": "3D semi-realistic rally racing game featuring a track editor",
"version": "2.6",
"license": "GPL-3.0-or-later",
"url": "https://downloads.sourceforge.net/project/stuntrally/2.6/StuntRally-2.6-installer.exe#/dl.7z",
"hash": "262bf0b87be2a5a2cf5f9f5b176b3afbab4e0b67bfb2eff6c31a0dc02468f5fa",
"bin": [
"StuntRally.exe",
"SR-Editor.exe"
],
"shortcuts": [
[
"StuntRally.exe",
"Stunt Rally"
],
[
"SR-Editor.exe",
"Stunt Rally Track Editor"
]
],
"notes": [
"In case of errors about missing Direct3D RenderSystem, set up DirectX using the installer below:",
"",
"https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe"
]
}
{
"homepage": "https://stuntrally.tuxfamily.org/",
"description": "3D semi-realistic rally racing game featuring a track editor",
"version": "2.6",
"license": "GPL-3.0-or-later",
"url": "https://downloads.sourceforge.net/project/stuntrally/2.6/StuntRally-2.6-installer.exe#/dl.7z",
"hash": "262bf0b87be2a5a2cf5f9f5b176b3afbab4e0b67bfb2eff6c31a0dc02468f5fa",
"bin": [
"StuntRally.exe",
"SR-Editor.exe"
],
"shortcuts": [
[
"StuntRally.exe",
"Stunt Rally"
],
[
"SR-Editor.exe",
"Stunt Rally Track Editor"
]
],
"notes": [
"In case of errors about missing Direct3D RenderSystem, set up DirectX using the installer below:",
"",
"https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe"
]
}

View File

@ -1,42 +1,42 @@
{
"homepage": "https://www.supertux.org/",
"description": "2D platformer inspired by the Super Mario Bros series",
"version": "0.6.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v0.6.0/SuperTux-v0.6.0-win64.msi",
"hash": "4614c3f62a39b7955853f3f1549c16d4e50518d304036f3da07010d52ba53397"
},
"32bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v0.6.0/SuperTux-v0.6.0-win32.msi",
"hash": "d81ac0ad043a17019d9c71fcaec4839620efd445feedc4b35f3379f8cb3c2069"
}
},
"extract_dir": "SuperTux",
"bin": [
[
"bin\\supertux2.exe",
"supertux"
]
],
"shortcuts": [
[
"bin\\supertux2.exe",
"SuperTux"
]
],
"checkver": {
"github": "https://github.com/SuperTux/supertux"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-win64.msi"
},
"32bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-win32.msi"
}
}
}
}
{
"homepage": "https://www.supertux.org/",
"description": "2D platformer inspired by the Super Mario Bros series",
"version": "0.6.0",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v0.6.0/SuperTux-v0.6.0-win64.msi",
"hash": "4614c3f62a39b7955853f3f1549c16d4e50518d304036f3da07010d52ba53397"
},
"32bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v0.6.0/SuperTux-v0.6.0-win32.msi",
"hash": "d81ac0ad043a17019d9c71fcaec4839620efd445feedc4b35f3379f8cb3c2069"
}
},
"extract_dir": "SuperTux",
"bin": [
[
"bin\\supertux2.exe",
"supertux"
]
],
"shortcuts": [
[
"bin\\supertux2.exe",
"SuperTux"
]
],
"checkver": {
"github": "https://github.com/SuperTux/supertux"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-win64.msi"
},
"32bit": {
"url": "https://github.com/SuperTux/supertux/releases/download/v$version/SuperTux-v$version-win32.msi"
}
}
}
}

View File

@ -1,23 +1,23 @@
{
"homepage": "https://supertuxkart.net/Main_Page",
"description": "Arcade 3D racer with a variety of characters, tracks and modes",
"version": "0.9.3",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/supertuxkart/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win64.exe#/dl.7z",
"hash": "73978600ee03042eaaecae126f1ecd2239588340f0ce4325564364b4342e9dcf"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/supertuxkart/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win32.exe#/dl.7z",
"hash": "e560b3e62d0b4e8fab7639be72f058383c80adcd8ed0a11e9516f0c888876f6e"
}
},
"bin": "supertuxkart.exe",
"shortcuts": [
[
"supertuxkart.exe",
"SuperTuxKart"
]
]
}
{
"homepage": "https://supertuxkart.net/Main_Page",
"description": "Arcade 3D racer with a variety of characters, tracks and modes",
"version": "0.9.3",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/supertuxkart/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win64.exe#/dl.7z",
"hash": "73978600ee03042eaaecae126f1ecd2239588340f0ce4325564364b4342e9dcf"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/supertuxkart/SuperTuxKart/0.9.3/supertuxkart-0.9.3-win32.exe#/dl.7z",
"hash": "e560b3e62d0b4e8fab7639be72f058383c80adcd8ed0a11e9516f0c888876f6e"
}
},
"bin": "supertuxkart.exe",
"shortcuts": [
[
"supertuxkart.exe",
"SuperTuxKart"
]
]
}

View File

@ -1,34 +1,34 @@
{
"description": "Free and open-source Touhou Project clone and fangame",
"homepage": "https://github.com/taisei-project/taisei",
"version": "1.2",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v1.2/Taisei-1.2-windows-x86_64.zip",
"hash": "fb44dda2421a26ff4f7ad11840b28499d596594120fd5b4ff65ea8eed0a8b6c3"
},
"32bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v1.2/Taisei-1.2-windows-x86.zip",
"hash": "72aa580f6eddbcbb4256e8b9443ea2c7c5c7e7db904267067b860aff678e0b74"
}
},
"bin": "taisei.exe",
"shortcuts": [
[
"taisei.exe",
"Taisei"
]
],
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v$version/Taisei-$version-windows-x86_64.zip"
},
"32bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v$version/Taisei-$version-windows-x86.zip"
}
}
}
}
{
"description": "Free and open-source Touhou Project clone and fangame",
"homepage": "https://github.com/taisei-project/taisei",
"version": "1.2",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v1.2/Taisei-1.2-windows-x86_64.zip",
"hash": "fb44dda2421a26ff4f7ad11840b28499d596594120fd5b4ff65ea8eed0a8b6c3"
},
"32bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v1.2/Taisei-1.2-windows-x86.zip",
"hash": "72aa580f6eddbcbb4256e8b9443ea2c7c5c7e7db904267067b860aff678e0b74"
}
},
"bin": "taisei.exe",
"shortcuts": [
[
"taisei.exe",
"Taisei"
]
],
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v$version/Taisei-$version-windows-x86_64.zip"
},
"32bit": {
"url": "https://github.com/taisei-project/taisei/releases/download/v$version/Taisei-$version-windows-x86.zip"
}
}
}
}

View File

@ -1,43 +1,43 @@
{
"homepage": "https://teeworlds.com/",
"description": "2D retro multiplayer shooter",
"version": "0.7.2",
"license": "Zlib",
"architecture": {
"64bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/0.7.2/teeworlds-0.7.2-win64.zip",
"hash": "bf375e5512b34e99c07e7ba737eff5dce23ff5f6012a6d1deffe425ae11938cd",
"extract_dir": "teeworlds-0.7.2-win64"
},
"32bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/0.7.2/teeworlds-0.7.2-win32.zip",
"hash": "fd70ed43e325e6218ba5ecc90b1f1a6fdb1ded893d65440528b5374bea3864e8",
"extract_dir": "teeworlds-0.7.2-win32"
}
},
"bin": [
"teeworlds.exe",
"teeworlds_srv.exe"
],
"shortcuts": [
[
"teeworlds.exe",
"Teeworlds"
]
],
"checkver": {
"github": "https://github.com/teeworlds/teeworlds"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/$version/teeworlds-$version-win64.zip",
"extract_dir": "teeworlds-$version-win64"
},
"32bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/$version/teeworlds-$version-win32.zip",
"extract_dir": "teeworlds-$version-win32"
}
}
}
}
{
"homepage": "https://teeworlds.com/",
"description": "2D retro multiplayer shooter",
"version": "0.7.2",
"license": "Zlib",
"architecture": {
"64bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/0.7.2/teeworlds-0.7.2-win64.zip",
"hash": "bf375e5512b34e99c07e7ba737eff5dce23ff5f6012a6d1deffe425ae11938cd",
"extract_dir": "teeworlds-0.7.2-win64"
},
"32bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/0.7.2/teeworlds-0.7.2-win32.zip",
"hash": "fd70ed43e325e6218ba5ecc90b1f1a6fdb1ded893d65440528b5374bea3864e8",
"extract_dir": "teeworlds-0.7.2-win32"
}
},
"bin": [
"teeworlds.exe",
"teeworlds_srv.exe"
],
"shortcuts": [
[
"teeworlds.exe",
"Teeworlds"
]
],
"checkver": {
"github": "https://github.com/teeworlds/teeworlds"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/$version/teeworlds-$version-win64.zip",
"extract_dir": "teeworlds-$version-win64"
},
"32bit": {
"url": "https://github.com/teeworlds/teeworlds/releases/download/$version/teeworlds-$version-win32.zip",
"extract_dir": "teeworlds-$version-win32"
}
}
}
}

View File

@ -1,15 +1,15 @@
{
"homepage": "http://tesseract.gg/",
"description": "First-person shooter featuring real-time lighting and a cooperative map editor",
"version": "nightly",
"license": "https://websvn.tuxfamily.org/filedetails.php?repname=tesseract%2Fmain&path=%2Fsrc%2Freadme_tesseract.txt",
"url": "https://tesseract.pupskuchen.net/latest/tesseract-nightly.zip",
"shortcuts": [
[
"tesseract.bat",
"Tesseract",
"",
"src/vcpp/tesseract.ico"
]
]
}
{
"homepage": "http://tesseract.gg/",
"description": "First-person shooter featuring real-time lighting and a cooperative map editor",
"version": "nightly",
"license": "https://websvn.tuxfamily.org/filedetails.php?repname=tesseract%2Fmain&path=%2Fsrc%2Freadme_tesseract.txt",
"url": "https://tesseract.pupskuchen.net/latest/tesseract-nightly.zip",
"shortcuts": [
[
"tesseract.bat",
"Tesseract",
"",
"src/vcpp/tesseract.ico"
]
]
}

View File

@ -1,22 +1,22 @@
{
"homepage": "http://kristianduske.com/trenchbroom/",
"description": "Level editor for Quake-based games",
"version": "2019.3",
"license": "GPL-3.0-or-later",
"url": "https://github.com/kduske/TrenchBroom/releases/download/v2019.3/TrenchBroom-Win32-v2019.3-Release.7z",
"hash": "d71167d3f504ebb2ad77d633e24cd1a525ef502753ef1eac472bd83e5564d56d",
"bin": "TrenchBroom.exe",
"shortcuts": [
[
"TrenchBroom.exe",
"TrenchBroom"
]
],
"checkver": {
"github": "https://github.com/kduske/TrenchBroom"
},
"autoupdate": {
"url": "https://github.com/kduske/TrenchBroom/releases/download/v$version/TrenchBroom-Win32-v$version-Release.7z"
},
"depends": "extras/vcredist2015"
}
{
"homepage": "http://kristianduske.com/trenchbroom/",
"description": "Level editor for Quake-based games",
"version": "2019.3",
"license": "GPL-3.0-or-later",
"url": "https://github.com/kduske/TrenchBroom/releases/download/v2019.3/TrenchBroom-Win32-v2019.3-Release.7z",
"hash": "d71167d3f504ebb2ad77d633e24cd1a525ef502753ef1eac472bd83e5564d56d",
"bin": "TrenchBroom.exe",
"shortcuts": [
[
"TrenchBroom.exe",
"TrenchBroom"
]
],
"checkver": {
"github": "https://github.com/kduske/TrenchBroom"
},
"autoupdate": {
"url": "https://github.com/kduske/TrenchBroom/releases/download/v$version/TrenchBroom-Win32-v$version-Release.7z"
},
"depends": "extras/vcredist2015"
}

View File

@ -1,29 +1,29 @@
{
"homepage": "http://uhexen2.sourceforge.net/",
"description": "Faithful Hexen II source port (also known as Hammer of Thyrion)",
"version": "1.5.9",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/uhexen2/Hammer%20of%20Thyrion/1.5.9/Win64/hexen2-1.5.9-win64.zip",
"hash": "938d5e4bc394bd91aafa2e81cea78630bcefd0f00211d59238cf06cbc6c62c2a"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/uhexen2/Hammer%20of%20Thyrion/1.5.9/Windows/hexen2-1.5.9-win32.zip",
"hash": "ae180c355416d10a17beded7e50c4d3e2e3c0f95646262ebf411e9d38e16e1a4"
}
},
"extract_dir": "hexen2-1.5.9",
"shortcuts": [
[
"glh2.exe",
"uHexen2"
]
],
"persist": "data1",
"notes": [
"Place game data files (pak0.pak, pak1.pak) in:",
"",
"\t$persist_dir\\data1\\"
]
}
{
"homepage": "http://uhexen2.sourceforge.net/",
"description": "Faithful Hexen II source port (also known as Hammer of Thyrion)",
"version": "1.5.9",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/uhexen2/Hammer%20of%20Thyrion/1.5.9/Win64/hexen2-1.5.9-win64.zip",
"hash": "938d5e4bc394bd91aafa2e81cea78630bcefd0f00211d59238cf06cbc6c62c2a"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/uhexen2/Hammer%20of%20Thyrion/1.5.9/Windows/hexen2-1.5.9-win32.zip",
"hash": "ae180c355416d10a17beded7e50c4d3e2e3c0f95646262ebf411e9d38e16e1a4"
}
},
"extract_dir": "hexen2-1.5.9",
"shortcuts": [
[
"glh2.exe",
"uHexen2"
]
],
"persist": "data1",
"notes": [
"Place game data files (pak0.pak, pak1.pak) in:",
"",
"\t$persist_dir\\data1\\"
]
}

View File

@ -1,19 +1,19 @@
{
"homepage": "https://www.urbanterror.info/home/",
"description": "Multiplayer semi-realistic first-person shooter running on ioquake3",
"version": "4.3.4",
"license": "https://www.urbanterror.info/support/202-quake-3-sdk/",
"url": "http://cdn.urbanterror.info/urt/43/releases/zips/UrbanTerror434_full.zip",
"hash": "716669cc6c525663b791852e51ff9c94d96f382be39279dab6084dddacb5a4e7",
"extract_dir": "UrbanTerror43",
"shortcuts": [
[
"Quake3-UrT.exe",
"Urban Terror"
]
],
"persist": [
"q3ut4"
]
}
{
"homepage": "https://www.urbanterror.info/home/",
"description": "Multiplayer semi-realistic first-person shooter running on ioquake3",
"version": "4.3.4",
"license": "https://www.urbanterror.info/support/202-quake-3-sdk/",
"url": "http://cdn.urbanterror.info/urt/43/releases/zips/UrbanTerror434_full.zip",
"hash": "716669cc6c525663b791852e51ff9c94d96f382be39279dab6084dddacb5a4e7",
"extract_dir": "UrbanTerror43",
"shortcuts": [
[
"Quake3-UrT.exe",
"Urban Terror"
]
],
"persist": [
"q3ut4"
]
}

View File

@ -1,18 +1,18 @@
{
"homepage": "https://vdrift.net/",
"description": "3D simulation racing game",
"version": "2014-10-20",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/vdrift/vdrift/vdrift-2014-10-20/vdrift-win64-2014-10-20.exe#/dl.7z",
"hash": "7149ca6cf41388e29a8a681198fad2452fb4506a1d3404e1dbcb08e9a2c1904d"
}
},
"shortcuts": [
[
"vdrift.exe",
"VDrift"
]
]
}
{
"homepage": "https://vdrift.net/",
"description": "3D simulation racing game",
"version": "2014-10-20",
"license": "GPL-2.0-or-later",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/vdrift/vdrift/vdrift-2014-10-20/vdrift-win64-2014-10-20.exe#/dl.7z",
"hash": "7149ca6cf41388e29a8a681198fad2452fb4506a1d3404e1dbcb08e9a2c1904d"
}
},
"shortcuts": [
[
"vdrift.exe",
"VDrift"
]
]
}

View File

@ -1,26 +1,26 @@
{
"homepage": "https://warsow.net/",
"description": "Free fast-paced first-person shooter set in a cyberpunk universe",
"version": "2.1.2",
"license": "GPL-2.0-or-later",
"url": "http://sebastian.network/warsow/warsow-2.1.2.tar.gz",
"hash": "2c6f05b3ca365557a53013e20a7ecc424869b551c3b0e056d0e3e1c27354c21f",
"extract_dir": "warsow-2.1.2",
"architecture": {
"64bit": {
"pre_install": "Set-Content -Path \"$dir\\warsow.bat\" -Value \"pushd $dir && warsow_x64.exe && popd\""
},
"32bit": {
"pre_install": "Set-Content -Path \"$dir\\warsow.bat\" -Value \"pushd $dir && warsow_x86.exe && popd\""
}
},
"bin": [
"warsow.bat"
],
"shortcuts": [
[
"warsow.bat",
"Warsow"
]
]
}
{
"homepage": "https://warsow.net/",
"description": "Free fast-paced first-person shooter set in a cyberpunk universe",
"version": "2.1.2",
"license": "GPL-2.0-or-later",
"url": "http://sebastian.network/warsow/warsow-2.1.2.tar.gz",
"hash": "2c6f05b3ca365557a53013e20a7ecc424869b551c3b0e056d0e3e1c27354c21f",
"extract_dir": "warsow-2.1.2",
"architecture": {
"64bit": {
"pre_install": "Set-Content -Path \"$dir\\warsow.bat\" -Value \"pushd $dir && warsow_x64.exe && popd\""
},
"32bit": {
"pre_install": "Set-Content -Path \"$dir\\warsow.bat\" -Value \"pushd $dir && warsow_x86.exe && popd\""
}
},
"bin": [
"warsow.bat"
],
"shortcuts": [
[
"warsow.bat",
"Warsow"
]
]
}

View File

@ -1,21 +1,21 @@
{
"homepage": "https://wz2100.net/",
"description": "Real-time strategy game set in a futuristic universe",
"version": "3.1.5",
"license": "GPL-2.0-or-later",
"url": "https://github.com/Warzone2100/warzone2100/releases/download/3.1.5/warzone2100-3.1.5.exe#/dl.7z",
"hash": "e045174a15798439dc03068f72ee804d047a2f3fae84e1110c1bb566ffd672bd",
"bin": "warzone2100.exe",
"shortcuts": [
[
"warzone2100.exe",
"Warzone 2100"
]
],
"checkver": {
"github": "https://github.com/Warzone2100/warzone2100"
},
"autoupdate": {
"url": "https://github.com/Warzone2100/warzone2100/releases/download/$version/warzone2100-$version.exe"
}
}
{
"homepage": "https://wz2100.net/",
"description": "Real-time strategy game set in a futuristic universe",
"version": "3.1.5",
"license": "GPL-2.0-or-later",
"url": "https://github.com/Warzone2100/warzone2100/releases/download/3.1.5/warzone2100-3.1.5.exe#/dl.7z",
"hash": "e045174a15798439dc03068f72ee804d047a2f3fae84e1110c1bb566ffd672bd",
"bin": "warzone2100.exe",
"shortcuts": [
[
"warzone2100.exe",
"Warzone 2100"
]
],
"checkver": {
"github": "https://github.com/Warzone2100/warzone2100"
},
"autoupdate": {
"url": "https://github.com/Warzone2100/warzone2100/releases/download/$version/warzone2100-$version.exe"
}
}

View File

@ -1,14 +1,14 @@
{
"homepage": "https://www.wesnoth.org/",
"description": "Turn-based singleplayer and multiplayer strategy game with a high fantasy theme",
"version": "1.14.5",
"license": "GPL-2.0-or-later",
"url": "https://downloads.sourceforge.net/project/wesnoth/wesnoth-1.14/wesnoth-1.14.5/wesnoth-1.14.5-win32.exe#/dl.7z",
"hash": "8cc97ce344b07179df210ba6139124b53134d11e8ab24efe7121be88db8f5543",
"shortcuts": [
[
"wesnoth.exe",
"The Battle for Wesnoth"
]
]
}
{
"homepage": "https://www.wesnoth.org/",
"description": "Turn-based singleplayer and multiplayer strategy game with a high fantasy theme",
"version": "1.14.5",
"license": "GPL-2.0-or-later",
"url": "https://downloads.sourceforge.net/project/wesnoth/wesnoth-1.14/wesnoth-1.14.5/wesnoth-1.14.5-win32.exe#/dl.7z",
"hash": "8cc97ce344b07179df210ba6139124b53134d11e8ab24efe7121be88db8f5543",
"shortcuts": [
[
"wesnoth.exe",
"The Battle for Wesnoth"
]
]
}

View File

@ -1,26 +1,26 @@
{
"description": "Roguelite dungeon crawl shooter similar to The Binding of Isaac",
"homepage": "https://github.com/Cirrus-Minor/witchblast",
"version": "0.7.5",
"license": "GPL-3.0-or-later",
"url": "https://github.com/Cirrus-Minor/witchblast/releases/download/v0.7.5/Witch.Blast.v0.7.5.zip",
"hash": "2ed55f51f5a7a1a59d45175242bd62ae602361fc70d337ef7406d5b516398661",
"extract_dir": "Witch Blast v0.7.5",
"shortcuts": [
[
"Witch Blast.exe",
"Witch Blast"
]
],
"pre_install": [
"if (!(Test-Path \"$dir\\config.dat\")) { Set-Content -Value $null -Path \"$dir\\config.dat\" }",
"if (!(Test-Path \"$dir\\game.sav\")) { Set-Content -Value $null -Path \"$dir\\game.sav\" }"
],
"persist": [
"config.dat",
"game.sav",
"data"
],
"checkver": "github",
"##": "Note: No Autoupdate due to inconsistent releases, downloads etc. Also, a new release seems unlikely"
}
{
"description": "Roguelite dungeon crawl shooter similar to The Binding of Isaac",
"homepage": "https://github.com/Cirrus-Minor/witchblast",
"version": "0.7.5",
"license": "GPL-3.0-or-later",
"url": "https://github.com/Cirrus-Minor/witchblast/releases/download/v0.7.5/Witch.Blast.v0.7.5.zip",
"hash": "2ed55f51f5a7a1a59d45175242bd62ae602361fc70d337ef7406d5b516398661",
"extract_dir": "Witch Blast v0.7.5",
"shortcuts": [
[
"Witch Blast.exe",
"Witch Blast"
]
],
"pre_install": [
"if (!(Test-Path \"$dir\\config.dat\")) { Set-Content -Value $null -Path \"$dir\\config.dat\" }",
"if (!(Test-Path \"$dir\\game.sav\")) { Set-Content -Value $null -Path \"$dir\\game.sav\" }"
],
"persist": [
"config.dat",
"game.sav",
"data"
],
"checkver": "github",
"##": "Note: No Autoupdate due to inconsistent releases, downloads etc. Also, a new release seems unlikely"
}

View File

@ -1,29 +1,29 @@
{
"homepage": "https://andrettin.github.io/",
"description": "Real-time strategy game with retro graphics",
"version": "3.5.4",
"license": "GPL-2.0-only",
"url": [
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/wyrmsun.exe",
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/lua51.dll",
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/SDL.dll",
"https://github.com/Andrettin/Wyrmsun/archive/v3.5.4.zip"
],
"hash": [
"c705ac20e42fda3f803db91cd4de13930842d3f419e00f7aa67030f281e12557",
"e0db882100a34910dd57e08dc4a8a87fe8752454eac811c99c6b983a71842a26",
"a749e02e74a96680ea95db3035eab1a48fbd70f9a49ee6b66a317cb05c8f88fa",
"6ac5a8fcc32fee798e4e3590bace26a7741a66f205458690fc2c0a111035ded6"
],
"extract_dir": "Wyrmsun-3.5.4",
"shortcuts": [
[
"wyrmsun.exe",
"Wyrmsun"
]
],
"checkver": {
"github": "https://github.com/Andrettin/Wyrmsun"
}
}
{
"homepage": "https://andrettin.github.io/",
"description": "Real-time strategy game with retro graphics",
"version": "3.5.4",
"license": "GPL-2.0-only",
"url": [
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/wyrmsun.exe",
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/lua51.dll",
"https://github.com/Andrettin/Wyrmsun/releases/download/v3.5.4/SDL.dll",
"https://github.com/Andrettin/Wyrmsun/archive/v3.5.4.zip"
],
"hash": [
"c705ac20e42fda3f803db91cd4de13930842d3f419e00f7aa67030f281e12557",
"e0db882100a34910dd57e08dc4a8a87fe8752454eac811c99c6b983a71842a26",
"a749e02e74a96680ea95db3035eab1a48fbd70f9a49ee6b66a317cb05c8f88fa",
"6ac5a8fcc32fee798e4e3590bace26a7741a66f205458690fc2c0a111035ded6"
],
"extract_dir": "Wyrmsun-3.5.4",
"shortcuts": [
[
"wyrmsun.exe",
"Wyrmsun"
]
],
"checkver": {
"github": "https://github.com/Andrettin/Wyrmsun"
}
}

View File

@ -1,18 +1,18 @@
{
"homepage": "http://xmoto.tuxfamily.org/",
"description": "Difficult 2D motocross racing/stunts game",
"version": "0.5.11",
"license": "GPL-2.0-or-later",
"url": "http://download.tuxfamily.org/xmoto/xmoto/0.5.11/xmoto-0.5.11-win32.zip",
"hash": "0f9db7e042ab3a05ff131a66a20baf78539a869e8676cdec9054854cb9c6a32e",
"extract_dir": "xmoto-0.5.11-win32",
"bin": [
"xmoto.exe"
],
"shortcuts": [
[
"xmoto.exe",
"X-Moto"
]
]
}
{
"homepage": "http://xmoto.tuxfamily.org/",
"description": "Difficult 2D motocross racing/stunts game",
"version": "0.5.11",
"license": "GPL-2.0-or-later",
"url": "http://download.tuxfamily.org/xmoto/xmoto/0.5.11/xmoto-0.5.11-win32.zip",
"hash": "0f9db7e042ab3a05ff131a66a20baf78539a869e8676cdec9054854cb9c6a32e",
"extract_dir": "xmoto-0.5.11-win32",
"bin": [
"xmoto.exe"
],
"shortcuts": [
[
"xmoto.exe",
"X-Moto"
]
]
}

View File

@ -1,28 +1,28 @@
{
"homepage": "https://xonotic.org/",
"description": "Free fast-paced first-person shooter",
"version": "0.8.2",
"license": "GPL-3.0-or-later",
"url": "https://dl.xonotic.org/xonotic-0.8.2.zip",
"hash": "a22f7230f486c5825b55cfdadd73399c9b0fae98c9e081dd8ac76eca08359ad5",
"extract_dir": "Xonotic",
"architecture": {
"64bit": {
"pre_install": "Set-Content -Path \"$dir\\xonotic.bat\" -Value \"pushd $dir && xonotic.exe && popd\""
},
"32bit": {
"pre_install": "Set-Content -Path \"$dir\\xonotic.bat\" -Value \"pushd $dir && xonotic-x86.exe && popd\""
}
},
"bin": [
"xonotic.bat"
],
"shortcuts": [
[
"xonotic.bat",
"Xonotic",
"",
"misc/logos/icons_ico/xonotic.ico"
]
]
}
{
"homepage": "https://xonotic.org/",
"description": "Free fast-paced first-person shooter",
"version": "0.8.2",
"license": "GPL-3.0-or-later",
"url": "https://dl.xonotic.org/xonotic-0.8.2.zip",
"hash": "a22f7230f486c5825b55cfdadd73399c9b0fae98c9e081dd8ac76eca08359ad5",
"extract_dir": "Xonotic",
"architecture": {
"64bit": {
"pre_install": "Set-Content -Path \"$dir\\xonotic.bat\" -Value \"pushd $dir && xonotic.exe && popd\""
},
"32bit": {
"pre_install": "Set-Content -Path \"$dir\\xonotic.bat\" -Value \"pushd $dir && xonotic-x86.exe && popd\""
}
},
"bin": [
"xonotic.bat"
],
"shortcuts": [
[
"xonotic.bat",
"Xonotic",
"",
"misc/logos/icons_ico/xonotic.ico"
]
]
}

View File

@ -1,32 +1,32 @@
{
"homepage": "https://www.yamagi.org/quake2/",
"description": "Conservative Quake 2 source port focused on singleplayer and cooperative gameplay",
"version": "7.40",
"license": "GPL-2.0-or-later",
"url": "https://deponie.yamagi.org/quake2/windows/quake2-7.40.zip",
"hash": "ec892d559cce0aa09ee0eb13f5d90384451af0e32a05c3f2116f01b3a402eff5",
"extract_dir": "quake2-7.40",
"bin": [
"yquake2.exe",
"q2ded.exe"
],
"shortcuts": [
[
"yquake2.exe",
"Yamagi Quake 2"
]
],
"persist": "baseq2",
"notes": [
"Place game data files (such as pak0.pak-pak2.pak) in:",
"",
" $persist_dir\\baseq2\\"
],
"checkver": {
"re": "Yamagi Quake II version <strong>(\\d+\\.\\d+)</strong> was released"
},
"autoupdate": {
"url": "https://deponie.yamagi.org/quake2/windows/quake2-$version.zip",
"extract_dir": "quake2-$version"
}
}
{
"homepage": "https://www.yamagi.org/quake2/",
"description": "Conservative Quake 2 source port focused on singleplayer and cooperative gameplay",
"version": "7.40",
"license": "GPL-2.0-or-later",
"url": "https://deponie.yamagi.org/quake2/windows/quake2-7.40.zip",
"hash": "ec892d559cce0aa09ee0eb13f5d90384451af0e32a05c3f2116f01b3a402eff5",
"extract_dir": "quake2-7.40",
"bin": [
"yquake2.exe",
"q2ded.exe"
],
"shortcuts": [
[
"yquake2.exe",
"Yamagi Quake 2"
]
],
"persist": "baseq2",
"notes": [
"Place game data files (such as pak0.pak-pak2.pak) in:",
"",
" $persist_dir\\baseq2\\"
],
"checkver": {
"re": "Yamagi Quake II version <strong>(\\d+\\.\\d+)</strong> was released"
},
"autoupdate": {
"url": "https://deponie.yamagi.org/quake2/windows/quake2-$version.zip",
"extract_dir": "quake2-$version"
}
}

View File

@ -1,27 +1,27 @@
{
"homepage": "https://zandronum.com/",
"description": "Modern multiplayer-oriented source port for Doom",
"version": "3.0",
"license": "https://zdoom.org/wiki/license",
"url": "https://zandronum.com/downloads/zandronum3.0-win32-base.zip",
"hash": "c261ecbc6931bf5245d5447f4702e8aa8b59445c93a5b5cadebcb0fdc0747551",
"bin": [
"zandronum.exe"
],
"shortcuts": [
[
"zandronum.exe",
"Zandronum"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}
{
"homepage": "https://zandronum.com/",
"description": "Modern multiplayer-oriented source port for Doom",
"version": "3.0",
"license": "https://zdoom.org/wiki/license",
"url": "https://zandronum.com/downloads/zandronum3.0-win32-base.zip",
"hash": "c261ecbc6931bf5245d5447f4702e8aa8b59445c93a5b5cadebcb0fdc0747551",
"bin": [
"zandronum.exe"
],
"shortcuts": [
[
"zandronum.exe",
"Zandronum"
]
],
"pre_install": "New-Item -ItemType Directory -Force -Path $persist_dir\\..\\_doom | Out-Null",
"env_set": {
"DOOMWADDIR": "$persist_dir\\..\\_doom"
},
"notes": [
"Place WAD files (game data) in:",
"",
"\t$persist_dir\\..\\_doom"
]
}

View File

@ -1,2 +1,2 @@
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
. "$env:SCOOP_HOME\test\Import-Bucket-Tests.ps1"
if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) }
. "$env:SCOOP_HOME\test\Import-Bucket-Tests.ps1"