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 {