Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4ff903c57 | |||
| 2d8c1b4d96 |
@@ -20,13 +20,13 @@ public static class LauncherConVar
|
||||
new AuthServerCredentials(
|
||||
"WizDen",
|
||||
[
|
||||
"https://auth.spacestation14.com/",
|
||||
"https://harpy.durenko.tatar/auth-api/",
|
||||
"https://auth.fallback.spacestation14.com/"
|
||||
])
|
||||
]);
|
||||
|
||||
public static readonly ConVar<ServerHubRecord[]> Hub = ConVarBuilder.Build<ServerHubRecord[]>("launcher.hub.v2", [
|
||||
new ServerHubRecord("WizDen", "https://hub.spacestation14.com/api/servers", null),
|
||||
new ServerHubRecord("WizDen", "https://harpy.durenko.tatar/hub-api/api/servers", null),
|
||||
new ServerHubRecord("AltHub","https://web.networkgamez.com/api/servers",null)
|
||||
]);
|
||||
|
||||
|
||||
@@ -69,8 +69,16 @@ public partial class ServerOverviewModel : ViewModelBase
|
||||
Items = new ObservableCollection<ServerListTabTemplate>(tempItems);
|
||||
|
||||
SelectedItem = Items[0];
|
||||
|
||||
OnSearchChange += SearchChangeEvent;
|
||||
}
|
||||
|
||||
|
||||
private void SearchChangeEvent()
|
||||
{
|
||||
CurrentFilter.SearchText = SearchText;
|
||||
ApplyFilter();
|
||||
}
|
||||
|
||||
public void ApplyFilter()
|
||||
{
|
||||
foreach (var entry in ServerViewContainer.Items)
|
||||
|
||||
@@ -7,14 +7,14 @@ public static class CurrentConVar
|
||||
{
|
||||
public static readonly ConVar<string[]> EngineManifestUrl =
|
||||
ConVarBuilder.Build<string[]>("engine.manifestUrl", [
|
||||
"https://robust-builds.cdn.spacestation14.com/manifest.json",
|
||||
"https://harpy.durenko.tatar/manifests/manifest",
|
||||
"https://robust-builds.fallback.cdn.spacestation14.com/manifest.json"
|
||||
]);
|
||||
|
||||
public static readonly ConVar<string[]> EngineModuleManifestUrl =
|
||||
ConVarBuilder.Build<string[]>("engine.moduleManifestUrl",
|
||||
[
|
||||
"https://robust-builds.cdn.spacestation14.com/modules.json",
|
||||
"https://harpy.durenko.tatar/manifests/modules",
|
||||
"https://robust-builds.fallback.cdn.spacestation14.com/modules.json"
|
||||
]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user