From 9be3f9147befad8a98a2c739bdb4e19d5e55c534 Mon Sep 17 00:00:00 2001 From: rouggy Date: Thu, 23 Jul 2026 19:02:24 +0200 Subject: [PATCH] chore: regenerate wails bindings (serial CW keyer config fields) --- frontend/wailsjs/go/models.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index e59a898..60e40ee 100644 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -3035,6 +3035,9 @@ export namespace main { autospace: boolean; use_ptt: boolean; serial_echo: boolean; + type: string; + cw_key_line: string; + cw_invert: boolean; engine: string; esc_clears_call: boolean; send_on_type: boolean; @@ -3061,6 +3064,9 @@ export namespace main { this.autospace = source["autospace"]; this.use_ptt = source["use_ptt"]; this.serial_echo = source["serial_echo"]; + this.type = source["type"]; + this.cw_key_line = source["cw_key_line"]; + this.cw_invert = source["cw_invert"]; this.engine = source["engine"]; this.esc_clears_call = source["esc_clears_call"]; this.send_on_type = source["send_on_type"];