fix: bump version to 1.0.9.4, update changelog

This commit is contained in:
kitbyte
2026-07-22 00:03:38 +03:00
parent e7c7beb621
commit 643c8f8b62
38 changed files with 788 additions and 365 deletions
-5
View File
@@ -49,8 +49,6 @@ export interface InstalledAppSummary {
displayName: string;
gameId?: string | null;
titleId?: string | null;
location: string;
alternateLocations: string[];
imageUrl?: string | null;
platformLastPlayedTimestamp?: number | null;
platformTotalPlaytimeMinutes?: number | null;
@@ -108,7 +106,6 @@ export interface TrainerSummary {
export interface TrainerMetaPayload {
session: {
instanceId: string;
accessToken?: string;
};
trainer: TrainerSummary;
schema: {
@@ -193,7 +190,6 @@ export type HelloMessage = MessageEnvelope<
{
client: 'mobile-web';
clientVersion: string;
pairingToken?: string;
capabilities: {
supportsDeltaValues: boolean;
supportsTrainerSwitch: boolean;
@@ -236,4 +232,3 @@ export type IncomingMessage =
| ErrorMessage;
export type OutgoingMessage = HelloMessage | SetValueMessage | RemoteCommandMessage;
+2 -2
View File
@@ -4,10 +4,10 @@
"serverVersion": "0.2.0-wand",
"defaultRemoteHost": "0.0.0.0",
"defaultRemotePort": 3223,
"devServerPorts": [4173, 5173],
"portScanRange": 30,
"basePath": "/remote/",
"assetsPath": "/remote/assets/",
"webSocketPath": "/remote/ws",
"healthPath": "/remote/api/health",
"installedAppsPath": "/remote/api/installed-apps"
"healthPath": "/remote/api/health"
}