rclone: Use GitHub URLs (#304)

This commit is contained in:
Jakub Čábera 2019-08-06 17:39:10 +02:00 committed by Ross Smith II
parent 17692c8e77
commit fa32407456

View File

@ -1,33 +1,32 @@
{ {
"homepage": "https://rclone.org",
"description": "rsync for cloud storage",
"version": "1.48.0", "version": "1.48.0",
"description": "Sync files and directories to and from mulitple cloud / FTP / HTTP hosters.",
"homepage": "https://rclone.org",
"license": "MIT", "license": "MIT",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://downloads.rclone.org/v1.48.0/rclone-v1.48.0-windows-amd64.zip", "url": "https://github.com/rclone/rclone/releases/download/v1.48.0/rclone-v1.48.0-windows-amd64.zip",
"hash": "c75f3a339eecbdca25578a8a38dc3412d894bfad6e69ad1bd5be3c1ab98ae542", "hash": "c75f3a339eecbdca25578a8a38dc3412d894bfad6e69ad1bd5be3c1ab98ae542",
"extract_dir": "rclone-v1.48.0-windows-amd64" "extract_dir": "rclone-v1.48.0-windows-amd64"
}, },
"32bit": { "32bit": {
"url": "https://downloads.rclone.org/v1.48.0/rclone-v1.48.0-windows-386.zip", "url": "https://github.com/rclone/rclone/releases/download/v1.48.0/rclone-v1.48.0-windows-386.zip",
"hash": "53b6c790687620aec8c28318c78d8471bcab2346d07bf30dc09e937000419547", "hash": "53b6c790687620aec8c28318c78d8471bcab2346d07bf30dc09e937000419547",
"extract_dir": "rclone-v1.48.0-windows-386" "extract_dir": "rclone-v1.48.0-windows-386"
} }
}, },
"bin": "rclone.exe", "bin": "rclone.exe",
"checkver": { "checkver": {
"url": "https://downloads.rclone.org/version.txt", "github": "https://github.com/rclone/rclone"
"regex": "rclone v(.+)"
}, },
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://downloads.rclone.org/v$version/rclone-v$version-windows-amd64.zip", "url": "https://github.com/rclone/rclone/releases/download/v$version/rclone-v$version-windows-amd64.zip",
"extract_dir": "rclone-v$version-windows-amd64" "extract_dir": "rclone-v$version-windows-amd64"
}, },
"32bit": { "32bit": {
"url": "https://downloads.rclone.org/v$version/rclone-v$version-windows-386.zip", "url": "https://github.com/rclone/rclone/releases/download/v$version/rclone-v$version-windows-386.zip",
"extract_dir": "rclone-v$version-windows-386" "extract_dir": "rclone-v$version-windows-386"
} }
}, },