-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathroadmap.html
More file actions
1206 lines (1184 loc) · 74.5 KB
/
Copy pathroadmap.html
File metadata and controls
1206 lines (1184 loc) · 74.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Roadmap — AetherSDR</title>
<meta name="description" content="What AetherSDR has shipped, what is being built now, and why new radio families are deliberately paused until the headless engine split is finished." />
<link rel="canonical" href="https://www.aethersdr.com/roadmap" />
<meta name="theme-color" content="#060b13" />
<!-- Open Graph -->
<meta property="og:type" content="article" />
<meta property="og:site_name" content="AetherSDR" />
<meta property="og:url" content="https://www.aethersdr.com/roadmap" />
<meta property="og:title" content="AetherSDR — Roadmap" />
<meta property="og:description" content="The headless engine split, what it unlocks, and why new radio families are paused until it lands." />
<meta property="og:image" content="https://www.aethersdr.com/assets/img/og-image.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="AetherSDR's 3D stacked-trace panadapter and waterfall over the 40m band, with the full control surface." />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AetherSDR — Roadmap" />
<meta name="twitter:description" content="The headless engine split, what it unlocks, and why new radio families are paused until it lands." />
<meta name="twitter:image" content="https://www.aethersdr.com/assets/img/og-image.jpg" />
<link rel="icon" type="image/png" href="assets/img/logo-96.png" />
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
<link rel="stylesheet" href="styles.css?v=14" />
<!-- Both views describe the same work. With no JS the switcher cannot route,
so reveal both rather than leave the page showing one empty panel. -->
<noscript>
<style>
.rm-views { display: none; }
.rm-view[hidden] { display: block !important; }
.rm-view + .rm-view { margin-top: 34px; }
</style>
</noscript>
</head>
<body>
<!-- ===================== NAV ===================== -->
<header class="nav">
<div class="wrap nav-inner">
<a class="brand" href="index.html">
<img src="assets/img/logo-96.png" alt="AetherSDR logo" />
<span>Aether<b>SDR</b></span>
</a>
<nav class="nav-links">
<a href="index.html#features">Features</a>
<a href="index.html#built">How it's built</a>
<a href="lineage.html">Lineage</a>
<a href="index.html#partners">Partners</a>
<a href="index.html#contribute">Contribute</a>
<a href="index.html#sponsor">Sponsor</a>
<div class="nav-item">
<button class="nav-dd-toggle" type="button" aria-haspopup="true">
Support
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>
</button>
<div class="nav-dd" role="menu">
<a role="menuitem" href="https://lu5dx.github.io/AetherSDRDocsEnglish/latest/" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.7" stroke-linejoin="round"><path d="M4 5a2 2 0 0 1 2-2h9l5 5v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"/><path d="M8 10h8M8 14h8"/></svg>
User Manual
</a>
<a role="menuitem" href="https://www.youtube.com/@AetherSDR" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.7" stroke-linejoin="round"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="M10 9l5 3-5 3z"/></svg>
Video tutorials
</a>
<a role="menuitem" href="https://discord.gg/gscnyDqHWc" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="fill:var(--cyan)" aria-hidden="true"><path d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.198.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"/></svg>
Discord community
</a>
<a role="menuitem" href="https://github.com/aethersdr/AetherSDR/issues/new/choose" target="_blank" rel="noopener">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"/><path d="M12 2v3M12 19v3M2 12h3M19 12h3M5 5l2 2M17 17l2 2M19 5l-2 2M7 17l-2 2"/></svg>
File an issue on GitHub
</a>
</div>
</div>
<a href="roadmap.html" class="is-active" aria-current="page">Roadmap</a>
<a href="blog.html" class="nav-keep">Blog</a>
</nav>
<div class="nav-cta">
<a class="btn btn-primary btn-sm" href="index.html#download">Download</a>
</div>
</div>
</header>
<a id="top"></a>
<main>
<section class="rm-hero" id="roadmap">
<div class="rm-wide">
<header class="section-head" style="text-align:left;max-width:840px;margin-inline:0">
<span class="eyebrow"><span class="dot"></span> Roadmap</span>
<h1>One engine, <span class="grad-text">many front ends</span></h1>
<p class="lede">AetherSDR is being split in two: an engine that owns the radio, and an
interface that talks to it over a versioned protocol. Everything here either builds toward
that split or waits for it. Phases are an order of work, not dates — a piece ships when it
is right rather than when a calendar says so.</p>
</header>
<div class="rm-bar-top">
<div class="rm-views" role="tablist" aria-label="Roadmap views">
<button class="rm-view-btn" data-view="release" role="tab" aria-selected="true" aria-controls="view-release" id="tab-release" type="button">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linejoin="round" aria-hidden="true"><rect x="3" y="4" width="7" height="16" rx="1.5"/><rect x="14" y="4" width="7" height="10" rx="1.5"/></svg>
Release view
</button>
<button class="rm-view-btn" data-view="progress" role="tab" aria-selected="false" aria-controls="view-progress" id="tab-progress" type="button">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" aria-hidden="true"><path d="M4 7h9M4 12h14M4 17h6"/></svg>
Progress Tracker
</button>
</div>
</div>
<!-- ============================ RELEASE VIEW ============================ -->
<!-- What has actually shipped. The progress view is the forward-looking
one; this view never speculates. -->
<div class="rm-view" data-view="release" id="view-release" role="tabpanel" aria-labelledby="tab-release">
<div class="rm-relbar">
<button class="rm-mini" type="button" data-cats="open">
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
Expand all categories
</button>
<button class="rm-mini" type="button" data-cats="close">
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M18 15l-6-6-6 6"/></svg>
Collapse all categories
</button>
<span class="rm-count">10 releases · 57 entries · newest on the right</span>
</div>
<div class="rm-rels">
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.7.1</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 2 Jul 2026</span>
<span class="rm-rel-sub">The 3D stacked-trace spectrum</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Spectrum & Display</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>3D stacked-trace spectrum</b>
<p>Perspective FFT history with floor-anchored ridges, drawn on the GPU.</p>
</div>
<div class="rm-feat">
<b>60 fps panadapters</b>
<p>The spectrum path reaches 60 frames per second.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Receive & Audio</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>In-process NVIDIA BNR</b>
<p>Broadband noise reduction without a separate helper process.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Transmit & CW</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Transmit meter readouts</b>
<p>Numeric readouts alongside the transmit meters.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.7.2</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 12 Jul 2026</span>
<span class="rm-rel-sub">An MCP server, the backend seam, BNR on RTX 50-series</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Receive & Audio</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>BNR on RTX 50-series</b>
<p>NVIDIA broadband noise reduction running on the current generation.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Data Modes & Spotting</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>D-STAR over ThumbDV</b>
<p>Local digital voice through a ThumbDV dongle.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Automation & Agents</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>An MCP server for AI agents</b>
<p>The application exposes its own actions to agents over MCP.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Core & Platform</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The aetherd radio-backend seam</b>
<p>The first cut of the interface every radio now sits behind.</p>
</div>
<div class="rm-feat">
<b>Searchable Radio Setup</b>
<p>Settings can be found by name rather than by hunting pages.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.7.3</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 19 Jul 2026</span>
<span class="rm-rel-sub">Cross-needle metering and operating polish</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Radio, display and slice fidelity</b>
<p>State follows the radio more closely across display and slice controls.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Cross-needle meter</b>
<p>Forward power, reflected power and SWR read from one instrument.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.7.4</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 26 Jul 2026</span>
<span class="rm-rel-sub">Demo mode, on-device speech-to-text, experimental Hermes-Lite 2</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<span class="rm-flag">Experimental</span>
<b>Experimental Hermes-Lite 2</b>
<p>The first radio family behind the new backend boundary.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Receive & Audio</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Copy Assist</b>
<p>On-device speech-to-text over received audio. Nothing leaves the machine.</p>
</div>
<div class="rm-feat">
<b>NR2 spectral noise reduction</b>
<p>A second noise-reduction stage alongside the existing ones.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Core & Platform</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The radio boundary</b>
<p>Every radio moves behind one internal interface, which is what makes a headless engine possible.</p>
</div>
<div class="rm-feat">
<b>Demo mode</b>
<p>A synthetic radio with spectrum and audio, so the application can be explored with no hardware at all.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.8.1</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 2 Aug 2026</span>
<span class="rm-rel-sub">Hermes-Lite 2 grows up, settings move to SQLite</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Hermes-Lite 2 grows up</b>
<p>The experimental backend becomes usable day to day.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Data Modes & Spotting</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>TCI PTT routing fixed</b>
<p>Transmit requests from TCI clients reach the right place.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Core & Platform</span><span class="rm-cat-n">3 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The client settings store moves to SQLite</b>
<p>A durable store replacing the previous file format.</p>
<span class="rm-ref">RFC #4603</span>
</div>
<div class="rm-feat">
<b>The interface follows what the radio can do</b>
<p>Controls are gated on capabilities the radio reports rather than on its model name.</p>
</div>
<div class="rm-feat">
<b>Qt 6.8 across every build</b>
<p>One toolkit version on all three platforms.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.8.2</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 9 Aug 2026</span>
<span class="rm-rel-sub">A third radio family: networked Icom</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Networked Icom</b>
<p>A third radio family, starting with the IC-705 over its network interface.</p>
</div>
<div class="rm-feat">
<b>Notches and frequency calibration for Hermes-Lite 2</b>
<p>Manual notches, plus calibration of the radio's frequency reference.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Transmit & CW</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>CW timing to spec</b>
<p>Element and gap timing measured against the specification rather than by feel.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>SPE Expert amplifiers</b>
<p>Control and status for the SPE Expert range.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Data Modes & Spotting</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Three new spot overlays</b>
<p>More sources drawn over the panadapter.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.8.3</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 16 Aug 2026</span>
<span class="rm-rel-sub">The workspace canvas, an Icom command scheduler, a real BFO</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">3 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>A CI-V command scheduler</b>
<p>Commands to Icom radios are paced rather than queued blindly.</p>
<span class="rm-ref">#5006</span>
</div>
<div class="rm-feat">
<b>IC-7300MK2 remote controls and meters</b>
<p>Controls, metering and certification for the MK2.</p>
<span class="rm-ref">#4981</span>
</div>
<div class="rm-feat">
<b>Ask the radio for its own CI-V address</b>
<p>The address is read from the radio instead of configured by hand.</p>
<span class="rm-ref">#4991</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Spectrum & Display</span><span class="rm-cat-n">3 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The workspace canvas</b>
<p>Panes arranged freely on a canvas, with persistence and a migration from the Classic layout.</p>
<span class="rm-ref">#4900</span>
</div>
<div class="rm-feat">
<b>Named workspaces</b>
<p>Full recall, profile bindings and pop-out import.</p>
<span class="rm-ref">#4964</span>
</div>
<div class="rm-feat">
<b>Additional canvas windows</b>
<p>More than one canvas window at a time.</p>
<span class="rm-ref">#4971</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Receive & Audio</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>A noise blanker and a real BFO for Hermes-Lite 2</b>
<p>Host-side noise blanking, and a BFO that places the passband where the marker is.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Transmit & CW</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The transmit voice chain moves to 48 kHz float</b>
<p>Higher rate and float precision through the whole voice path.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>VK3AMP amplifiers</b>
<p>Support for the VK3AMP amplifier family.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.8.4</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 22 Aug 2026</span>
<span class="rm-rel-sub">Evidence-backed Icom, client-timed HL2 CW, faster maps</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>The radio's own mode vocabulary reaches the UI</b>
<p>Modes are read from the radio rather than mapped onto an assumed list.</p>
<span class="rm-ref">#5106</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Spectrum & Display</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Faster PSK Reporter maps</b>
<p>The reception map redraws noticeably faster.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Receive & Audio</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Steadier audio and noise reduction</b>
<p>Fixes across the receive chain and the noise-reduction stages.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Transmit & CW</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>CI-V CW text keying</b>
<p>Text keying over CI-V, sent as CWK.</p>
<span class="rm-ref">#5113</span>
</div>
<div class="rm-feat">
<b>Client-timed CW on Hermes-Lite 2</b>
<p>Element timing is generated on the computer, where the keyer's schedule is known.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Steadier controllers, MIDI and TCI</b>
<p>Control-surface and TCI handling hold their state more reliably.</p>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel">
<div class="rm-rel-head">
<span class="v">v26.9.1</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 29 Aug 2026</span>
<span class="rm-rel-sub">Globe maps, antenna control and operator polish</span>
</div>
<div class="rm-cats">
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Radio-authoritative memories and signalling</b>
<p>Memory contents and signalling follow the radio rather than a local guess.</p>
</div>
<div class="rm-feat">
<b>More accurate IC-9700 controls and telemetry</b>
<p>Controls and readouts match what the radio actually reports.</p>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Spectrum & Display</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Optional globe projection for PSK Reporter</b>
<p>The reception map can be drawn on a globe instead of a flat projection.</p>
<span class="rm-ref">#5273</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Green Heron Everyware antenna control</b>
<p>Rotator control from the station, alongside the existing peripherals.</p>
<span class="rm-ref">#5209</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Data Modes & Spotting</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>RTTY decoder sensitivity</b>
<p>The decoder copies weaker signals than it previously would.</p>
<span class="rm-ref">#5132</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Core & Platform</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>System Info gains Threads and Logs tabs</b>
<p>Diagnostics for support, without leaving the application.</p>
<span class="rm-ref">#5246</span>
</div>
</div>
</details>
</div>
</div>
<div class="rm-rel is-latest">
<div class="rm-rel-head">
<span class="v">v26.9.2</span>
<span class="rm-rel-badge"><svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12M7 12l5 5 5-5M5 21h14"/></svg>Released, 6 Sep 2026</span>
<span class="rm-rel-sub">New receivers, multi-band skimming and station control</span>
</div>
<div class="rm-cats">
<details open class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Radios</span><span class="rm-cat-n">3 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<span class="rm-flag">Experimental</span>
<b>Experimental ANAN-G2 reception</b>
<p>openHPSDR Protocol 2 discovery, a single receive path, spectrum and audio, with live tuning and zoom. Receive only for now.</p>
<span class="rm-ref">#5143</span>
</div>
<div class="rm-feat">
<span class="rm-flag">Experimental</span>
<b>Experimental RTL-SDR USB reception</b>
<p>A single slice and panadapter with AM, FM, SSB and CW demodulation, on builds carrying the RTL libraries.</p>
<span class="rm-ref">#4862</span>
</div>
<div class="rm-feat">
<b>Icom identified from the wire</b>
<p>Model identification and optional wake on connect replace reliance on an editable network nickname.</p>
<span class="rm-ref">#5438</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-all">
<summary>
<span><span class="rm-cat-name">Transmit & CW</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Recordings capture sent CW</b>
<p>Client-side recordings capture the keyed signal instead of microphone input.</p>
<span class="rm-ref">#5278</span>
</div>
<div class="rm-feat">
<b>CWX sidetone follows the keyer</b>
<p>The sidetone tracks the keyer's scheduled edges rather than drifting from them.</p>
<span class="rm-ref">#5129</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-iface">
<summary>
<span><span class="rm-cat-name">Station Control</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>SPE floating front panel</b>
<p>A live amplifier LCD mirror with guarded front-panel keys.</p>
<span class="rm-ref">#5393</span>
</div>
<div class="rm-feat">
<b>TelePost LP-100A wattmeter</b>
<p>Readings over local serial or a serial-to-network proxy. Read-only in this first version.</p>
<span class="rm-ref">#5320</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-engine">
<summary>
<span><span class="rm-cat-name">Data Modes & Spotting</span><span class="rm-cat-n">2 entries</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Four concurrent TCI DAX IQ subscriptions</b>
<p>Several CW skimmers through one TCI server. Receivers on one panadapter share its IQ stream.</p>
<span class="rm-ref">#4951</span>
</div>
<div class="rm-feat">
<b>KiwiSDR directory from the CDN mirror</b>
<p>The public-receiver browser reads its directory from the AetherSDR mirror, and stale data is advisory rather than fatal.</p>
<span class="rm-ref">#5445, #5449</span>
</div>
</div>
</details>
<details class="rm-cat rm-a-radio">
<summary>
<span><span class="rm-cat-name">Core & Platform</span><span class="rm-cat-n">1 entry</span></span>
<svg class="rm-cat-chev" width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
</summary>
<div class="rm-feats">
<div class="rm-feat">
<b>Headless engine and packaging</b>
<p>Further work toward the engine that runs with no interface attached.</p>
</div>
</div>
</details>
</div>
</div>
</div>
<div class="rm-scrollnote" style="display:block;border:0;padding-left:0">Scroll sideways for earlier releases — the full history is in the changelog.</div>
</div>
<!-- ============================ PROGRESS VIEW =========================== -->
<div class="rm-view" data-view="progress" id="view-progress" role="tabpanel" aria-labelledby="tab-progress" hidden>
<div class="rm-relbar">
<button class="rm-mini" type="button" data-steps="open">
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"/></svg>
Expand all deliverables
</button>
<button class="rm-mini" type="button" data-steps="close">
<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M18 15l-6-6-6 6"/></svg>
Collapse all
</button>
<span class="rm-count">16 deliverables · 30 steps</span>
</div>
<div class="rm-keys" style="margin-bottom:14px">
<span class="k rm-a-radio"><i></i>Radios</span>
<span class="k rm-a-engine"><i></i>Engine</span>
<span class="k rm-a-iface"><i></i>Interfaces</span>
<span class="k rm-a-all"><i></i>Across everything</span>
<span class="rm-pill s-released">Released</span>
<span class="rm-pill s-committed">Committed</span>
<span class="rm-pill s-tentative">Tentative</span>
<span class="rm-pill s-paused">Paused</span>
</div>
<div class="rm-chart">
<div class="rm-chart-inner">
<div class="rm-grid-row rm-head">
<div class="rm-corner"><span>Deliverable</span></div>
<div class="rm-track">
<div class="rm-ph"><b>Shipped</b><span>available now</span></div>
<div class="rm-ph is-now"><b>Building now</b><span>in progress</span></div>
<div class="rm-ph"><b>Next</b><span>after the above</span></div>
<div class="rm-ph"><b>Exploring</b><span>designed before built</span></div>
</div>
</div>
<div class="rm-grid-row"><div class="rm-lane rm-a-radio">Radios</div></div>
<details class="rm-deliv rm-a-radio">
<summary>
<div class="rm-label">
<div class="rm-l-top"><b>One interface for every radio</b><span class="rm-pill s-released">Released</span></div>
<span class="d">Every radio sits behind one internal interface.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 1">shipped</div></div>
</summary>
</details>
<details class="rm-deliv rm-a-radio">
<summary>
<div class="rm-label">
<div class="rm-l-top"><b>Hermes-Lite 2</b><span class="rm-pill s-released">Released</span></div>
<span class="d">Receive and transmit, signal chain on your computer.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 1">shipped</div></div>
</summary>
</details>
<details class="rm-deliv rm-a-radio">
<summary>
<div class="rm-label">
<div class="rm-l-top"><b>Networked Icom</b><span class="rm-pill s-released">Released</span></div>
<span class="d">Capabilities read from the radio rather than assumed.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 1">shipped</div></div>
</summary>
</details>
<details class="rm-deliv rm-a-radio">
<summary>
<div class="rm-label">
<div class="rm-l-top"><b>ANAN-G2 and RTL-SDR receive</b><span class="rm-pill s-released">Released</span></div>
<span class="d">Receive paths for two more families.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 1">shipped</div></div>
</summary>
</details>
<details class="rm-deliv rm-a-radio">
<summary>
<div class="rm-label">
<div class="rm-l-top"><svg class="rm-dchev" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg><b>New radio families</b><span class="rm-pill s-paused">Paused</span><span class="rm-steps-n">4 steps</span></div>
<span class="d">Four written or requested, held until the split lands.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg is-hold" style="grid-column:2/span 3">paused until the split lands</div></div>
</summary>
<div class="rm-sub">
<div class="rm-slabel">ColibriNANO — written, in review</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 3">paused</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Yaesu FT-991 — written, in review</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 3">paused</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Expert Electronics SunSDR — requested</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 3">paused</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">ADALM-Pluto — requested</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 3">paused</div></div>
</div>
</details>
<div class="rm-grid-row"><div class="rm-lane rm-a-engine">The engine</div></div>
<details class="rm-deliv rm-a-engine">
<summary>
<div class="rm-label">
<div class="rm-l-top"><b>The engine as a library</b><span class="rm-pill s-released">Released</span></div>
<span class="d">What makes a build with no interface attached possible.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 1">shipped</div></div>
</summary>
</details>
<details class="rm-deliv rm-a-engine">
<summary>
<div class="rm-label">
<div class="rm-l-top"><svg class="rm-dchev" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg><b>The control protocol</b><span class="rm-pill s-committed">Committed</span><span class="rm-steps-n">5 steps</span></div>
<span class="d">A versioned conversation between engine and interface.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:1/span 2">largely landed, finishing now</div></div>
</summary>
<div class="rm-sub">
<div class="rm-slabel">Versioned envelope and bounded codec</div>
<div class="rm-track"><div class="rm-seg is-sub is-done" style="grid-column:1/span 1">done</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Capability descriptor in the handshake</div>
<div class="rm-track"><div class="rm-seg is-sub is-done" style="grid-column:1/span 1">done</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Typed resources, snapshots and events</div>
<div class="rm-track"><div class="rm-seg is-sub is-done" style="grid-column:1/span 1">done</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Session resync and bounded coalescing</div>
<div class="rm-track"><div class="rm-seg is-sub is-done" style="grid-column:1/span 1">done</div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">An honest capability descriptor before it is frozen</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
</details>
<details open class="rm-deliv rm-a-engine">
<summary>
<div class="rm-label">
<div class="rm-l-top"><svg class="rm-dchev" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg><b>Transmit arbitration and authorisation</b><span class="rm-pill s-committed">Committed</span><span class="rm-steps-n">5 steps</span></div>
<span class="d">One client may key the transmitter; each is authorised separately.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:2/span 1">in progress</div></div>
</summary>
<div class="rm-sub">
<div class="rm-slabel">Engine-owned operation and cancellation guards</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Desktop transmit paths migrated</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Per-client actor propagation</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Scheduled expiry and qualified stop</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Queued audio and wire fences</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
</details>
<div class="rm-grid-row rm-r">
<div class="rm-label" style="padding-block:2px 12px"><span class="d" style="color:var(--cyan)">Ships in the same release as the control protocol, never after it.</span></div>
<div class="rm-track" style="min-height:26px"><div class="rm-tie" style="grid-column:2/span 1"><span>same release</span></div></div>
</div>
<details class="rm-deliv rm-a-engine">
<summary>
<div class="rm-label">
<div class="rm-l-top"><svg class="rm-dchev" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg><b>Honest capability reporting</b><span class="rm-pill s-committed">Committed</span><span class="rm-steps-n">3 steps</span></div>
<span class="d">A control that stops matching the radio is worse than one plainly unavailable.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:2/span 1">in progress</div></div>
</summary>
<div class="rm-sub">
<div class="rm-slabel">Every backend announces its revisions</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">Panadapter capacity read from the radio</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">
<div class="rm-slabel">A conformance suite across every backend</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
</details>
<details class="rm-deliv rm-a-engine">
<summary>
<div class="rm-label">
<div class="rm-l-top"><svg class="rm-dchev" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg><b>One command path for every radio</b><span class="rm-pill s-committed">Committed</span><span class="rm-steps-n">3 steps</span></div>
<span class="d">Today some controls speak a FlexRadio-only dialect that other radios discard.</span>
</div>
<div class="rm-track rm-body"><div class="rm-seg" style="grid-column:2/span 2">in progress</div></div>
</summary>
<div class="rm-sub">
<div class="rm-slabel">Freeze the count so it can only shrink</div>
<div class="rm-track"><div class="rm-seg is-sub" style="grid-column:2/span 1"></div></div>
</div>
<div class="rm-sub">