mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 08:07:11 +02:00
77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
const latestTag = "v1.41.0";
|
|
const base = `https://github.com/praktimarc/kst4contest/releases/download/${latestTag}`;
|
|
|
|
module.exports = [
|
|
{
|
|
os: "Windows",
|
|
format: "ZIP x64",
|
|
icon: "🪟",
|
|
recommended: true,
|
|
note: "Best choice for most Windows users.",
|
|
url: `${base}/praktiKST-${latestTag}-windows-x64.zip`
|
|
},
|
|
{
|
|
os: "Linux",
|
|
format: "AppImage x86_64",
|
|
icon: "🐧",
|
|
recommended: true,
|
|
note: "Portable Linux build without package installation.",
|
|
url: `${base}/KST4Contest-${latestTag}-linux-x86_64.AppImage`
|
|
},
|
|
{
|
|
os: "Debian / Ubuntu",
|
|
format: "DEB amd64",
|
|
icon: "📦",
|
|
recommended: false,
|
|
note: "Native package for Debian and Ubuntu based systems.",
|
|
url: `${base}/KST4Contest-${latestTag}-debian-amd64.deb`
|
|
},
|
|
{
|
|
os: "Fedora",
|
|
format: "RPM x86_64",
|
|
icon: "📦",
|
|
recommended: false,
|
|
note: "Native package for Fedora/RPM based systems.",
|
|
url: `${base}/KST4Contest-${latestTag}-fedora-x86_64.rpm`
|
|
},
|
|
{
|
|
os: "Arch Linux",
|
|
format: "pkg.tar.zst",
|
|
icon: "📦",
|
|
recommended: false,
|
|
note: "Package build for Arch Linux users.",
|
|
url: `${base}/KST4Contest-${latestTag}-archlinux-x86_64.pkg.tar.zst`
|
|
},
|
|
{
|
|
os: "macOS Apple Silicon",
|
|
format: "DMG arm64",
|
|
icon: "🍎",
|
|
recommended: false,
|
|
note: "For Apple Silicon Macs.",
|
|
url: `${base}/KST4Contest-${latestTag}-macos-arm64.dmg`
|
|
},
|
|
{
|
|
os: "macOS Intel",
|
|
format: "DMG x86_64",
|
|
icon: "🍎",
|
|
recommended: false,
|
|
note: "For Intel-based Macs.",
|
|
url: `${base}/KST4Contest-${latestTag}-macos-x86_64.dmg`
|
|
},
|
|
{
|
|
os: "Manual English",
|
|
format: "PDF",
|
|
icon: "📘",
|
|
recommended: false,
|
|
note: "English PDF manual.",
|
|
url: `${base}/KST4Contest-${latestTag}-manual-en.pdf`
|
|
},
|
|
{
|
|
os: "Manual German",
|
|
format: "PDF",
|
|
icon: "📘",
|
|
recommended: false,
|
|
note: "German PDF manual.",
|
|
url: `${base}/KST4Contest-${latestTag}-manual-de.pdf`
|
|
}
|
|
]; |