Skip to content

Commit ac9bcab

Browse files
committed
Add RPM to website
1 parent 5bb961f commit ac9bcab

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/frontend/src/pages/app.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const windowsLink = ref(null);
2727
const linuxLinks = {
2828
appImage: null,
2929
deb: null,
30+
rpm: null,
3031
thirdParty: "https://support.modrinth.com/en/articles/9298760",
3132
};
3233
const macLinks = {
@@ -57,6 +58,7 @@ macLinks.intel = launcherUpdates.value.platforms["darwin-x86_64"].install_urls[0
5758
windowsLink.value = launcherUpdates.value.platforms["windows-x86_64"].install_urls[0];
5859
linuxLinks.appImage = launcherUpdates.value.platforms["linux-x86_64"].install_urls[1];
5960
linuxLinks.deb = launcherUpdates.value.platforms["linux-x86_64"].install_urls[0];
61+
linuxLinks.rpm = launcherUpdates.value.platforms["linux-x86_64"].install_urls[2];
6062
6163
onMounted(() => {
6264
os.value = navigator?.platform.toString();
@@ -879,7 +881,11 @@ useSeoMeta({
879881
</a>
880882
<a :href="linuxLinks.deb" download="">
881883
<DownloadIcon />
882-
<span> Download the Deb </span>
884+
<span> Download the DEB </span>
885+
</a>
886+
<a :href="linuxLinks.rpm" download="">
887+
<DownloadIcon />
888+
<span> Download the RPM </span>
883889
</a>
884890
<a :href="linuxLinks.thirdParty" download="">
885891
<LinkIcon />

0 commit comments

Comments
 (0)