Preparing for the next release.

This commit is contained in:
Marat Fayzullin 2024-03-01 19:56:09 -05:00
parent ada7315330
commit b5fa5d215a
4 changed files with 59 additions and 2 deletions

View File

@ -1,3 +1,13 @@
**1.2.50**
- Added DSC decoder and bookmarks.
- Rolled wide-band ISM back to 250kHz with bandpass.
- Limited scanner to LSB, USB, CW, AM, SAM, and NFM modes.
- Now clearing FAILED device status when disabling device.
- Now resetting CW decoder state on frequency changes.
- Moved all linkification to Utils.js.
- Fixed APRS rain reports.
- Added "openwebrx-extras" umbrella package.
**1.2.49**
- Added optimizations to DAB processing made by Jakob.
- Removed bandpass filters from ADS-B and ISM modes.

13
debian/changelog vendored
View File

@ -1,3 +1,16 @@
openwebrx (1.2.50) bullseye jammy; urgency=low
* Added DSC decoder and bookmarks.
* Rolled wide-band ISM back to 250kHz with bandpass.
* Limited scanner to LSB, USB, CW, AM, SAM, and NFM modes.
* Now clearing FAILED device status when disabling device.
* Now resetting CW decoder state on frequency changes.
* Moved all linkification to Utils.js.
* Fixed APRS rain reports.
* Added "openwebrx-extras" umbrella package.
-- Marat Fayzullin <luarvique@gmail.com> Mon, 4 Mar 2024 16:12:00 +0000
openwebrx (1.2.49) bullseye jammy; urgency=low
* Added optimizations to DAB processing made by Jakob.

36
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.18),
python3-csdr (>= 0.18.19),
${python3:Depends},
${misc:Depends}
Recommends: python3-digiham (>= 0.6),
@ -37,6 +37,7 @@ Recommends: python3-digiham (>= 0.6),
dump1090-fa-minimal,
dumphfdl,
dumpvdl2,
acarsdec,
rtl-433,
extra-sdr-drivers,
perseus-tools,
@ -49,3 +50,36 @@ Recommends: python3-digiham (>= 0.6),
imagemagick
Description: multi-user web sdr
Open source, multi-user SDR receiver with a web interface
Package: openwebrx-extras
Architecture: all
Depends: openwebrx,
python3-digiham (>= 0.6),
direwolf (>= 1.4),
wsjtx,
js8call,
runds-connector (>= 0.2),
hpsdrconnector,
aprs-symbols,
m17-demod,
js8call,
python3-js8py (>= 0.1),
nmux (>= 0.18),
codecserver (>= 0.1),
msk144decoder,
dump1090-fa-minimal,
dumphfdl,
dumpvdl2,
acarsdec,
rtl-433,
extra-sdr-drivers,
perseus-tools,
dream-headless,
codec2,
redsea,
python3-csdr-eti,
dablin,
multimon-ng,
imagemagick
Description: multi-user web sdr with all extras
Open source, multi-user SDR receiver with a web interface, optional decoders, and tools

View File

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