Skip to content

Commit

Permalink
taiga: Make persist explicit
Browse files Browse the repository at this point in the history
also made the manifest match `versions` more
  • Loading branch information
brian6932 committed Sep 3, 2023
1 parent 840bdab commit 1eb4480
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions bucket/taiga.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,30 @@
"description": "Detects anime videos on computer and synchronizes progress with online services.",
"homepage": "https://taiga.moe/",
"license": "GPL-3.0-only",
"url": "https://taiga.moe/update/TaigaSetup.exe#/dl.7z",
"url": "https://github.com/erengy/taiga/releases/download/v1.4.0/TaigaSetup_1.4.0.exe#/dl.7z",
"hash": "22556aff39f20a88bde4f0b944d886dd729810477b6b97dab39a0c9a60ad43e0",
"pre_install": [
"'$PLUGINSDIR', 'Uninstall.exe' | ForEach-Object { Remove-Item \"$dir\\$_\" -Recurse }",
"'user', 'feed' | ForEach-Object { if (!(Test-Path \"$persist_dir$($_ = \"\\data\\$_\")\")) { New-Item -ItemType 'Directory' \"$dir$_\" | Out-Null } }",
"'settings', 'db\\anime' | ForEach-Object { if (!(Test-Path \"$persist_dir$($_ = \"\\data\\$_.xml\")\" )) { New-Item \"$dir$_\" | Out-Null } }"
],
"bin": "Taiga.exe",
"shortcuts": [
[
"Taiga.exe",
"Taiga"
]
],
"persist": "data",
"persist": [
"data\\user",
"data\\feed",
"data\\settings.xml",
"data\\db\\anime.xml"
],
"checkver": {
"github": "https://github.com/erengy/taiga"
},
"autoupdate": {
"url": "https://taiga.moe/update/TaigaSetup.exe#/dl.7z"
"url": "https://github.com/erengy/taiga/releases/download/v$version/TaigaSetup_$version.exe#/dl.7z"
}
}

0 comments on commit 1eb4480

Please sign in to comment.