From 14c87f7fa9d4acd5cf8536884eabbf3c5ce2f45a Mon Sep 17 00:00:00 2001 From: rouggy Date: Sat, 18 Jul 2026 21:53:44 +0200 Subject: [PATCH] chore: regenerate Wails bindings for GetQSORate / QSORate --- frontend/wailsjs/go/main/App.d.ts | 2 ++ frontend/wailsjs/go/main/App.js | 4 ++++ frontend/wailsjs/go/models.ts | 14 ++++++++++++++ 3 files changed, 20 insertions(+) diff --git a/frontend/wailsjs/go/main/App.d.ts b/frontend/wailsjs/go/main/App.d.ts index b9883ba..2f13437 100644 --- a/frontend/wailsjs/go/main/App.d.ts +++ b/frontend/wailsjs/go/main/App.d.ts @@ -382,6 +382,8 @@ export function GetQSLDefaults():Promise; export function GetQSO(arg1:number):Promise; +export function GetQSORate():Promise; + export function GetRotatorHeading():Promise; export function GetRotatorSettings():Promise; diff --git a/frontend/wailsjs/go/main/App.js b/frontend/wailsjs/go/main/App.js index 91a152c..f420045 100644 --- a/frontend/wailsjs/go/main/App.js +++ b/frontend/wailsjs/go/main/App.js @@ -722,6 +722,10 @@ export function GetQSO(arg1) { return window['go']['main']['App']['GetQSO'](arg1); } +export function GetQSORate() { + return window['go']['main']['App']['GetQSORate'](); +} + export function GetRotatorHeading() { return window['go']['main']['App']['GetRotatorHeading'](); } diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index 1d7bf17..11d9614 100644 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -2329,6 +2329,20 @@ export namespace main { this.pickable = source["pickable"]; } } + export class QSORate { + last10: number; + last60: number; + + static createFrom(source: any = {}) { + return new QSORate(source); + } + + constructor(source: any = {}) { + if ('string' === typeof source) source = JSON.parse(source); + this.last10 = source["last10"]; + this.last60 = source["last60"]; + } + } export class RotatorHeading { enabled: boolean; ok: boolean;