prepare release 1.0.0

This commit is contained in:
Jakob Ketterl 2021-05-06 19:27:43 +02:00
parent 7fc7fe5e82
commit f86487f459
4 changed files with 4 additions and 8 deletions

View File

@ -1,4 +1,4 @@
**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
- Added support for new WSJT-X modes FST4, FST4W (only available with WSJT-X 2.3) and Q65 (only avilable with

4
debian/changelog vendored
View File

@ -1,4 +1,4 @@
openwebrx (0.21.0) UNRELEASED; urgency=low
openwebrx (1.0.0) buster hirsute; urgency=low
* Introduced `squelch_auto_margin` config option that allows configuring the
auto squelch level
* Removed `port` configuration option; `rtltcp_compat` takes the port number
@ -30,7 +30,7 @@ openwebrx (0.21.0) UNRELEASED; urgency=low
- BBRF103 / RX666 / RX888 devices supported by libsddc
- R&S devices using the EB200 or Ammos protocols
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sun, 11 Oct 2020 21:12:00 +0000
-- Jakob Ketterl <jakob.ketterl@gmx.de> Thu, 06 May 2021 17:22:00 +0000
openwebrx (0.20.3) buster focal; urgency=low

View File

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