From 48c448e6f3838ad9bf1687e97bb602fff8a8405c Mon Sep 17 00:00:00 2001 From: Gregory Salaun Date: Sat, 8 Aug 2026 17:35:53 +0200 Subject: [PATCH] chore(bindings): regenerate the Wails TS bindings Stale since the 0.23.9 work: SetOpsLogQSLReceived, the backup keep_all flag, the award PRIMARY search prefix and the default QSL message were all missing from the generated bindings. --- frontend/wailsjs/go/main/App.d.ts | 2 ++ frontend/wailsjs/go/main/App.js | 4 ++++ frontend/wailsjs/go/models.ts | 6 ++++++ 3 files changed, 12 insertions(+) diff --git a/frontend/wailsjs/go/main/App.d.ts b/frontend/wailsjs/go/main/App.d.ts index 09ac771..0e0584b 100644 --- a/frontend/wailsjs/go/main/App.d.ts +++ b/frontend/wailsjs/go/main/App.d.ts @@ -949,6 +949,8 @@ export function SetDVKLabel(arg1:number,arg2:string):Promise; export function SetKenwoodKeySpeed(arg1:number):Promise; +export function SetOpsLogQSLReceived(arg1:number,arg2:boolean):Promise; + export function SetPassphrase(arg1:string):Promise; export function SetScpEnabled(arg1:boolean):Promise; diff --git a/frontend/wailsjs/go/main/App.js b/frontend/wailsjs/go/main/App.js index 8a3465f..5a09952 100644 --- a/frontend/wailsjs/go/main/App.js +++ b/frontend/wailsjs/go/main/App.js @@ -1846,6 +1846,10 @@ export function SetKenwoodKeySpeed(arg1) { return window['go']['main']['App']['SetKenwoodKeySpeed'](arg1); } +export function SetOpsLogQSLReceived(arg1, arg2) { + return window['go']['main']['App']['SetOpsLogQSLReceived'](arg1, arg2); +} + export function SetPassphrase(arg1) { return window['go']['main']['App']['SetPassphrase'](arg1); } diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index 860c88f..23afb58 100644 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -315,6 +315,7 @@ export namespace award { pattern: string; leading_str?: string; trailing_str?: string; + prefix?: string; dynamic?: boolean; one_ref_per_qso?: boolean; or_rules?: OrRule[]; @@ -356,6 +357,7 @@ export namespace award { this.pattern = source["pattern"]; this.leading_str = source["leading_str"]; this.trailing_str = source["trailing_str"]; + this.prefix = source["prefix"]; this.dynamic = source["dynamic"]; this.one_ref_per_qso = source["one_ref_per_qso"]; this.or_rules = this.convertValues(source["or_rules"], OrRule); @@ -1895,6 +1897,7 @@ export namespace main { rotation: number; zip: boolean; every_exit: boolean; + keep_all: boolean; last_backup_at: string; default_folder: string; @@ -1909,6 +1912,7 @@ export namespace main { this.rotation = source["rotation"]; this.zip = source["zip"]; this.every_exit = source["every_exit"]; + this.keep_all = source["keep_all"]; this.last_backup_at = source["last_backup_at"]; this.default_folder = source["default_folder"]; } @@ -2637,6 +2641,7 @@ export namespace main { subject: string; body: string; auto_send: boolean; + default_message: string; static createFrom(source: any = {}) { return new QSLEmailTemplates(source); @@ -2647,6 +2652,7 @@ export namespace main { this.subject = source["subject"]; this.body = source["body"]; this.auto_send = source["auto_send"]; + this.default_message = source["default_message"]; } } export class QSLFontInfo {