Preparing for 1.2.39 release.

This commit is contained in:
Marat Fayzullin 2023-11-16 21:37:05 -05:00
parent 646364dac6
commit af7b233590
3 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,10 @@
**1.2.39**
- Added connected clients display to the Settings page.
- Added ability to ban clients for chosen amount of time.
- Added ability to unban previously banned clients.
- Fixed agent string to make RepeaterBook work.
- Disabled buffering when saving logs from background decoders.
**1.2.38**
- Fixed primary modulation change with digital decoders.
- Fixed secondary frequency when changing bandpass.

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
openwebrx (1.2.39) bullseye jammy; urgency=low
* Added connected clients display to the Settings page.
* Added ability to ban clients for chosen amount of time.
* Added ability to unban previously banned clients.
* Fixed agent string to make RepeaterBook work.
* Disabled buffering when saving logs from background decoders.
-- Marat Fayzullin <luarvique@gmail.com> Sat, 18 Nov 2023 16:12:00 +0000
openwebrx (1.2.38) bullseye jammy; urgency=low
* Fixed primary modulation change with digital decoders.

View File

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