From b1ffd4687f830ff2ae82b6d8e54788496fab6d1f Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 04:50:49 -0500 Subject: [PATCH 1/5] chore(download): remove pacstall instructions for ubuntu As this repository only has development builds, I don't think it's suitable for this page Signed-off-by: Seth Flynn --- src/download/linux.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/download/linux.md b/src/download/linux.md index e5d659ad0..5c25b5593 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -171,19 +171,6 @@ mist install prismlauncher-bin mist install prismlauncher-git ``` -### Installing with Pacstall - -Install [`pacstall`](https://pacstall.dev/), then run: - -```bash -# Latest stable release (compiled from source) -pacstall -I prismlauncher -# Latest stable release (binary) -pacstall -I prismlauncher-bin -# Newest Git commit (compiled from source) -pacstall -I prismlauncher-git -``` - ## Debian / Pi OS / Ubuntu (ARM32/64) Prism Launcher is available in the [pi-apps](https://github.com/Botspot/pi-apps) store From d5e7acd33cac23d2ed1bdad0918b62b7bd547b0a Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 04:54:18 -0500 Subject: [PATCH 2/5] chore(download): cleanup ubuntu instructions `prismlauncher-bin` has been dropped, and the support matrix has changed a bit. We also had a `yay` command here, oops Signed-off-by: Seth Flynn --- src/download/linux.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/download/linux.md b/src/download/linux.md index 5c25b5593..fd734a6e3 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -142,7 +142,6 @@ sudo dnf install prismlauncher Several packages are available through [makedeb](https://makedeb.org/)'s [MPR](https://mpr.makedeb.org/) [![prismlauncher](https://img.shields.io/badge/mpr-prismlauncher-orange)](https://mpr.makedeb.org/packages/prismlauncher) -[![prismlauncher-bin](https://img.shields.io/badge/mpr-prismlauncher--bin-orange)](https://mpr.makedeb.org/packages/prismlauncher-bin) [![prismlauncher-git](https://img.shields.io/badge/mpr-prismlauncher--git-orange)](https://mpr.makedeb.org/packages/prismlauncher-git) ### Installation using Prebuilt-MPR (recommended) @@ -150,24 +149,21 @@ Several packages are available through [makedeb](https://makedeb.org/)'s [MPR](h Add the Prebuilt-MPR repository as described [here](https://docs.makedeb.org/prebuilt-mpr/getting-started/), then run: ```bash -# Latest stable release sudo apt install prismlauncher -# Newest Git commit -yay -S prismlauncher-git ``` -Prebuilt MPR supports Debian 11, 12, and Ubuntu 20.04, 22.04, 22.10, and 23.04. +Prebuilt MPR supports Debian 12, and Ubuntu 20.04, 22.04, and >= 23.04. ### Installing with mist, the MPR CLI Install `mist` by following the [upostream instructions](https://docs.makedeb.org/using-the-mpr/mist-the-mpr-cli/#installing-mist). +Packages installed via `mist` will be compiled from source + ```bash -# Latest stable release (compiled from source) +# Latest stable release mist install prismlauncher -# Latest stable release (binary) -mist install prismlauncher-bin -# Newest Git commit (compiled from source) +# Newest Git commit mist install prismlauncher-git ``` From b429de930c7fdcec9f85486fa9c81599afb79e9d Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 04:56:51 -0500 Subject: [PATCH 3/5] fix(download): FlatHub -> Flathub Flathub isn't stylized this way (anymore at least). Thanks to that_leaflet on Discord Signed-off-by: Seth Flynn --- src/download/linux.md | 4 ++-- src/download/steam-deck.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/download/linux.md b/src/download/linux.md index fd734a6e3..99914865d 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -11,9 +11,9 @@ eleventyNavigation:

Linux Download

-

FlatHub supports both x86_64 and ARM64

+

Flathub supports both x86_64 and ARM64


- Install from FlatHub + Install from Flathub

x86_64 ONLY


Download (AppImage) diff --git a/src/download/steam-deck.md b/src/download/steam-deck.md index 71df8af48..b811a4d28 100644 --- a/src/download/steam-deck.md +++ b/src/download/steam-deck.md @@ -11,7 +11,7 @@ eleventyNavigation:

Steam Deck Download


- Install from FlatHub + Install from Flathub
From d5f83eb56ee8ff1a33f7fff43af058ba507568ef Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 04:58:54 -0500 Subject: [PATCH 4/5] fix(download): use full file name for appimage Signed-off-by: Seth Flynn --- src/download/linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/download/linux.md b/src/download/linux.md index 99914865d..f816a4129 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -77,8 +77,8 @@ After downloading the AppImage, open your file manager and make it [executable]( ### CLI ```bash -curl -fsSLo PrismLauncher.AppImage https://github.com/PrismLauncher/PrismLauncher/releases/download/{{version.current}}/PrismLauncher-Linux-x86_64.AppImage -chmod +x ./PrismLauncher.AppImage +curl -LO https://github.com/PrismLauncher/PrismLauncher/releases/download/{{version.current}}/PrismLauncher-Linux-x86_64.AppImage +chmod +x ./PrismLauncher-Linux-x86_64.AppImage ./PrismLauncher.AppImage ``` From b5cc9fc44f1441462467917c3d32fec871ea3854 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Mon, 20 Jan 2025 05:01:31 -0500 Subject: [PATCH 5/5] fix(download): upostream -> upstream Signed-off-by: Seth Flynn --- src/download/linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download/linux.md b/src/download/linux.md index f816a4129..eb638ee10 100644 --- a/src/download/linux.md +++ b/src/download/linux.md @@ -156,7 +156,7 @@ Prebuilt MPR supports Debian 12, and Ubuntu 20.04, 22.04, and >= 23.04. ### Installing with mist, the MPR CLI -Install `mist` by following the [upostream instructions](https://docs.makedeb.org/using-the-mpr/mist-the-mpr-cli/#installing-mist). +Install `mist` by following the [upstream instructions](https://docs.makedeb.org/using-the-mpr/mist-the-mpr-cli/#installing-mist). Packages installed via `mist` will be compiled from source