Preparing for the 1.2.43 release.
This commit is contained in:
parent
980bae2c5d
commit
cd6d80544f
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"),
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue