Skip to content

Commit

Permalink
taiga: Make persist explicit (#11833)
Browse files Browse the repository at this point in the history
* taiga: Make `persist` explicit
also made the manifest match `versions` more

* taiga: Add `db\image` to persists
(image cache)

* Reduce escapes
  • Loading branch information
brian6932 authored Nov 28, 2023
1 parent 7162802 commit a17794e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions bucket/taiga.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,31 @@
"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', 'db/image' | 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/image",
"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 a17794e

Please sign in to comment.