File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const windowsLink = ref(null);
2727const linuxLinks = {
2828 appImage: null ,
2929 deb: null ,
30+ rpm: null ,
3031 thirdParty: " https://support.modrinth.com/en/articles/9298760" ,
3132};
3233const macLinks = {
@@ -57,6 +58,7 @@ macLinks.intel = launcherUpdates.value.platforms["darwin-x86_64"].install_urls[0
5758windowsLink .value = launcherUpdates .value .platforms [" windows-x86_64" ].install_urls [0 ];
5859linuxLinks .appImage = launcherUpdates .value .platforms [" linux-x86_64" ].install_urls [1 ];
5960linuxLinks .deb = launcherUpdates .value .platforms [" linux-x86_64" ].install_urls [0 ];
61+ linuxLinks .rpm = launcherUpdates .value .platforms [" linux-x86_64" ].install_urls [2 ];
6062
6163onMounted (() => {
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 />
You can’t perform that action at this time.
0 commit comments