mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-12 07:36:59 +00:00
the context can now override a virtual method named `CreateHelpContent` which the setup wizard system will automatically try to use when you use the generic overload taking a generic context type. If the return is null, it skips setting entirely (the default impl is null) additionally made the discord join link a button with code copied from the about window, and made it centered at the bottom.
25 lines
1 KiB
C#
25 lines
1 KiB
C#
namespace Ryujinx.Common
|
|
{
|
|
public static class SharedConstants
|
|
{
|
|
public const string DefaultLanPlayHost = "ldn.ryujinx.app";
|
|
public const short LanPlayPort = 30456;
|
|
public const string DefaultLanPlayWebHost = DefaultLanPlayHost;
|
|
|
|
public const string AmiiboTagsUrl = "https://raw.githubusercontent.com/Ryubing/Nfc/refs/heads/main/tags.json";
|
|
|
|
public const string FaqWikiUrl = "https://git.ryujinx.app/ryubing/ryujinx/-/wikis/FAQ-&-Troubleshooting";
|
|
|
|
public const string SetupGuideWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Setup-&-Configuration-Guide";
|
|
|
|
public const string DumpKeysWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Dumping/Keys";
|
|
|
|
public const string DumpFirmwareWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Dumping/Firmware";
|
|
|
|
public const string MultiplayerWikiUrl =
|
|
"https://git.ryujinx.app/ryubing/ryujinx/-/wikis/Multiplayer-(LDN-Local-Wireless)-Guide";
|
|
}
|
|
}
|