Fixed config

This commit is contained in:
Sviatoslav Tsariov Yurievich 2025-03-21 00:43:06 +03:00
parent 0b2af38fcb
commit 8fb7c32e2b
6 changed files with 5 additions and 5 deletions

View File

@ -98,7 +98,7 @@ body {
<script src="Talkpal.js"></script> <script src="Talkpal.js"></script>
<script> <script>
const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"Talkpal","experimentalVK":true,"fileSizes":{"Talkpal.pck":6396880,"Talkpal.wasm":43016933},"focusCanvas":true,"gdextensionLibs":[],"serviceWorker":"Talkpal.service.worker.js"}; const GODOT_CONFIG = {"args":[],"canvasResizePolicy":2,"ensureCrossOriginIsolationHeaders":true,"executable":"Talkpal","experimentalVK":true,"fileSizes":{"Talkpal.pck":6396960,"Talkpal.wasm":43016933},"focusCanvas":true,"gdextensionLibs":[],"serviceWorker":"Talkpal.service.worker.js"};
const GODOT_THREADS_ENABLED = false; const GODOT_THREADS_ENABLED = false;
const engine = new Engine(GODOT_CONFIG); const engine = new Engine(GODOT_CONFIG);

Binary file not shown.

View File

@ -4,7 +4,7 @@
// Incrementing CACHE_VERSION will kick off the install event and force // Incrementing CACHE_VERSION will kick off the install event and force
// previously cached resources to be updated from the network. // previously cached resources to be updated from the network.
/** @type {string} */ /** @type {string} */
const CACHE_VERSION = '1742506413|134281742'; const CACHE_VERSION = '1742506956|677747127';
/** @type {string} */ /** @type {string} */
const CACHE_PREFIX = 'Talkpal-sw-cache-'; const CACHE_PREFIX = 'Talkpal-sw-cache-';
const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION; const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION;

View File

@ -1,7 +1,7 @@
class_name EventHandlerWS class_name EventHandlerWS
extends EventHandler extends EventHandler
const BACKEND_URL = "http://localhost:5004/socket.io" const BACKEND_URL = "http://192.168.0.147:5000/socket.io"
var _room_id: String = "" var _room_id: String = ""
var _jwt_token: String = "" var _jwt_token: String = ""
var _client: SocketIOClient var _client: SocketIOClient

View File

@ -2,7 +2,7 @@
extends AbstractReservationRepo extends AbstractReservationRepo
class_name ReservationRepoHTTP class_name ReservationRepoHTTP
const BASE_URL = "http://localhost:5004" const BASE_URL = "http://192.168.1.178:5000"
const RESERVATION_ENDPOINT = "/reservation/" const RESERVATION_ENDPOINT = "/reservation/"
const HEALTH_ENDPOINT = "/health/" const HEALTH_ENDPOINT = "/health/"

View File

@ -1,7 +1,7 @@
extends AbstractRoomRepo extends AbstractRoomRepo
class_name RoomRepoHTTP class_name RoomRepoHTTP
const BASE_URL = "http://localhost:5004" const BASE_URL = "http://192.168.1.178:5000"
signal rooms_loaded(rooms: Array[RoomEntity]) signal rooms_loaded(rooms: Array[RoomEntity])
signal request_failed(error_message: String) signal request_failed(error_message: String)