Created
June 10, 2020 06:15
-
-
Save mark05e/8f40178898243f70e4b74c2209e75afb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.19.4", | |
"description": "RSS/Atom news feeds reader", | |
"homepage": "https://quiterss.org/en", | |
"license": "GPL-3.0-only", | |
"url": "https://quiterss.org/files/0.19.4_/QuiteRSS-0.19.4.zip", | |
"hash": "md5:84e44cac789dea9dbf3746130c0ea02b", | |
"extract_dir": "QuiteRSS-0.19.4", | |
"pre_install": [ | |
"$conf = 'feeds.db', 'QuiteRss.ini'", | |
"New-Item \"$persist_dir\" -ItemType Directory -ErrorAction SilentlyContinue | Out-Null", | |
"foreach ($_ in $conf) {", | |
" if (Test-Path \"$persist_dir\\$_\" -Type Container) { Remove-Item \"$persist_dir\\$_\" -Recurse }", | |
" if ($_ -eq 'feeds.db') { continue }", | |
" if (-not (Test-Path \"$persist_dir\\$_\")) {", | |
" Set-Content \"$dir\\$_\" '[Settings]', 'updateCheckEnabled=false' -Encoding Ascii", | |
" }", | |
"}", | |
"Copy-Item \"$persist_dir\\*\" \"$dir\" -Include $conf -ErrorAction SilentlyContinue" | |
], | |
"uninstaller": { | |
"script": "Copy-Item \"$dir\\*\" \"$persist_dir\" -Include 'feeds.db', 'QuiteRss.ini' -ErrorAction SilentlyContinue -Force" | |
}, | |
"shortcuts": [ | |
[ | |
"QuiteRSS.exe", | |
"QuiteRSS" | |
] | |
], | |
"checkver": { | |
"github": "https://github.com/QuiteRSS/quiterss" | |
}, | |
"autoupdate": { | |
"url": "https://quiterss.org/files/$version/QuiteRSS-$version.zip", | |
"hash": { | |
"url": "$baseurl/QuiteRSS-$version.md5" | |
}, | |
"extract_dir": "QuiteRSS-$version" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment