From f49029803a2e54fa5709adf5e63a1386801f3e93 Mon Sep 17 00:00:00 2001 From: Shyanne Date: Thu, 1 Jan 2026 15:10:53 -0500 Subject: [PATCH] Added links to flatpak check --- src/Ryujinx/Program.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index fe711cfda..0a45aa2da 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -159,7 +159,11 @@ namespace Ryujinx.Ava if (Environment.GetEnvironmentVariable("container").EqualsIgnoreCase("flatpak")) { Logger.Warning?.PrintMsg(LogClass.Application, "This is very likely an unofficial build, Ryujinx does NOT have a flatpak!"); - Logger.Info?.PrintMsg(LogClass.Application, "Please visit https://ryujinx.app/ for our official AppImage or tarball."); + Logger.Info?.PrintMsg(LogClass.Application, "Please visit https://ryujinx.app/ for our official builds."); + Logger.Info?.PrintMsg(LogClass.Application, + "AppImage >> https://update.ryujinx.app/download/query?os=linuxappimage&arch=x64&rc=stable"); + Logger.Info?.PrintMsg(LogClass.Application, + "Tarball >> http://update.ryujinx.app/download/query?os=linux&arch=x64&rc=stable"); } } }