From 422ff362c3156766a61a0a0b40513e8238ab7439 Mon Sep 17 00:00:00 2001 From: Mikhail Kiselev Date: Tue, 10 Feb 2026 23:39:02 +0300 Subject: [PATCH] chore: update wails bindings --- frontend/wailsjs/go/app/App.d.ts | 2 ++ frontend/wailsjs/go/app/App.js | 4 ++++ frontend/wailsjs/go/models.ts | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/frontend/wailsjs/go/app/App.d.ts b/frontend/wailsjs/go/app/App.d.ts index b41ef32..a38463e 100755 --- a/frontend/wailsjs/go/app/App.d.ts +++ b/frontend/wailsjs/go/app/App.d.ts @@ -53,6 +53,8 @@ export function RestartApp():Promise; export function ResumeMeeting():Promise; +export function SaveWindowPosition():Promise; + export function SelectCustomSound(arg1:string):Promise; export function SkipSpeaker():Promise; diff --git a/frontend/wailsjs/go/app/App.js b/frontend/wailsjs/go/app/App.js index ead6f66..fbfe9b3 100755 --- a/frontend/wailsjs/go/app/App.js +++ b/frontend/wailsjs/go/app/App.js @@ -102,6 +102,10 @@ export function ResumeMeeting() { return window['go']['app']['App']['ResumeMeeting'](); } +export function SaveWindowPosition() { + return window['go']['app']['App']['SaveWindowPosition'](); +} + export function SelectCustomSound(arg1) { return window['go']['app']['App']['SelectCustomSound'](arg1); } diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index fe7a1f1..73e5378 100755 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -327,6 +327,8 @@ export namespace models { theme: string; windowWidth: number; windowFullHeight: boolean; + windowX: number; + windowY: number; static createFrom(source: any = {}) { return new Settings(source); @@ -345,6 +347,8 @@ export namespace models { this.theme = source["theme"]; this.windowWidth = source["windowWidth"]; this.windowFullHeight = source["windowFullHeight"]; + this.windowX = source["windowX"]; + this.windowY = source["windowY"]; } } export class SpeakerInfo {