diff --git a/CHANGELOG.md b/CHANGELOG.md index ebd7750d..682e563a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +**1.2.24** +- Added support for EIBI shortwave schedules. +- Schedules updated monthly from the EIBI website. +- Map shows currently active transmitters, with 1-hour schedules. +- You can instantly tune by clicking on a schedule entry. +- Your current SDR profile must contain the clicked frequency. + **1.2.23** - Added OpenWebRX, WebSDR, and KiwiSDR locations to the map. - Added periodic updates of online SDR locations from the web. diff --git a/debian/changelog b/debian/changelog index fe149249..f557cee8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +openwebrx (1.2.24) bullseye jammy; urgency=low + + * Added support for EIBI shortwave schedules. + * Schedules updated monthly from the EIBI website. + * Map shows currently active transmitters, with 1-hour schedules. + * You can instantly tune by clicking on a schedule entry. + * Your current SDR profile must contain the clicked frequency. + + -- Marat Fayzullin Sat, 22 Jul 2023 16:12:00 +0000 + openwebrx (1.2.23) bullseye jammy; urgency=low * Added OpenWebRX, WebSDR, and KiwiSDR locations to the map. diff --git a/owrx/version.py b/owrx/version.py index 50a4532c..044c3ede 100644 --- a/owrx/version.py +++ b/owrx/version.py @@ -1,5 +1,5 @@ from distutils.version import LooseVersion -_versionstring = "1.2.23" +_versionstring = "1.2.24" looseversion = LooseVersion(_versionstring) openwebrx_version = "v{0}".format(looseversion)