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>
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 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
// previously cached resources to be updated from the network.
/** @type {string} */
const CACHE_VERSION = '1742506413|134281742';
const CACHE_VERSION = '1742506956|677747127';
/** @type {string} */
const CACHE_PREFIX = 'Talkpal-sw-cache-';
const CACHE_NAME = CACHE_PREFIX + CACHE_VERSION;

View File

@ -1,7 +1,7 @@
class_name EventHandlerWS
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 _jwt_token: String = ""
var _client: SocketIOClient

View File

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

View File

@ -1,7 +1,7 @@
extends AbstractRoomRepo
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 request_failed(error_message: String)