From 6680ca91935aa0491cf87bc3e9cb1e5e9b4f02df Mon Sep 17 00:00:00 2001 From: core Date: Sat, 25 Nov 2023 22:30:05 -0500 Subject: [PATCH] upd & change config to /hub hub urls --- Cargo.lock | 8 ++++---- starkingdoms-client/src/config.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0d14fb53caba92f5cc3b41917535b4d6cf4c8be7..fb971b7fcca9df5c3ac0cafc1f8fa266999d7c99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "bevy_twite" version = "1.0.0" -source = "git+https://gitlab.com/ghostlyzsh/twite.git#37df5884b009eb55d2a0d49877559e397306a629" +source = "git+https://gitlab.com/ghostlyzsh/twite.git#4998e404fefe46bea91048fb492b89e74b2f9596" dependencies = [ "bevy", "crossbeam-channel", @@ -851,9 +851,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro2" -version = "1.0.69" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" +checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" dependencies = [ "unicode-ident", ] @@ -1221,7 +1221,7 @@ dependencies = [ [[package]] name = "twite" version = "0.1.0" -source = "git+https://gitlab.com/ghostlyzsh/twite.git#37df5884b009eb55d2a0d49877559e397306a629" +source = "git+https://gitlab.com/ghostlyzsh/twite.git#4998e404fefe46bea91048fb492b89e74b2f9596" dependencies = [ "base64", "rand", diff --git a/starkingdoms-client/src/config.json b/starkingdoms-client/src/config.json index 2f8cd745a8fd0e9914f36e0505bfb390f2f4892c..dd50eba03929d5c17e6bd9a861e375051a85f2bf 100644 --- a/starkingdoms-client/src/config.json +++ b/starkingdoms-client/src/config.json @@ -2,7 +2,7 @@ "servers": { "stk-prod": { "name": "StarKingdoms", - "clientHubUrl": "wss://starkingdoms.io", + "clientHubUrl": "wss://starkingdoms.io/hub", "apiBaseUrl": "https://api.starkingdoms.io", "isProduction": true, "isDevelopment": false, @@ -10,7 +10,7 @@ }, "stk-beta": { "name": "StarKingdoms Beta", - "clientHubUrl": "wss://beta.starkingdoms.io", + "clientHubUrl": "wss://beta.starkingdoms.io/hub", "apiBaseUrl": "https://api.beta.starkingdoms.io", "isProduction": false, "isDevelopment": false, @@ -18,7 +18,7 @@ }, "stk-unstable": { "name": "StarKingdoms Unstable", - "clientHubUrl": "wss://unstable.starkingdoms.io", + "clientHubUrl": "wss://unstable.starkingdoms.io/hub", "apiBaseUrl": "https://api.unstable.starkingdoms.io", "isProduction": false, "isDevelopment": false, @@ -26,7 +26,7 @@ }, "local-dev": { "name": "Local (Development)", - "clientHubUrl": "ws://localhost:3000", + "clientHubUrl": "ws://localhost:3000/hub", "apiBaseUrl": "http://localhost:8080", "isProduction": false, "isDevelopment": true,