post-release cleanup

This commit is contained in:
Jakob Ketterl 2020-06-13 19:25:15 +02:00
parent bead51db69
commit 83ff417f4d
4 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,5 @@
**unreleased**
**0.19.1**
- Added ability to authenticate receivers with listing sites using "receiver id" tokens

4
debian/changelog vendored
View File

@ -1,3 +1,7 @@
openwebrx (0.20.0) UNRELEASED; urgency=low
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sat, 13 Jun 2020 17:22:00 +0000
openwebrx (0.19.1) buster focal; urgency=low
* Added ability to authenticate receivers with listing sites using

View File

@ -45,6 +45,10 @@
</div>
<div id="openwebrx-panels-container">
<div id="openwebrx-panels-container-left">
<div class="openwebrx-panel" data-panel-name="client-under-devel" style="width: 245px; background-color: Red;">
<span style="font-size: 15pt; font-weight: bold;">Under construction</span>
<br />We're working on the code right now, so the application might fail.
</div>
<div class="openwebrx-panel" id="openwebrx-panel-digimodes" style="display: none; width: 619px;" data-panel-name="digimodes">
<div id="openwebrx-digimode-canvas-container">
<div id="openwebrx-digimode-select-channel"></div>

View File

@ -1,5 +1,5 @@
from distutils.version import StrictVersion
_versionstring = "0.19.1"
_versionstring = "0.20.0"
strictversion = StrictVersion(_versionstring)
openwebrx_version = "v{0}".format(strictversion)