diff --git a/SS14.Launcher/Assets/Locale/en-US/text.ftl b/SS14.Launcher/Assets/Locale/en-US/text.ftl index 981460c..a8c9d75 100644 --- a/SS14.Launcher/Assets/Locale/en-US/text.ftl +++ b/SS14.Launcher/Assets/Locale/en-US/text.ftl @@ -366,7 +366,7 @@ tab-options-disable-signing = Disable Engine Signature Checks tab-options-disable-signing-desc = { "[" }DEV ONLY] Disables verification of engine signatures. DO NOT ENABLE UNLESS YOU KNOW EXACTLY WHAT YOU'RE DOING. tab-options-hub-settings = Hub Settings tab-options-hub-settings-desc = Change what hub server or servers you would like to use to fetch the server list. -tab-options-auth-url = https://tempauth.funkystation.org/ +tab-options-auth-url = https://auth.playss14.com/ tab-options-auth-url-button = Set Auth URL tab-options-set-wizden = Set to WizDen Auth tab-options-set-funky = Set to Funky Auth diff --git a/SS14.Launcher/ConfigConstants.cs b/SS14.Launcher/ConfigConstants.cs index c19e5f4..717e41b 100644 --- a/SS14.Launcher/ConfigConstants.cs +++ b/SS14.Launcher/ConfigConstants.cs @@ -28,17 +28,18 @@ public static class ConfigConstants private static readonly UrlFallbackSetStats StatsHubInfra = new(2); - public static readonly UrlFallbackSet AuthUrl = new(["https://tempauth.funkystation.org/", "https://tempauth.fallback.funkystation.org/"], StatsHubInfra); - public static readonly UrlFallbackSet[] DefaultHubUrls = [new(["https://hub.spacestation14.com/", "https://hub.fallback.spacestation14.com/"], StatsHubInfra)]; - public const string DiscordUrl = "https://discord.ss14.io/"; - public const string AccountBaseUrl = "https://account.spacestation14.com/Identity/Account/"; + public static readonly UrlFallbackSet AuthUrl = new(["https://auth.playss14.com/", "https://auth.fallback.playss14.com/"], StatsHubInfra); + public static readonly UrlFallbackSet[] DefaultHubUrls = + [new(["https://hub.spacestation14.com/", "https://hub.fallback.spacestation14.com/"], StatsHubInfra), new(["https://hub.playss14.com/", "https://hub.fallback.playss14.com/"])]; + public const string DiscordUrl = "https://discord.gg/ss14"; + public const string AccountBaseUrl = "https://account.playss14.com/Identity/Account/"; public const string AccountManagementUrl = $"{AccountBaseUrl}Manage"; public const string AccountRegisterUrl = $"{AccountBaseUrl}Register"; public const string AccountResendConfirmationUrl = $"{AccountBaseUrl}ResendEmailConfirmation"; - public const string WebsiteUrl = "https://funkystation.org"; - public const string DownloadUrl = "https://github.com/funky-station/launcher/releases/latest"; - public const string NewsFeedUrl = "https://spacestation14.com/post/index.xml"; - public const string TranslateUrl = "https://docs.spacestation14.com/en/general-development/contributing-translations.html"; + public const string WebsiteUrl = "https://playss14.com/"; + public const string DownloadUrl = "https://playss14.com/"; + public const string NewsFeedUrl = "https://playss14.com/"; + public const string TranslateUrl = "https://playss14.com/"; private static readonly UrlFallbackSet RobustBuildsBaseUrl = new([ "https://robust-builds.cdn.spacestation14.com/", diff --git a/SS14.Launcher/Models/Data/CVars.cs b/SS14.Launcher/Models/Data/CVars.cs index 07c025e..aad30c4 100644 --- a/SS14.Launcher/Models/Data/CVars.cs +++ b/SS14.Launcher/Models/Data/CVars.cs @@ -103,7 +103,7 @@ public static readonly CVarDef HasDismissedRosettaWarning /// public static readonly CVarDef OverrideAssets = CVarDef.Create("OverrideAssets", true); - public static readonly CVarDef CustomAuthUrl = CVarDef.Create("CustomAuthUrl", "https://tempauth.funkystation.org/"); + public static readonly CVarDef CustomAuthUrl = CVarDef.Create("CustomAuthUrl", "https://auth.playss14.com/"); /// /// Stores the minimum player count value used by the "minimum player count" filter. diff --git a/SS14.Launcher/ViewModels/MainWindowTabs/OptionsTabViewModel.cs b/SS14.Launcher/ViewModels/MainWindowTabs/OptionsTabViewModel.cs index db87fb2..7e41c14 100644 --- a/SS14.Launcher/ViewModels/MainWindowTabs/OptionsTabViewModel.cs +++ b/SS14.Launcher/ViewModels/MainWindowTabs/OptionsTabViewModel.cs @@ -20,7 +20,7 @@ public class OptionsTabViewModel : MainWindowTabViewModel private readonly LoginManager _loginManager; public string FunkyAuthUrl = "https://tempauth.funkystation.org/"; - public string WizDenAuthUrl = "https://auth.spacestation14.com/"; + public string WizDenAuthUrl = "https://auth.playss14.com/"; public LanguageSelectorViewModel Language { get; } = new();