chore: release v0.23.1

This commit is contained in:
2026-08-02 20:29:30 +02:00
parent 72f692aa04
commit 3da1d71323
8 changed files with 81 additions and 17 deletions
+4
View File
@@ -2904,6 +2904,8 @@ export namespace main {
worked_call: boolean;
new_county: boolean;
new_pota: boolean;
new_pfx: boolean;
pfx?: string;
static createFrom(source: any = {}) {
return new SpotStatus(source);
@@ -2920,6 +2922,8 @@ export namespace main {
this.worked_call = source["worked_call"];
this.new_county = source["new_county"];
this.new_pota = source["new_pota"];
this.new_pfx = source["new_pfx"];
this.pfx = source["pfx"];
}
}
export class StartupStatus {