Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SS14.Launcher/Assets/Locale/en-US/text.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 9 additions & 8 deletions SS14.Launcher/ConfigConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher/Models/Data/CVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static readonly CVarDef<bool> HasDismissedRosettaWarning
/// </summary>
public static readonly CVarDef<bool> OverrideAssets = CVarDef.Create("OverrideAssets", true);

public static readonly CVarDef<string> CustomAuthUrl = CVarDef.Create("CustomAuthUrl", "https://tempauth.funkystation.org/");
public static readonly CVarDef<string> CustomAuthUrl = CVarDef.Create("CustomAuthUrl", "https://auth.playss14.com/");

/// <summary>
/// Stores the minimum player count value used by the "minimum player count" filter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
Loading