forked from f4exb/sdrangel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1955 lines (1288 loc) · 76.4 KB
/
CHANGELOG
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
sdrangel (6.19.1-1) unstable; urgency=medium
* Fix stereo sound in DAB demod. PR #1150.
* Make Channel API inherit from QObject. Issue #1147
* Channel Analyzer: fixed reverse API handling and a few other things. Fixes #1144
* Metis MISO: set spectrum sink input back in GUI. Fixes #1145
* DATV Demod - Increase max RF bandwidth in GUI to 50MHz. PR #1142. Issue #1136.
* DATV Mod - Increase RF bandwidth slider to 50M. PR #1137. Issue #1136
* Spectrum markers update. PR #1141
* Pager demod: fixed typo in POCSAG. Fixes #1138
* Metis MISO: save stream and spectrum stream indices in settings. Fixes #1126
* Map feature, ADSB and AIS demods updates. PR #1135
* Do not write tail audio samples and write to sample buffer only if necessary. Issue #1132
* ValueDialZ: fixed compilation warning, Fixes #1155
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 20 Feb 2022 21:31:55 +0100
sdrangel (6.19.0-1) unstable; urgency=medium
* Map: added 3D to map feature. PR #1127
* APT demod: many updates see PR #1127
* ADS-B demod: many updates see PR #1127
* AIS: many updates see PR #1127
* AIS: remove vessels afer some idle time. Issue #1086. PR #1127
* Satellite tracker: many updates see PR #1127
* Satellite tracker: export data via API. Issue #1106. PR #1130.
* Spectrum calibration. Implements #1120
* SDRPlayV3: added transverter feature. Implemented #1125
* Spectrum markers: save .csv in Qt default writable location. Implements #1114
* Fixed removing all feature sets causing segfault. Fixes #1118
* BFM demod: added readme and link to help button.
* Fixed LIB_SUFFIX for Fedora and lib64 systems. PR #1115
* DATV Demod: Make AVCodecs cons. PR #1128
* Install debug symbols on Windows for debug builds. PR #1131
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 07 Feb 2022 20:41:51 +0100
sdrangel (6.18.1-1) unstable; urgency=medium
* APRS: implemented Mic-E decoding. PR #1108
* Spectrum: implemented annotation markers. Issue #887
* BFM Demod: fixed RDS text clearscreen. Fixes #1101
* BFM Demod: keep last message on a second line.
* BFM demod: make rds active setting persistent
* BFM demopd: clear BAS area when clearing RDS fields
* Metis: set output FIFO size to size policy. Fixes #1100
* Removed unused symbol synchronization object and irrelevant references to liquidsdr. Fixes #1104
* API: added histogram and waterfall markers to spectrum settings
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 23 Jan 2022 22:17:30 +0100
sdrangel (6.18.0-1) unstable; urgency=medium
* New Jogdial Control feature. Implements #1088
* RollupWidget: make rollup state a Serializable object. Prerequisite to #1050
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 09 Jan 2022 09:42:30 +0100
sdrangel (6.17.7-1) unstable; urgency=medium
* Simple PTT feature: added vox control. Implements #1002
* Fix FileInput API report of absolute time following PR #981. PR #1094
* Support compilation with Boost >= 1.77. Fix for #1087. PR #1092
* Fixed some compiler warnings with Qt 5.15 and GCC 11
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 03 Jan 2022 18:24:33 +0100
sdrangel (6.17.6-1) unstable; urgency=medium
* Remote plugins: added capability to choose sample size in transmission. Implements #1078
* Remote input: added some control of remote instance. Implements #1074
* Remote Input: fixed segfault when stream sample rate is lowered
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 26 Dec 2021 11:10:26 +0100
sdrangel (6.17.5-1) unstable; urgency=medium
* ADSB demod and VOR feature: Always use C locale for parsing coords in airport database.
Fix #1062. PR #1065
* Implement serialize and deserialize to/from API in Serializable interface. Pre #1050
* SDRplay v1: fixed frequency boundaries in report. Fixes #1061
* Ubuntu build: added qm-module dependencies in the Depend section. Fixes #1063
* Map feature: Add IBP beacons and GRAVES. Display locator not location. PR #1071
* Implemented Channel Marker settings in API. Pre #1050
* RemoteInput: set system UDP buffer length for 250 ms of samples.
RemoteSink: removed UDP Tx delay. Implements #1069
* Increase FIFO size in Remote Sink according to baseband sample rate. Issue #1069. PR #1075
* GUI flavor: save and restore the device item index for the initial set up (R0). Fixes #1066
* MainWindow: use pop_back() to remove last element of vector. Fixes #1070
* Remote source and output: changes and fixes implementing #868
* Rotator controller - Don't round az/el received from Sat Tracker. PR #1076
* Display warnings in ADS-B and DAB if sample rate is too low. PR #1082
* Display OpenGL version in status bar. Displayed in red if less than version 3. PR #1083
* Replaced frequency dials by labels for unmodifiable frequency displays
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 16 Dec 2021 07:46:31 +0100
sdrangel (6.17.4-1) unstable; urgency=medium
* Basic instance save and restore wihth scripts dump.py and config,py
* API: fixes in features processing
* Use dark theme for APRS charts. PR #1060
* Move Feature workers to thread. PR #1059
* Make Sat Tracker GUI expanding. PR #1057
* Add links to documentation in channel and feature GUIs. PR #1056
* Save/restore rollup state in channel plugins. PR #1055
* Remove sorting of channels and features when saving presets in GUI. Fixes #1051
* ChirpChat demod: API changes and fixes
* Add better Map API key support. PR #1054
* Save/restore rollup state in features. PR #1053
* GS232 Rotator Controller updates. Fixes #1045. PR #1052
* IEEE 802.15.4 modulator: API and GUI changes
* Packet modulator: API changes
* Remote Input: prevent nullptr
* Center ADS-B map on My Location when map is first opened. PR #1048
* ADS-B Updates. Fix positioning of Home antenna. PR #1047
* Add support for POWER architecture. PR #1046
* ADSB demod: added auto target checkbox in notifications table.
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 26 Nov 2021 21:16:24 +0100
sdrangel (6.17.3-1) unstable; urgency=medium
* Noise Figure: add support for sweeping gain and other device settings. PR #1020
* ADSB updates. PR #1023
* Support for vertically expanding widgets to RollupWidget. Issue #897. PR #1026
* Remote inpput: allow API to bind to any address. Issue #1028. PR #1030
* RTLSDR: Report biasT widget state in displaySettings. PR #1032
* RemoteInput GUI - Use editingFinished not returnPressed. Issue #1031. PR #1033
* CI/CD. Fallback external/windows LFS support
* ADSB updates: log and memory leak. PR #1037
* FFTW wisdom enhancements. Issue #1024
* Add Logging to .csv file for some plugins. Issue #1035. PR #1038
* Remote sink: fixed socket deletion. Issue #1034
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 06 Nov 2021 20:15:07 +0100
sdrangel (6.17.2-1) unstable; urgency=medium
* DATV modulator: API enhancements and GUI cosmetic fixes
* Implemented run action API in relevant feature plugins
* API: report running state for feature plugins with run action
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 24 Oct 2021 08:05:33 +0200
sdrangel (6.17.1-1) unstable; urgency=medium
* MainWindow: Change Feature UI set when feature tab changes. Fixes #1012
* Metis MISO: set absolute maximum frequency to 500 MHz. Fixes #1014
* Moved CI/CD MSVC build to Github Actions
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 16 Oct 2021 21:25:21 +0200
sdrangel (6.17.0-1) unstable; urgency=medium
* New Radioastronomy plugin. PR #1011. Implements #191.
* GS232 Controller fix for Mac O/S compilation. Fixes #1010.
* FileSink API updates
* SigMFFileSink API updates
* StarTracker updates for Radioastronomy plugin
* ValueDialZ: when setting range fix zero display initial value
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 12 Oct 2021 21:23:16 +0200
sdrangel (6.16.7-1) unstable; urgency=medium
* Antenna Tools update. PR #1005
* GS232 Controller Updates fixing data pipe. Fixes #1006. PR #1007
* ValueDialZ: more fixes. Complements #1004. PR #1008
* Only copy file if different to avoid unnecessary rebuilds. PR #1009
* Use on premises BYOC for Ubuntu image build
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 07 Oct 2021 19:29:51 +0200
sdrangel (6.16.6-1) unstable; urgency=medium
* DeviceSet: Fixed pointer initialization. Fixes #1000
* ValueDialZ: removed set value to 0 code if value is in range. Fixes #1004
* GS232 Controller API: added serial devices to report + fixes
* SatelliteTracker: API: added rotator data
* SatelliteTracker: use device set index. API: fixed doppler channels
* AIS Feature: fixed feature set index and feature index in API
* API: Features: correct feature set and feature indexes
* API: added index in FeatureSet structure
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 04 Oct 2021 19:03:07 +0200
sdrangel (6.16.5-1) unstable; urgency=medium
* API: added PUT, PATCH, POST /sdrangel/featureset/{featureSetIndex}/preset. Issue #998.
* API: added GET /sdrangel/featurepresets and DELETE /sdrangel/featurepreset. Issue #998.
* API: added feature sets in the instance summary
* API: added /sdrangel/features (GET) to get the list of available feature plugins
* SDRplay V3: fixes for API
* Satellite Tracker: fixed compilation in server mode. Fixes #996
* Satellite Tracker: various enhancements. PR #997.
* APT demod: API: fixed APT demod settings mappings. Fixes #995
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 05 Sep 2021 20:27:06 +0200
sdrangel (6.16.4-1) unstable; urgency=medium
* API: fixed GET /sdrangel/featuresets
* API: implemented POST/DELETE /sdrangel/featureset. Fixes #988.
* Implemented multiple feature sets in GUI
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 22 Aug 2021 08:16:44 +0200
sdrangel (6.16.3-1) unstable; urgency=medium
* Metis scan: scan all network interfaces. Fixes #977
* GLScopeGUI: fixed UI. Fixes #969
* Fixed rescuesdriq with milliseconds timestamps. Fixes #986. PR #984 and #987
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 21 Aug 2021 09:32:23 +0200
sdrangel (6.16.2-1) unstable; urgency=medium
* Pager demod: Add support for character set mapping. PR #966
* Pager demod: Add extra Hebrew charaters. PR #975
* Radio Clock: Add support for WWVB and display daylight saving. PR #968
* Antenna Tools: various additions and enhancements. PR #970
* Satellite Tracker: LOS handling fixes. Issue #893. PR #974
* DATV Mod: Add UDP buffer utiliziation in GUI on Windows. PR #976
* File record. timestamp resolution to milliseconds. Issue #980. PR #981
* Spectrum markers enhancements. Issue #923
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 08 Aug 2021 04:25:47 +0200
sdrangel (6.16.1-1) unstable; urgency=medium
* AIS: fixed window size when scope is visible. PR #962. Issue #981
* Other fixes in AIS demod. PR #962
* ScopeVis: allow Projection cache only if in single stream mode. Issue #872
* Scope GUI: reworked serialize and deserialize
* AIS, IEEE 802.15.4, Pager, Radio Clock: scope and spectrum feed optimization
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 17 Jul 2021 08:23:22 +0200
sdrangel (6.16.0-1) unstable; urgency=medium
* New Pager demodulator. PR #960
* AIS feature: use course if heading is not available
* Satellite Tracker: fix table to accomodate Doppler tracking. PR #951. Issue #840
* SDRPlayV3: wait for some commands completion. PR #954
* Spectrum Markers: make them stick to frequency, power and time distance
* Fix handling of Satellite Tracker device settings. PR #959. Issue #953.
* Channel Analyzer / Scope: fixed sample rate handling. Fixes #956
* ScopeVis: added missing mutex locks in message handling. May fix #955
* ScopeVis: do not save / restore time offset in the settings
* ScopeVis: fixed multiple stream input. Fixes #872
* RadioClock and Pager: some optimizations
* SSB demod: fixed bandwidth setting. Fixes #957
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 13 Jul 2021 20:20:58 +0200
sdrangel (6.15.1-1) unstable; urgency=medium
* Demod Analyzer: fixed sample rate handling. Fixes #931
* Enable LimeRFE on Windows. PR #942
* Demod Analyzer: allow complex input. Fixes #932
* Noise Figure: compile only if Boost >= 1.70.0. Fixes #943
* Update airspyhf library to latest version to fix #928. PR #945
* Save and restore position and size of main window. Fixes #89. PR #946
* SatelliteTracker: Web API fixes. Fixes #948. PR #949
* Fixes to web API request mapper. PR #950
* Web API doc: added missing doc swagger yaml files
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 04 Jul 2021 03:28:04 +0200
sdrangel (6.15.0-1) unstable; urgency=medium
* New Radio Clock plugin. PRs #394, #936 and #939
* Add image zooming to APT demodulator. PR #941
* Add Star Tracker galactic line of sight plot. PR #938
* Improved packet demod performance. PR #935
* Scope GUI: refactor of amplitude scale and offset. Issue #937
* Scope: allow complex float possibly unscaled input. Issue #929
* Fixed SWGModelFactory so that init() is invoked on complex objects. Fixes #899
* Fixed multiple streams input. Fixes #925
* Upgraded libairspy to v1.0.10
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 27 Jun 2021 17:12:08 +0200
sdrangel (6.14.0-1) unstable; urgency=medium
* New noise figure Rx channel plugin PR #917 and #919
* GLscope rework featuring a multiple I/Q stream input. Issues #898 and #872
* ADS-B demod: Delete m_worker after removing sink from DSP. PR #916 Issue #915
* ADS-B demod: ADSBDemodWorker: check running state before actual start/stop
* GS232: SPID rotator fixes. PR #914
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 11 Jun 2021 17:44:52 +0200
sdrangel (6.13.0-1) unstable; urgency=medium
* New antenna tool feature PR #906
* Sat tracker: fix rotator max azimuth and elevation settings in GUI. PR #900
* GS232: support SPID MD-02 controller. PR #901
* File Output: make file name persistent
* PlutoSDR MIMO: fixed wrong reference to BladeRF library in CMakeLists.txt. Fixes #905
* Add .wav file support to File Input File Source and File Record plugins. PR #907
* Star Tracker: Add Custom Az/El target and drift scan plot. PR #910
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 28 May 2021 10:25:48 +0200
sdrangel (6.12.1-1) unstable; urgency=medium
* AIS: Fix decoding of AIS class B messages PR #895
* AIS: Add display of ship type from class B messages. PR #895
* AIS: Fix name decode in AIS Static Data Reports. PR #896
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 11 May 2021 19:52:27 +0200
sdrangel (6.12.0-1) unstable; urgency=medium
* New AIS mod, demod and feature plugins. PR #891. Implements #858.
* PlutoSDR MIMO. Fixes in REST API
* Sat Tracker: catch TLE exception to avoid crash. PR #894.
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 11 May 2021 08:48:43 +0200
sdrangel (6.11.0-1) unstable; urgency=medium
* New PlutoSDR MIMO plugin for Pluto+. Implements #869.
* Fixed center interpolator by 64. Fixs #884.
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 05 May 2021 19:50:17 +0200
sdrangel (6.10.3-1) unstable; urgency=medium
* Satellite tracker plugin: Fixed memory leaks. PR #979, Fixes #877.
* More memory leak fixes in some plugins. PR #879.
* Revision of mutex locks in FIFOs. Fixes #870.
* DAB: Use UTF-8 rather than latin encoding for program names. Fixes #874.
* DAB: Use latest DAB lib API. Don't write MOT data to files. PR #880
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 01 May 2021 09:03:34 +0200
sdrangel (6.10.2-1) unstable; urgency=medium
* Satellite and Star tracker plugins: dark theme option for charts as default
* Spectrum: increase maximum FFT size to 32k
* Change delete order of channel and GUI. Fixes #860
* APT demod: moved processPixels process to a separate thread. Implements #865
* APT demod optimization: do a full image process only every 20 lines
* DAB/DAB+ demod: added images in GUI and various fixes. PR #866
* DAB/DAB+ demod: fixed right-click audio selection. PR #856 fixes #853
* SampleSinkFIFO: read/write return immediately if size is zero. Fixes #868
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 25 Apr 2021 19:01:51 +0200
sdrangel (6.10.1-1) unstable; urgency=medium
* DAB/DAB+ demodulator plugin build in Windows package. PR #854 fixes #853
* DSD Demodulator: set fixed 48kS/s for requested channel SR. Fixes #752
* External libaries (package builds): upgraded DSDcc to v1.9.3
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 19 Apr 2021 21:48:14 +0200
sdrangel (6.10.0-1) unstable; urgency=medium
* New DAB/DAB+ demodulator plugin. PR #850
* DATV modulator: avoid SR=0. PR #851 fixes #849
* NFM demod: implemented DCS squelch. Finalizes #792
* Fixed webapi adapters. Fixes #842
* Package builds: upgrade DSDcc to 1.9.2 contains FEC fixes
* ADSB and VOR: Fix assertion when removing all elements from model. PR #841
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 18 Apr 2021 20:36:50 +0200
sdrangel (6.9.0-1) unstable; urgency=medium
* New SDRPlay v3 source plugin. PR #839
* New SDRPlay v3 source plugin. PR #839
* NFM modulator. Implemented DCS. Part of #792
* DATV demod: option to enable/disable the video player
* DATV demod: stop player before initializing DATV framework
* Do not enable interprocedural optimization for Mac. Fixes #807
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 13 Apr 2021 08:17:46 +0200
sdrangel (6.8.0-1) unstable; urgency=medium
* New Packet Error Tester feature plugin. PR #836
* DATV modulator plugin: DVB-S2 implementation. PR #826
* DATV demodulator: various fixes including internal player. Issue #833
* Fixed station position altitude setting. Issue #828
* APRS feature: choose between metric and imperial units. Issue #829
* AudioOutput plugin: fixed REST API device settings PUT.PATCH. Issue #837
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 08 Apr 2021 17:26:09 +0200
sdrangel (6.7.0-1) unstable; urgency=medium
* New DATV modulator plugin: DVB-S modulator. PR #810
* FileInput: Sample rate fixes, PR #803
* Set depending objects to nullptr before deleting GUI. Fixes #806
* SSB demod: increase audio volume range to -10 to +40 dB.
* Fix impulse response of FIR filter. PR #811
* HackRF: auto baseband filter and hardware LO correction PR #812, 824
* DATV demod: many fixes to improve stabilty of DVB-S2
* ChirpChat demod: LoRa APRS support. PR #814, 815
* SatTracker: Fixed Doppler timing interval. PR #818
* DemodAnalyzer: Support Packer demod. PR #820
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 29 Mar 2021 19:09:55 +0200
sdrangel (6.6.2-1) unstable; urgency=medium
* FileSink: File name handling in settings and API. PR #798
* FileRecord: cut file only if sample rate changes. Implements #795
* ChannelAnalyzer: Added Costas Loop PLL and more controls. PR #797
* DATV: implemented soft LDPC external tool. Issue #785
* Spectrum: removed FPS no limit setting. Fixes #793
sdrangel (6.6.1-1) unstable; urgency=medium
* GS-232 Controller feature: added ERC-M controller support. PR #788
* Added missing swagger files from recent updates. PR #788
* Satellite Tracker feature: fixed build on Mac. PR #788
* Spectrum Vis: initialize pointer to GUI. Fixes #790
* Reapply audio sample on effective channel sample rate change. Implements #791
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 03 Mar 2021 12:47:45 +0100
sdrangel (6.6.0-1) unstable; urgency=medium
* New APT demodulator for NOAA satellites. PR #787
* New Satellite tracker feature plugin. PR #787
* DATV: display MER and CNR. Issue #784
* DATV: new control for LDPC bit flips maximum corrections
* RTL-SDR: increase LO ppm range to +/-200
* FileSink: enable record button only when plugin is running. Issue #782
* SigMFFileSink: enable record button only when plugin is running
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 28 Feb 2021 18:43:09 +0100
sdrangel (6.5.5-1) unstable; urgency=medium
* Spectrum frequency zooming: Implements #773
* Spectrum time and power zomming. Implements #779
* DeviceUISet: fixed channel instance registrations element deletion. Fixes #776
* FileSink: fixed spectrum GUI center frequency setting (baseband to GUI communication)
* FileSink: give .sdriq extension to provided file name automatically. Fixes #780
* SigMFFileSink: give .sigmf-meta extension to provided file name automatically.
* SigMFFileSink: append data if file exists and has been recorded with SDRangel. Implements #781
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 20 Feb 2021 17:28:46 +0100
sdrangel (6.5.4-1) unstable; urgency=medium
* Spectrum: more FPS capping options. Implements #772
* Spectrum: autoscaling. Implements #771
* Spectrum: overlap control. Implements #770
* SSB demod: corrections to spanLog2 processing
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 13 Feb 2021 09:05:18 +0100
sdrangel (6.5.3-1) unstable; urgency=medium
* More Star Tracker updates. PR #762
* AirspyHF: added decimation by 128 and 256. PR #764
* SSB demod: use log (dB) for volume setting
* CW keyer: revised the WPM calculation
* SoapySDR: a few fixes. PR #766
* RTLSDR: changed BW setting limits. PR #766
* Various changes in build and compiler warning fixes. PR #766
* NFM demod: cosmetic changes. PR #766
* Removed FPS limitation in WSSpectrum. Implements #767
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 07 Feb 2021 10:00:23 +0100
sdrangel (6.5.2-1) unstable; urgency=medium
* StarTracker feature: more updates. PR #761
* SigMFFileSink: fixed spectrum GUI
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 30 Jan 2021 17:58:02 +0100
sdrangel (6.5.1-1) unstable; urgency=medium
* StarTracker feature: many enhancements. PR #757
* Packet demod: Fixed issue #750. PR #756
* Map feature: many enhancements. PR #755
* FileSink: fixes and enhancements. PR #751
* PTT feature: fixed copy paste typos. PR #748
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 23 Jan 2021 10:37:33 +0100
sdrangel (6.5.0-1) unstable; urgency=medium
* New PacketDemod Rx channel plugin. PR #746
* New APRS feature plugin. PR #746
* New Map feature plugin. PR #746
* Star tracker plugin. PR #746
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 14 Jan 2021 22:32:52 +0100
sdrangel (6.4.0-1) unstable; urgency=medium
* New demodulation analyzer feature plugin. Implements #695
* GLShaderTVArray: fixed regression introduced by commit a08e18b
* Appveyor MSVC build: follow upgrade to Qt 5.15.2
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 21 Dec 2020 09:35:39 +0100
sdrangel (6.3.3-1) unstable; urgency=medium
* AFC: use message pipes for channel settings feedback. Updated channel plugins.
* Message pipes: implemented message queues recycling when features disappear.
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 13 Dec 2020 18:59:52 +0100
sdrangel (6.3.2-1) unstable; urgency=medium
* Fixed MSVC compilation of message pipes.
* TVScreen: removed cleanup() call in destructor. May fix #728.
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 12 Dec 2020 20:19:52 +0100
sdrangel (6.3.1-1) unstable; urgency=medium
* Implemented garbage collector for message pipes. Applies to VORLocalizer.
* FreeDV: removed useless set callback functions. Use mutex appropriately. Issue #728
* ATV demod: initialize m_tvScreenBuffer when setting m_registeredTVScreen. Issue #728
* TVScreenAnalog: removed usage of std::shared_ptr. Issue #728
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 12 Dec 2020 14:45:22 +0100
sdrangel (6.3.0-1) unstable; urgency=medium
* Single channel VOR demodulator plugin. Issue #729
* VOR localizer feature plugin. Issue #729
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 08 Dec 2020 07:30:36 +0100
sdrangel (6.2.0-1) unstable; urgency=medium
* New VOR demodulator plugin. PR #723
* Remote plugins build fix on ARM64. Fixes #720
* SSB modulator: fixed audio compressor. Fixes #719
* Fixed narrowing error or warning when Rx sample size is 16 bits
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 26 Nov 2020 05:49:14 +0100
sdrangel (6.1.0-1) unstable; urgency=medium
* Fixes for clang-cl build and LTO optimization. PR #717
* Cmake arch detection and compilation options rework. PR #714 and #715
* Audio output plugin. Issue #496
* Fixed Rest API UDPSinkSettings key mismapping. Issue #713
* Compile SigMF plugins only with GCC. Issue #712
* Modulators audio input rework. Issue #495 and more
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 22 Nov 2020 19:06:29 +0100
sdrangel (6.0.2-1) unstable; urgency=medium
* GLSpectrum: fixed settings and waterfall share serialization. Reinstate #609
* Fixed main cmake and correct warnings. Implements #663
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 15 Nov 2020 20:58:44 +0100
sdrangel (6.0.1-1) unstable; urgency=medium
* Audio Input: reworked threading model and mono handling. Issue #706
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 13 Nov 2020 22:19:29 +0100
sdrangel (6.0.0-1) unstable; urgency=medium
* Merge back v5 branch and upgrade version to v6
* ChirpChat modulator/demodulator replacing LoRa. Issues #309 and #471
* SigMF file support. Issues #542 and #544
* Test multiple input source. Issue #701
* Simple interferometer. Issue #421
* BladeRF2 MIMO support. Issue #419
* Minimal beam steering source channel. Issue #431
* Test multiple output source. Issue #434
* LimeSDR MIMO support. Issue #462
* XTRX MIMO support. Issue #507
* RedPitaya / HPSDR Metis support. Issue #344
* Stream spectrum data for remote clients. Issue #224
* NFM demod: more updates. Issue #703
* ADS-B enhancements (2). PR #704
* Audio input plugin. PR #699
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 12 Nov 2020 21:26:29 +0100
sdrangel (4.21.3-1) unstable; urgency=medium
* Package SoapySDR modules for Windows. PR #687
* CI: Add docker build. PR #673
* Add an option to hide console on Windows. PR #694
* ADS-B Demodulator updates. PR #688
* ADS-B Sync correlation threshold rework. Issue #696
* NFMDemod: rewirk filters. PR #690
* NFM: full control of RF, AF filters and FM deviation, Issue #691
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 09 Nov 2020 13:07:51 +0100
sdrangel (4.21.2-1) unstable; urgency=medium
* Windows package: upgrade to VS 2019 and Qt 5.15.1. PR #683
* Package builds: migrate to Ninja. PR #683
* Define _USE_MATH_DEFINES and clean M_PI redefinitions. PR #682
* NFM Demod: Refactored audio scaling. PR #682 + fix
* NFM Demod: Fix CTCSS check logic: PR #682
* NFM: review frequency deviation
* KiwiSDR: fixed issue in local network. Fixes #435
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 06 Nov 2020 05:21:24 +0100
sdrangel (4.21.1-1) unstable; urgency=medium
* ADS-B demod: optimization of sync word correlation. Implements #675
* ADS-B: added 2MS/s sample rate
* Fix and refactor FIR filter (from kasper93)
* NFMDemodSink: Fixes and minor refactoring (from kasper93). Issue #674
* NFM: augmented CTCSS tones. Implements #664
* CTCSS detector: fixed crash on destructor. Fixes #680
* TestSource: fixed timer start/stop. Fixes issue #661
* Main Window: fixed sampling device changed. Fixes #668
* Scope MagSq trigger fix. Fixes #669
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 03 Nov 2020 12:11:25 +0100
sdrangel (4.21.0-1) unstable; urgency=medium
* New ADS-B demodulator and decoder. PR #671
* New GS-232 controller (feature). PR #671
* Improvements to USRP support. PR #670
* AFC feature plugin. Issue #634
* Added spectrum display to Frequency tracker. Issue #665
* Windows: distribute Qt ANGLE support libraries. Issue #660 and PR #671
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 28 Oct 2020 07:40:44 +0100
sdrangel (4.20.0-1) unstable; urgency=medium
* New IEEE 802.15.4 modulator. PR #654
* Packet modulator fixes. PR #655
* Implementation of MainCore singleton in MainWindow and MainServer
* Unique Web API adapter
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 11 Oct 2020 20:39:16 +0200
sdrangel (4.19.0-1) unstable; urgency=medium
* USRP support. PR #652
* Removal of PluginInstanceGUI and related refactoring
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 06 Oct 2020 05:14:29 +0200
sdrangel (4.18.0-1) unstable; urgency=medium
* New feature plugins framework. Implements #632
* Simple PTT feature plugin. Implements #635
* Migration of RigCtl plugin to feature plugins. Implements #636
* Faster SR for test source and file output. PR #647
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 29 Sep 2020 06:40:35 +0200
sdrangel (4.17.0-1) unstable; urgency=medium
* Packet modulator: new channel Tx plugin
* DATV demod: Spectrum point and click is used fix. Fixes issue #637
* DATV demod: added standard basic settings dialog
* SoapySDR Input: reversed soft LO ppm correction. Fixes #641
* Corrected Highpass and Bandpass filters normalization. Implements #642
* Channel add action: fixed tab view being in use. Fixes #645
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 26 Sep 2020 07:12:43 +0200
sdrangel (4.16.1-1) unstable; urgency=medium
* BladeRF2: fixed global gain setting. Fixes issue #630
* BladeRF2: REST API: add scale in range report
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 16 Sep 2020 11:07:43 +0200
sdrangel (4.16.0-1) unstable; urgency=medium
* Specialized channels dock. Implements #628
* Specialized sampling devices dock. Implements #629
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 13 Sep 2020 22:14:52 +0200
sdrangel (4.15.5-1) unstable; urgency=medium
* RigCtl plugin: support of hamlib rigctl protocol. Issue #602
* REST API: changed uint64 to int64 integer formats. Fixes #624
* Test Source: fixed worker lifecycle. Fixes issue #626
* DeviceUISet: fixed deleteChannel. Fixes issue #625
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 11 Sep 2020 11:32:50 +0200
sdrangel (4.15.4-1) unstable; urgency=medium
* GLSpectrum: fixed settings and waterfall share serialization. Fixes #609
* DATV decoder: fixed UDP sender dropping packets. Fixes issue #579
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 29 Aug 2020 17:10:35 +0200
sdrangel (4.15.3-1) unstable; urgency=medium
* RemoteInput: option to join multicast group. Implements #611
* FileSource: file record length in microsedoncs. Implements #614
* FileInput: file record length in microsedoncs. Implements #614
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 27 Aug 2020 07:56:13 +0200
sdrangel (4.15.2-1) unstable; urgency=medium
* UDP Source: added ability to join multicast group. Implements #610
* Fixed SDRIQ file recorder adding header multiple times
* RollupWidget: fixed collapse section header not showing up. Fixes #608
* NFM demod: correct discri setFMScaling when applying audio sample rate
* GLScope and GLSpectrum: removed useless calls to cleanup() in destructor
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 25 Aug 2020 19:02:34 +0200
sdrangel (4.15.1-1) unstable; urgency=medium
* ATV Demod: implementation of arbitrary sample rate. Implements #594
* ATV Demodulator: implement double bufferin
* ATV Modulator: fix crash when m_pointsPerHBar = 0
* PlutoSDR input: fixed upgrade to FW 0.32. Fixes #604
* PlutoSDR: upgrade to libiio v0.21
* AirspyHF: upgrade to libairspyhf 1.6.8
* ValueDial(Z): add virtual keyboard support
-- Edouard Griffiths, F4EXB <[email protected]> Thu, 20 Aug 2020 11:59:46 +0200
sdrangel (4.15.0-1) unstable; urgency=medium
* Added FileSink channel plugin. Implements #543.
* ATV Demod: introducing of new analog TV shader
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 09 Aug 2020 04:47:52 +0200
sdrangel (4.14.20-1) unstable; urgency=medium
* ATV Modulator: fixed 819 lines system
* Plugins with audio: fixed audio sample rate handling. Fixes #585
* GLShaderTextured: dynamic fallback to mutable storage. Implements #582
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 03 Aug 2020 11:20:10 +0200
sdrangel (4.14.19-1) unstable; urgency=medium
* DSD Demod: removed DMR Basic Privacy feature. Implements #574
* ATV Modulator: complete vertical sync rework. Implements #578
* ATV: Removed 405 lines and added 819 lines system
* DSDcc: use v1.9.0 in package builds
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 01 Aug 2020 03:11:26 +0200
sdrangel (4.14.18-1) unstable; urgency=medium
* ATV Demod: improvements of HSync and VSync algorithms. Fixes #459
* ATV Demod: further bug fixes and performance improvements
* Set correct output directories for RelWithDebInfo build
* ChannelAnalyzer: use complex decimator for decimation by power of two value
* ChannelAnalyzer: fixed rational downsampler
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 21 Jul 2020 06:40:13 +0200
sdrangel (4.14.17-1) unstable; urgency=medium
* Channel Analyzer: fixed sink apply channel settings. Fixes #569 and #570
* Channel Analyzer: improved baseband thread management
* AM demod: improved baseband thread management
* DeviceUISet: fixed deleteChannel method in GUI. Fixes #568
* Device API: fixes in MIMO case. Fixes #567
* Channel Analyzer: let spectrum free running when in free running mode. Issue #571
* RemoteInput: do not stop UDP handler when stop. Fixes #563
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 13 Jul 2020 22:12:45 +0200
sdrangel (4.14.16-1) unstable; urgency=medium
* ATV demod: fixed initialization issues. Fixes #560
* GLSpectrum: synchronize spectrum with the GUI spectrum freeze button. Fixes issue #561
* File Input: refactored FileInputThread (contribution from Vort). Fixes #562
* More changes on the model of File Input
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 12 Jul 2020 18:26:55 +0200
sdrangel (4.14.15-1) unstable; urgency=medium
* GLScope: marker feature. Implements #497
* GLSpectrum: marker feature. Implements #557
* ScopeVis: fixed moving of iterator past the end. Fixes issue #556
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 06 Jul 2020 17:33:24 +0200
sdrangel (4.14.14-1) unstable; urgency=medium
* Add 10 MHz digit to wideband channel plugins. Implements #531
* Initialize m_audioSampleRate in constructors where missing. Fixes #554
* ATVdemod: AM and horizontal sync fixes. Implements #459
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 01 Jul 2020 18:02:33 +0200
sdrangel (4.14.13-1) unstable; urgency=medium
* Remote input: adjust buffer size depending on sample rate. Implements #534
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 28 Jun 2020 08:32:53 +0200
sdrangel (4.14.12-1) unstable; urgency=medium
* RTL-SDR: Bias tee support. Implements #533
* Frequency tracker: added tracking delta frequency in API report. Implements #550
* Local sink: added decoupling FIFO. Implements #549
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 27 Jun 2020 08:50:27 +0200
sdrangel (4.14.11-1) unstable; urgency=medium
* I/Q swap option on transverter. Implements #493
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 24 Jun 2020 01:45:23 +0200
sdrangel (4.14.10-1) unstable; urgency=medium
* Fixed Soapy SDR find module. Implements issue #519
* Added SWSCALE to the list of required FFMpeg modules. Implements issue #437
* Channel analyzer: fixed scope vis feed regression. Fixes issue #547
* Sepectrum GUI: use spin boxes for spectrum range. Implements issue #546
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 20 Jun 2020 04:12:35 +0200
sdrangel (4.14.9-1) unstable; urgency=medium
* DSD demod: implemented DMR basic privacy (dsdcc 1.8.7)
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 15 Jun 2020 19:03:39 +0200
sdrangel (4.14.8-1) unstable; urgency=medium
* RTP audio: fixed codec setting when usinf REST API. Fixes #526
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 23 May 2020 23:01:15 +0200
sdrangel (4.14.7-1) unstable; urgency=medium
* PlutoSDR: fixed handling of open device status. Fixes issue #510
* Prevent use of not existent devices. Fixes issue #510 partially
* Main GUI app: moved app creation after setting attributes. Fixes #522
* AudioDeviceManager: make sure a negative or null sample rate is never returned
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 20 May 2020 11:35:17 +0200
sdrangel (4.14.6-1) unstable; urgency=medium
* Spectrum analyzer code reorganization
* FFTFactory: add mutex for thread safety. Implements issue #514
* SpectrumVis: release previous FFT engine allocation from FFT factory only if allocated once. Fixes issue #515
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 16 May 2020 06:35:17 +0200
sdrangel (4.14.5-1) unstable; urgency=medium
* DATV demod: applied some recent changes in leansdr
* Fixed incorrect frequency display when transverter is engaged. Fixes issue #509
* ATV mod: Ubuntu 20.04 OpenCV code compatibility. Fixes issue #511
* Fixed some warnings from Mac ports compilation (2)
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 28 Apr 2020 03:35:17 +0200
sdrangel (4.14.4-1) unstable; urgency=medium
* XTRX: REST API: fixed wrong setting object
* XTRX: fixed sample rate setting
* XTRX: reduce block size to 4096 bytes
* LimeSDR: revised labels and tooltips for antenna select. Fixes issue #506
* LimeSDR: GUI: flip SR and Hw/Sw decimation or interpolation displays
* AM demod: fixed initialization of squelch counter. Fixes issue #502
* Make OpenCV optional in main cmake file. Fixes #503
* Fixed some warnings from Mac ports compilation
* Compile with c++11 comaptible version of CM256cc
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 20 Apr 2020 05:35:17 +0200
sdrangel (4.14.3-1) unstable; urgency=medium
* Sample sources GUI file record: right click to choose file. Implements #483.
* BladeRF2: REST API: implemented actions (was missing)
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 01 Apr 2020 19:05:22 +0200
sdrangel (4.14.2-1) unstable; urgency=medium
* Removed cm256cc dependency and therefore remote plugins for Mac OS. Fixes #492
* REST API: removed useless SWGDevicesetApi files. Fixes #491
* BFM demod: added initialization of message to GUI address. Fixes #488
-- Edouard Griffiths, F4EXB <[email protected]> Sat, 28 Mar 2020 19:05:22 +0100
sdrangel (4.14.1-1) unstable; urgency=medium
* FFT factory with option to use fftwf wisdom file. Impements issue #482.
-- Edouard Griffiths, F4EXB <[email protected]> Mon, 16 Mar 2020 21:01:22 +0100
sdrangel (4.14.0-1) unstable; urgency=medium
* REST API device and channel actions. Implements #485.
* LimeRFE USB: added cellular band 3 and improved API documentation
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 11 Mar 2020 15:14:22 +0100
sdrangel (4.13.2-1) unstable; urgency=medium
* CI/CD implmentation with Appveyor
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 01 Mar 2020 05:14:22 +0100
sdrangel (4.13.1-1) unstable; urgency=medium
* LimeRFE USB support: fixed attenuator and AM/FM notch settings
* FileSource: fixed various issues with settings with GUI and REST API. Fixes issue #481
* FFT: added Kaiser window with alpha factor at pi
* Removed librtlsdr in the list of dependencies in Debian install
* SoapySDR: fixed FindSoapySDR.cmake
* SoapySDR: Fix case-sensitive package check
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 26 Feb 2020 22:14:22 +0100
sdrangel (4.13.0-1) unstable; urgency=medium
* LimeRFE USB support
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 22 Jan 2020 12:14:22 +0100
sdrangel (4.12.5-1) unstable; urgency=medium
* Removed MIMO plugins and related code
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 01 Jan 2020 06:14:22 +0100
sdrangel (4.12.4-1) unstable; urgency=medium
* Debian build: moved librtlsdr to external libraries
-- Edouard Griffiths, F4EXB <[email protected]> Tue, 17 Dec 2019 19:14:22 +0100
sdrangel (4.12.3-1) unstable; urgency=medium
* Added possibility to specify devices that cannot be discovered automatically
* Server: fixed sink device set creation and added MIMO creation
-- Edouard Griffiths, F4EXB <[email protected]> Sun, 15 Dec 2019 23:14:22 +0100
sdrangel (4.12.2-1) unstable; urgency=medium
* Refactoring of Rx channels code with better separation of concerns
* ATV demod: complete refactoring
* Channel Analyzer: refactoring of classes and downsampling chain reorganization
* Remote Sink and Remote Output: refactoring of UDP blocks handling
* NFMDemod: fixed setSelectedCtcssIndex method
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 14 Dec 2019 06:14:22 +0100
sdrangel (4.12.1-1) unstable; urgency=medium
* Tx plugins: further refactoring and fixes
* Scope: added DOA projections and updated ChannelAnalzyer
* Upgraded codec2 library to v0.9.2
* NFM demod: fixed audio FIFO fill
* Various changes to base classes for MIMO
-- Edouard Griffiths, F4EXB <[email protected]> Wed, 19 Nov 2019 22:14:22 +0100
sdrangel (4.12.0-1) unstable; urgency=medium
* Refactoring of Tx part with new FIFO and code reorganization
* Corrected network manager process memory leaks
* leansdr: fixes for macos
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 15 Nov 2019 00:14:22 +0100
sdrangel (4.11.12-1) unstable; urgency=medium
* Test sink output plugin
* ChannelAnalyzer: set trace length to FFT length when auto-correlation by IFFT is used
* Tx plugins: corrected FIFO begin iterator vs number of samples read
* GLSpectrum: set default window to Hanning
* More preparatory works for MIMO channels support
-- Edouard Griffiths, F4EXB <[email protected]> Fri, 01 Nov 2019 14:14:22 +0100
sdrangel (4.11.11-1) unstable; urgency=medium
* Channel Analyzer polar grid option for XY display (Issue #424)
* Fixed MacOS build
* More preparatory works for MIMO channels support