-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"version": "0.1.5", | ||
"description": "Alist Helper is an application developed using Flutter, designed to simplify the use of the desktop version of alist. It can manage alist, allowing you to easily start and stop the alist program.", | ||
"homepage": "https://github.com/Xmarmalade/alisthelper", | ||
"license": { | ||
"identifier": "GPL-3.0 license", | ||
"url": "https://github.com/Xmarmalade/alisthelper/blob/master/LICENSE" | ||
}, | ||
"suggest": { | ||
"alist": "alist" | ||
}, | ||
"notes": "Show alist working directory by 'scoop prefix alist'", | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/Xmarmalade/alisthelper/releases/download/v0.1.5/AlistHelper_v0.1.5_windows-x86_64.zip", | ||
"hash": "22d71a86c9e790bb528cdcedf5261bfadaf3967c68f9eaab58967f319a6ec425" | ||
} | ||
}, | ||
"installer": { | ||
"script": [ | ||
"# handle runtime cache", | ||
"Import-Module $(Join-Path $(Find-BucketDirectory -Root -Name apps) scripts/AppsUtils.psm1)", | ||
"Mount-ExternalRuntimeData -Source \"$persist_dir\\appdata\" -Target \"$env:APPDATA\\dev.xmarmalade.alisthelper\"", | ||
"Remove-Module -Name AppsUtils" | ||
] | ||
}, | ||
"uninstaller": { | ||
"script": [ | ||
"Import-Module $(Join-Path $(Find-BucketDirectory -Root -Name apps) scripts/AppsUtils.psm1)", | ||
"Dismount-ExternalRuntimeData -Target \"$env:APPDATA\\dev.xmarmalade.alisthelper\"", | ||
"Remove-Module -Name AppsUtils" | ||
] | ||
}, | ||
"shortcuts": [ | ||
[ | ||
"alisthelper.exe", | ||
"Alist Helper" | ||
] | ||
], | ||
"checkver": { | ||
"url": "https://api.github.com/repos/Xmarmalade/alisthelper/releases", | ||
"regex": "(?sm)browser_download_url.*?releases/download/v([\\d.]+)/AlistHelper_v([\\d.]+)_windows-x86_64\\.zip" | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/Xmarmalade/alisthelper/releases/download/v$version/AlistHelper_v$version_windows-x86_64.zip" | ||
} | ||
} | ||
} | ||
} |