From c4b64e0f01368e8bc0fc49dd71cdb86edff48968 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Wed, 13 Sep 2023 16:28:01 -0400 Subject: [PATCH] Preparing for the next release. --- CHANGELOG.md | 22 ++++++++++++++++++++++ debian/changelog | 25 +++++++++++++++++++++++++ debian/control | 2 +- owrx/version.py | 2 +- 4 files changed, 49 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f59a9ed2..4217bac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +**1.2.30** +- Updated OpenWebRX+ with changes from Jakob's develop branch. +- Added Jakob's RTTY decoder and made it the default. +- Added ACARS aircraft protocol decoder, using AcarsDec. +- Added aircraft manager fusing data from multiple sources. +- Added background mode for HFDL, VDL2, ADSB, ACARS decoders. +- Added background aircraft map position updates. +- Added origin and destionation airport display (ACARS). +- Added default bookmarks for ACARS frequencies. +- Added SDRPlay High Dynamic Resolution (HDR) option. +- Device log now shown at the device settings page. +- Fixed a crash after switching from ADSB to other profiles. +- Fixed linkify() failing on aircraft IDs containing dash. +- Fixed repeater bookmarks to report NFM modulation. +- Fixed APRS stormcloud symbol to face east. +- Switched many digital IQ decoders to use EMPTY modulation. +- Switched TextParser to LineBasedModule base. +- Optimized MultiMon-based digital decoders. +- Removed secondary ADSB waterfall to improve performance. +- Painted YES/NO feature indicators red and green. +- Changed ICAO ID lookup URL to FlightAware. + **1.2.29** - Added worldwide OpenWeatherMap support (needs key). - Added NFM to SSTV underlying modes (needs testing). diff --git a/debian/changelog b/debian/changelog index d3d61a45..774767d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,28 @@ +openwebrx (1.2.30) bullseye jammy; urgency=low + + * Updated OpenWebRX+ with changes from Jakob's develop branch. + * Added Jakob's RTTY decoder and made it the default. + * Added ACARS aircraft protocol decoder, using AcarsDec. + * Added aircraft manager fusing data from multiple sources. + * Added background mode for HFDL, VDL2, ADSB, ACARS decoders. + * Added background aircraft map position updates. + * Added origin and destionation airport display (ACARS). + * Added default bookmarks for ACARS frequencies. + * Added SDRPlay High Dynamic Resolution (HDR) option. + * Device log now shown at the device settings page. + * Fixed a crash after switching from ADSB to other profiles. + * Fixed linkify() failing on aircraft IDs containing dash. + * Fixed repeater bookmarks to report NFM modulation. + * Fixed APRS stormcloud symbol to face east. + * Switched many digital IQ decoders to use EMPTY modulation. + * Switched TextParser to LineBasedModule base. + * Optimized MultiMon-based digital decoders. + * Removed secondary ADSB waterfall to improve performance. + * Painted YES/NO feature indicators red and green. + * Changed ICAO ID lookup URL to FlightAware. + + -- Marat Fayzullin Sat, 16 Sep 2023 16:12:00 +0000 + openwebrx (1.2.29) bullseye jammy; urgency=low * Added worldwide OpenWeatherMap support (needs key). diff --git a/debian/control b/debian/control index 074ad8c5..8dec9c9f 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Vcs-Git: https://github.com/luarvique/openwebrx.git Package: openwebrx Architecture: all -Depends: adduser, python3 (>= 3.5), python3-pkg-resources, owrx-connector (>= 0.6), soapysdr-tools, python3-csdr (>= 0.18.13), ${python3:Depends}, ${misc:Depends} +Depends: adduser, python3 (>= 3.5), python3-pkg-resources, owrx-connector (>= 0.6), soapysdr-tools, python3-csdr (>= 0.18.14), ${python3:Depends}, ${misc:Depends} Recommends: 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, multimon-ng, rtl-433, dumphfdl, dumpvdl2, dump1090-fa-minimal, imagemagick Description: multi-user web sdr Open source, multi-user SDR receiver with a web interface diff --git a/owrx/version.py b/owrx/version.py index cc553857..4f5ddba6 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.29" +_versionstring = "1.2.30" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)