diff --git a/CHANGELOG.md b/CHANGELOG.md index d49abaac..a7d9f254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +**1.2.71** +- Added PD50, PD90, PD120, PD160, PD180, PD240, PD290 SSTV modes. +- Added Wraase SC2-30, SC2-60, SC2-120 SSTV modes. +- Added Scottie 3 and Scottie 4 SSTV modes (please test). +- Added Martin 3 and Martin 4 SSTV modes (please test). +- Added Robot 12 and Robot 24 SSTV modes (please test). +- Added AVT-90 SSTV mode. +- Added "Settings | General | External links" section. +- Fixed FT8 call distances not hiding on Leaflet maps. +- [ENTER] toggles receiver panel, [L] toggles log/chat. +- Now marking SSTV BMPs with 0x73 at offset 7. + **1.2.70** - Fixed flood of broken pipe errors when client disconnects. - Added ability to control external transceiver rigs. diff --git a/debian/changelog b/debian/changelog index 913afe4b..993e1233 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +openwebrx (1.2.71) bullseye jammy; urgency=low + + * Added PD50, PD90, PD120, PD160, PD180, PD240, PD290 SSTV modes. + * Added Wraase SC2-30, SC2-60, SC2-120 SSTV modes. + * Added Scottie 3 and Scottie 4 SSTV modes (please test). + * Added Martin 3 and Martin 4 SSTV modes (please test). + * Added Robot 12 and Robot 24 SSTV modes (please test). + * Added AVT-90 SSTV mode. + * Added "Settings | General | External links" section. + * Fixed FT8 call distances not hiding on Leaflet maps. + * [ENTER] toggles receiver panel, [L] toggles log/chat. + * Now marking SSTV BMPs with 0x73 at offset 7. + + -- Marat Fayzullin Mon, 14 Oct 2024 16:12:00 +0000 + openwebrx (1.2.70) bullseye jammy; urgency=low * Fixed flood of broken pipe errors when client disconnects. diff --git a/debian/control b/debian/control index f8f61df0..98c88061 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Depends: adduser, python3 (>= 3.5), python3-pkg-resources, owrx-connector (>= 0.6.5), - python3-csdr (>= 0.18.24), + python3-csdr (>= 0.18.25), ${python3:Depends}, ${misc:Depends} Recommends: python3-digiham (>= 0.6), @@ -49,6 +49,7 @@ Recommends: python3-digiham (>= 0.6), dablin, multimon-ng, imagemagick, - nrsc5 + nrsc5, + libhamlib-utils Description: multi-user web sdr Open source, multi-user SDR receiver with a web interface diff --git a/owrx/sstv.py b/owrx/sstv.py index af5bba9d..50f0d8e1 100644 --- a/owrx/sstv.py +++ b/owrx/sstv.py @@ -11,6 +11,8 @@ import logging logger = logging.getLogger(__name__) modeNames = { + 0: "Robot 12", + 4: "Robot 24", 8: "Robot 36", 12: "Robot 72", 32: "Martin 4", @@ -18,16 +20,17 @@ modeNames = { 40: "Martin 2", 44: "Martin 1", 48: "Scottie 4", - 51: "Wraase SC2 30", + 51: "SC2 30", 52: "Scottie 3", - 55: "Wraase SC2 180", + 55: "SC2 180", 56: "Scottie 2", - 59: "Wraase SC2 60", + 59: "SC2 60", 60: "Scottie 1", - 63: "Wraase SC2 120", + 63: "SC2 120", 68: "AVT 90", 75: "Scottie DX", 93: "PD 50", + 94: "PD 290", 95: "PD 120", 96: "PD 180", 97: "PD 240", @@ -35,20 +38,18 @@ modeNames = { 99: "PD 90", # Unsupported modes - 0: "Robot 12", - 1: "Robot 12", - 2: "Robot 12", - 3: "Robot BW8", - 4: "Robot 24", - 5: "Robot 24", - 6: "Robot 24", - 7: "Robot BW12", - 9: "Robot BW12", - 10: "Robot BW12", - 11: "Robot BW24", - 13: "Robot BW24", - 14: "Robot BW24", - 15: "Robot BW36", + 1: "Robot BW8R", + 2: "Robot BW8G", + 3: "Robot BW8B", + 5: "Robot BW12R", + 6: "Robot BW12G", + 7: "Robot BW12B", + 9: "Robot BW24R", + 10: "Robot BW24G", + 11: "Robot BW24B", + 13: "Robot BW36R", + 14: "Robot BW36G", + 15: "Robot BW36B", 41: "Martin HQ1", 42: "Martin HQ2", 85: "FAX480", diff --git a/owrx/version.py b/owrx/version.py index 34c411a6..4a403d69 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.70" +_versionstring = "1.2.71" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)