chore: release v0.20.8

This commit is contained in:
2026-07-21 21:48:23 +02:00
parent 1b5b0c2e90
commit 968da5488c
15 changed files with 393 additions and 55 deletions
+2
View File
@@ -630,6 +630,8 @@ export function OperatingDefaultForBand(arg1:string):Promise<operating.BandDefau
export function PGXLSetFanMode(arg1:string):Promise<void>;
export function PGXLSetOperate(arg1:boolean):Promise<void>;
export function PickADIFMonitorFile():Promise<string>;
export function PickAudioFolder():Promise<string>;
+4
View File
@@ -1214,6 +1214,10 @@ export function PGXLSetFanMode(arg1) {
return window['go']['main']['App']['PGXLSetFanMode'](arg1);
}
export function PGXLSetOperate(arg1) {
return window['go']['main']['App']['PGXLSetOperate'](arg1);
}
export function PickADIFMonitorFile() {
return window['go']['main']['App']['PickADIFMonitorFile']();
}
+6
View File
@@ -2583,6 +2583,8 @@ export namespace main {
port: number;
has_elevation: boolean;
rotator_num: number;
transport: string;
com_port: string;
static createFrom(source: any = {}) {
return new RotatorSettings(source);
@@ -2596,6 +2598,8 @@ export namespace main {
this.port = source["port"];
this.has_elevation = source["has_elevation"];
this.rotator_num = source["rotator_num"];
this.transport = source["transport"];
this.com_port = source["com_port"];
}
}
export class SecretStatus {
@@ -3208,6 +3212,7 @@ export namespace powergenius {
state?: string;
fan_mode?: string;
temperature: number;
operate: boolean;
static createFrom(source: any = {}) {
return new Status(source);
@@ -3221,6 +3226,7 @@ export namespace powergenius {
this.state = source["state"];
this.fan_mode = source["fan_mode"];
this.temperature = source["temperature"];
this.operate = source["operate"];
}
}