Preparing for the next release.
This commit is contained in:
parent
ada7315330
commit
b5fa5d215a
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -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**
|
**1.2.49**
|
||||||
- Added optimizations to DAB processing made by Jakob.
|
- Added optimizations to DAB processing made by Jakob.
|
||||||
- Removed bandpass filters from ADS-B and ISM modes.
|
- Removed bandpass filters from ADS-B and ISM modes.
|
||||||
|
|
|
||||||
|
|
@ -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
|
openwebrx (1.2.49) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added optimizations to DAB processing made by Jakob.
|
* Added optimizations to DAB processing made by Jakob.
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ Depends: adduser,
|
||||||
python3 (>= 3.5),
|
python3 (>= 3.5),
|
||||||
python3-pkg-resources,
|
python3-pkg-resources,
|
||||||
owrx-connector (>= 0.6.5),
|
owrx-connector (>= 0.6.5),
|
||||||
python3-csdr (>= 0.18.18),
|
python3-csdr (>= 0.18.19),
|
||||||
${python3:Depends},
|
${python3:Depends},
|
||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
Recommends: python3-digiham (>= 0.6),
|
Recommends: python3-digiham (>= 0.6),
|
||||||
|
|
@ -37,6 +37,7 @@ Recommends: python3-digiham (>= 0.6),
|
||||||
dump1090-fa-minimal,
|
dump1090-fa-minimal,
|
||||||
dumphfdl,
|
dumphfdl,
|
||||||
dumpvdl2,
|
dumpvdl2,
|
||||||
|
acarsdec,
|
||||||
rtl-433,
|
rtl-433,
|
||||||
extra-sdr-drivers,
|
extra-sdr-drivers,
|
||||||
perseus-tools,
|
perseus-tools,
|
||||||
|
|
@ -49,3 +50,36 @@ Recommends: python3-digiham (>= 0.6),
|
||||||
imagemagick
|
imagemagick
|
||||||
Description: multi-user web sdr
|
Description: multi-user web sdr
|
||||||
Open source, multi-user SDR receiver with a web interface
|
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
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
_versionstring = "1.2.49"
|
_versionstring = "1.2.50"
|
||||||
looseversion = LooseVersion(_versionstring)
|
looseversion = LooseVersion(_versionstring)
|
||||||
openwebrx_version = "v{0}".format(looseversion)
|
openwebrx_version = "v{0}".format(looseversion)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue