Added links to flatpak check

This commit is contained in:
Shyanne 2026-01-01 15:10:53 -05:00 committed by sh0inx
parent 2bf306ea58
commit f49029803a

View file

@ -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");
}
}
}