Preparing for the next release.
This commit is contained in:
parent
9856920519
commit
c4b64e0f01
22
CHANGELOG.md
22
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**
|
**1.2.29**
|
||||||
- Added worldwide OpenWeatherMap support (needs key).
|
- Added worldwide OpenWeatherMap support (needs key).
|
||||||
- Added NFM to SSTV underlying modes (needs testing).
|
- Added NFM to SSTV underlying modes (needs testing).
|
||||||
|
|
|
||||||
|
|
@ -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 <luarvique@gmail.com> Sat, 16 Sep 2023 16:12:00 +0000
|
||||||
|
|
||||||
openwebrx (1.2.29) bullseye jammy; urgency=low
|
openwebrx (1.2.29) bullseye jammy; urgency=low
|
||||||
|
|
||||||
* Added worldwide OpenWeatherMap support (needs key).
|
* Added worldwide OpenWeatherMap support (needs key).
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ Vcs-Git: https://github.com/luarvique/openwebrx.git
|
||||||
|
|
||||||
Package: openwebrx
|
Package: openwebrx
|
||||||
Architecture: all
|
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
|
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
|
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
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
_versionstring = "1.2.29"
|
_versionstring = "1.2.30"
|
||||||
looseversion = LooseVersion(_versionstring)
|
looseversion = LooseVersion(_versionstring)
|
||||||
openwebrx_version = "v{0}".format(looseversion)
|
openwebrx_version = "v{0}".format(looseversion)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue