diff --git a/CHANGELOG.md b/CHANGELOG.md index 21c0c4a8..52913934 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/debian/changelog b/debian/changelog index ff8b80ce..2a5b4aaf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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. diff --git a/owrx/dsp.py b/owrx/dsp.py index b4ba03d8..56e47d0d 100644 --- a/owrx/dsp.py +++ b/owrx/dsp.py @@ -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) diff --git a/owrx/modes.py b/owrx/modes.py index d8fb1e54..6bde728a 100644 --- a/owrx/modes.py +++ b/owrx/modes.py @@ -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"), diff --git a/owrx/version.py b/owrx/version.py index 796cee1b..fdb94ac5 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -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)