bumb develop to the next minor version

This commit is contained in:
Jakob Ketterl 2021-05-09 16:06:03 +02:00
parent 0c9d37e381
commit a006d8c125
4 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,5 @@
**1.1.x - unreleased**
**1.0.0**
- Introduced `squelch_auto_margin` config option that allows configuring the auto squelch level
- Removed `port` configuration option; `rtltcp_compat` takes the port number with the new connectors

4
debian/changelog vendored
View File

@ -1,3 +1,7 @@
openwebrx (1.1.0) UNRELEASED; urgency=low
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sun, 09 May 2021 14:05:00 +0000
openwebrx (1.0.0) buster hirsute; urgency=low
* Introduced `squelch_auto_margin` config option that allows configuring the
auto squelch level

View File

@ -47,6 +47,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 LooseVersion
_versionstring = "1.0.0"
_versionstring = "1.1.0-dev"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)