Preparing for the next release.

This commit is contained in:
Marat Fayzullin 2024-10-12 17:37:55 -04:00
parent 3027c98fc9
commit 0c7f45d788
5 changed files with 50 additions and 21 deletions

View File

@ -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.

15
debian/changelog vendored
View File

@ -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 <luarvique@gmail.com> 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.

5
debian/control vendored
View File

@ -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

View File

@ -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",

View File

@ -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)