Incrementing version number.

This commit is contained in:
Marat Fayzullin 2023-10-20 19:15:35 -04:00
parent 7227e19bd0
commit 932b745cbb
3 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
**1.2.34**
- Added colored band/mode designators to locator info windows.
- Reworked locator info, adding colored band/mode designators.
- Improved locator square colors to also reflect reports' age.
- Linked HAM callsigns and AIS vessel IDs to respective websites.
- Added country name tooltips to HAM callsigns and AIS vessel IDs.
- Hopefully fixed FAX decoder randomly restarting a page.
- Hopefully fixed FAX decoder randomly restarting on a new page.
- Moved common JavaScript functions to Utils.js.
- Fixed links on HFDL flight reports.
- Silenced EIBI log warnings.

4
debian/changelog vendored
View File

@ -1,10 +1,10 @@
openwebrx (1.2.34) bullseye jammy; urgency=low
* Added colored band/mode designators to locator info windows.
* Reworked locator info, adding colored band/mode designators.
* Improved locator square colors to also reflect reports' age.
* Linked HAM callsigns and AIS vessel IDs to respective websites.
* Added country name tooltips to HAM callsigns and AIS vessel IDs.
* Hopefully fixed FAX decoder randomly restarting a page.
* Hopefully fixed FAX decoder randomly restarting on a new page.
* Moved common JavaScript functions to Utils.js.
* Fixed links on HFDL flight reports.
* Silenced EIBI log warnings.

View File

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