[refactor](workspace): complete remaining architecture phases

Bundle all pending repository updates, including plugin context de-globalization, runtime hardening, config validation, boundary tests, and supporting docs/scripts.

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-02-12 22:27:36 +01:00
parent 144afbae8e
commit 4b34a39745
27 changed files with 684 additions and 210 deletions
+4 -2
View File
@@ -62,7 +62,7 @@ pub enum RigMode {
impl Default for RigStatus {
fn default() -> Self {
Self {
freq: Freq { hz: 144_300_000 }, // 2m calling frequency
freq: Freq { hz: 144_300_000 }, // 2m calling frequency
mode: RigMode::USB,
tx_en: false,
vfo: None,
@@ -136,7 +136,9 @@ impl RigState {
state.server_version = version;
state.server_latitude = latitude;
state.server_longitude = longitude;
state.status.freq = Freq { hz: initial_freq_hz };
state.status.freq = Freq {
hz: initial_freq_hz,
};
state.status.mode = initial_mode;
state
}