Add direct download links for release assets

This commit is contained in:
Marc Froehlich
2026-07-06 23:33:54 +02:00
parent 217c7e8451
commit 42255e2b41
+49 -18
View File
@@ -1,37 +1,68 @@
const latestTag = "v1.41.0";
const base = `https://github.com/praktimarc/kst4contest/releases/download/${latestTag}`;
module.exports = [ module.exports = [
{ {
os: "Windows", os: "Windows",
format: "ZIP", format: "ZIP x64",
icon: "🪟", icon: "🪟",
recommended: true, recommended: true,
url: "https://github.com/praktimarc/kst4contest/releases/latest" url: `${base}/praktiKST-${latestTag}-windows-x64.zip`
},
{
os: "macOS",
format: "DMG",
icon: "🍎",
recommended: false,
url: "https://github.com/praktimarc/kst4contest/releases/latest"
}, },
{ {
os: "Linux", os: "Linux",
format: "AppImage / DEB / RPM / Arch", format: "AppImage x86_64",
icon: "🐧", icon: "🐧",
recommended: false, recommended: true,
url: "https://github.com/praktimarc/kst4contest/releases/latest" url: `${base}/KST4Contest-${latestTag}-linux-x86_64.AppImage`
}, },
{ {
os: "Flatpak", os: "Debian / Ubuntu",
format: "flatpakref", format: "DEB amd64",
icon: "📦", icon: "📦",
recommended: false, recommended: false,
url: "https://github.com/praktimarc/kst4contest/releases/latest" url: `${base}/KST4Contest-${latestTag}-debian-amd64.deb`
}, },
{ {
os: "Manual", os: "Fedora",
format: "PDF EN/DE", format: "RPM x86_64",
icon: "📦",
recommended: false,
url: `${base}/KST4Contest-${latestTag}-fedora-x86_64.rpm`
},
{
os: "Arch Linux",
format: "pkg.tar.zst",
icon: "📦",
recommended: false,
url: `${base}/KST4Contest-${latestTag}-archlinux-x86_64.pkg.tar.zst`
},
{
os: "macOS Apple Silicon",
format: "DMG arm64",
icon: "🍎",
recommended: false,
url: `${base}/KST4Contest-${latestTag}-macos-arm64.dmg`
},
{
os: "macOS Intel",
format: "DMG x86_64",
icon: "🍎",
recommended: false,
url: `${base}/KST4Contest-${latestTag}-macos-x86_64.dmg`
},
{
os: "Manual English",
format: "PDF",
icon: "📘", icon: "📘",
recommended: false, recommended: false,
url: "https://github.com/praktimarc/kst4contest/releases/latest" url: `${base}/KST4Contest-${latestTag}-manual-en.pdf`
},
{
os: "Manual German",
format: "PDF",
icon: "📘",
recommended: false,
url: `${base}/KST4Contest-${latestTag}-manual-de.pdf`
} }
]; ];