Preparing for the 1.2.43 release.

This commit is contained in:
Marat Fayzullin 2023-12-17 16:58:56 -05:00
parent 980bae2c5d
commit cd6d80544f
5 changed files with 8 additions and 7 deletions

View File

@ -1,9 +1,9 @@
**1.2.43**
- Added support for JS plugins developed by Stanislav Lechev.
- Added option to switch between US and EU RDS decoding.
- Added option to show dits and dahs when decoding CW.
- Refactored and improved CW, SITOR-B, and CCIR476 decoders.
- Reorganized "Demodulation and Decoding Settings" page.
- Increased CW decoder bandwidth to 100Hz.
- Reorganized "Demodulation and Decoding" settings page.
- Fixed info bubble not updating in Google map.
- Fixed resizing RDS display on mobile devices.
- Fixed date/time parsing in RDS display.

4
debian/changelog vendored
View File

@ -1,10 +1,10 @@
openwebrx (1.2.43) bullseye jammy; urgency=low
* Added support for JS plugins developed by Stanislav Lechev.
* Added option to switch between US and EU RDS decoding.
* Added option to show dits and dahs when decoding CW.
* Refactored and improved CW, SITOR-B, and CCIR476 decoders.
* Reorganized "Demodulation and Decoding Settings" page.
* Increased CW decoder bandwidth to 100Hz.
* Reorganized "Demodulation and Decoding" settings page.
* Fixed info bubble not updating in Google map.
* Fixed resizing RDS display on mobile devices.
* Fixed date/time parsing in RDS display.

View File

@ -675,7 +675,7 @@ class DspManager(SdrSourceEventClient, ClientDemodulatorSecondaryDspEventClient)
return DscDemodulator()
elif mod == "cwdecoder":
from csdr.chain.digimodes import CwDemodulator
return CwDemodulator(100.0)
return CwDemodulator(75.0)
elif mod == "mfrtty170":
from csdr.chain.digimodes import MFRttyDemodulator
return MFRttyDemodulator(170.0, 45.45, reverse = False)

View File

@ -139,7 +139,8 @@ class Modes(object):
DigitalMode("rtty450", "RTTY-450 (50N)", underlying=["usb", "lsb"]),
DigitalMode("rtty85", "RTTY-85 (50N)", underlying=["usb", "lsb"]),
DigitalMode("sitorb", "SITOR-B", underlying=["usb"]),
DigitalMode("dsc", "DSC", underlying=["usb"]),
# Currently in development
# DigitalMode("dsc", "DSC", underlying=["usb"]),
WsjtMode("ft8", "FT8"),
WsjtMode("ft4", "FT4"),
WsjtMode("jt65", "JT65"),

View File

@ -1,5 +1,5 @@
from distutils.version import LooseVersion
_versionstring = "1.2.42"
_versionstring = "1.2.43"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)