Compare commits

..

No commits in common. "438c5b13e29b42b27b1753f9f47d48a34b07a557" and "dcf20c7d739baf7fdf0614690dff2c190c5cdfee" have entirely different histories.

4 changed files with 6 additions and 12 deletions

View File

@ -114,7 +114,6 @@
| [Gitea](https://gitlab.com/packaging/gitea)[镜像](https://mirrors.ustc.edu.cn/help/packaging-gitea.html) | gitea | ✅ | ✅ | | [Gitea](https://gitlab.com/packaging/gitea)[镜像](https://mirrors.ustc.edu.cn/help/packaging-gitea.html) | gitea | ✅ | ✅ |
| [AnyDesk](https://deb.anydesk.com/howto.html) | anydesk | ✅ | ✅ | | [AnyDesk](https://deb.anydesk.com/howto.html) | anydesk | ✅ | ✅ |
| [Spotify](https://www.spotify.com/sg-zh/download/linux/) | spotify-client | ✅ | | | [Spotify](https://www.spotify.com/sg-zh/download/linux/) | spotify-client | ✅ | |
| [Free Download Manager](https://www.freedownloadmanager.org/zh/download-fdm-for-linux.htm) | freedownloadmanager | ✅ | |
## 自建仓库 ## 自建仓库

View File

@ -9,7 +9,7 @@
"mihomo": { "mihomo": {
"repo": "MetaCubeX/mihomo", "repo": "MetaCubeX/mihomo",
"file_list": { "file_list": {
"amd64": "mihomo-linux-amd64-{releases_tag}.deb", "amd64": "mihomo-linux-amd64-compatible-{releases_tag}.deb",
"arm64": "mihomo-linux-arm64-{releases_tag}.deb" "arm64": "mihomo-linux-arm64-{releases_tag}.deb"
} }
}, },
@ -148,7 +148,8 @@
"winboat": { "winboat": {
"repo": "TibixDev/winboat", "repo": "TibixDev/winboat",
"file_list": { "file_list": {
"amd64": "winboat-{version}-amd64.deb" "amd64": "winboat-{version}-amd64.deb",
"arm64": "winboat-{version}-arm64.deb"
} }
}, },
"fooyin": { "fooyin": {

View File

@ -144,15 +144,9 @@
} }
}, },
"spotify-client": { "spotify-client": {
"repo": "https://repository.spotify.com/", "repo": "http://repository.spotify.com/",
"path": { "path": {
"amd64": "dists/stable/non-free/binary-amd64/Packages" "amd64": "dists/stable/non-free/binary-amd64/Packages"
} }
},
"freedownloadmanager": {
"repo": "https://debrepo.freedownloadmanager.org/",
"path": {
"amd64": "dists/jammy/main/binary-amd64/Packages.gz"
}
} }
} }

View File

@ -1,6 +1,6 @@
JSON=$(curl -fs "https://client-webapi.oray.com/softwares/SUNLOGIN_X_LINUX?x64=1") JSON=$(curl -fs "https://client-webapi.oray.com/softwares/SUNLOGIN_X_LINUX?x64=1")
VERSION=$(printf "%s" "$JSON" | jq -r '.versionno') VERSION=$(echo "$JSON" | jq -r '.versionno')
AMD64_URL=$(printf "%s" "$JSON" | jq -r '.downloadurl') AMD64_URL=$(echo $JSON | jq -r '.downloadurl')
./check_downloader.py sunloginclient $VERSION $AMD64_URL amd64 ./check_downloader.py sunloginclient $VERSION $AMD64_URL amd64