release version 0.20.0

This commit is contained in:
Jakob Ketterl 2020-10-11 15:03:39 +02:00
parent ce39de14e8
commit 1cec386c18
5 changed files with 6 additions and 13 deletions

4
debian/changelog vendored
View File

@ -1,4 +1,4 @@
openwebrx (0.20.0) UNRELEASED; urgency=low
openwebrx (0.20.0) buster focal; urgency=low
* Added the ability to sign multiple keys in a single request, thus enabling
multiple users to claim a single receiver on receiverbook.de
@ -14,7 +14,7 @@ openwebrx (0.20.0) UNRELEASED; urgency=low
- FunCube Dongle Pro+ (`"type": "fcdpp"`)
- Support for connections to rtl_tcp (`"type": "rtl_tcp"`)
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sat, 13 Jun 2020 17:22:00 +0000
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sun, 11 Oct 2020 13:02:00 +0000
openwebrx (0.19.1) buster focal; urgency=low

View File

@ -24,8 +24,7 @@ apt-get update
apt-get -y install --no-install-recommends $BUILD_PACKAGES
git clone https://github.com/jketterl/owrx_connector.git
# this is the latest development version as of 2020-10-04 (ability to build rtl_tcp_connector alone)
cmakebuild owrx_connector ccbf42c78c06c4e1c3e0de6e9ef34fba72a60c75
cmakebuild owrx_connector 0.3.0
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean

View File

@ -32,8 +32,7 @@ rm -rf js8py
git clone https://github.com/jketterl/csdr.git
cd csdr
# develop as of 2020-09-06 (fractional_decimator_cc pointer fix)
git checkout f123f81add2f84e3ada66d66afd53cf96b7fec94
git checkout 0.17.0
autoreconf -i
./configure
make
@ -42,8 +41,7 @@ cd ..
rm -rf csdr
git clone https://github.com/jketterl/digiham.git
# latest commit from develop as of 2020-10-04
cmakebuild digiham 66871051b5d943703c1024ba4293e45efc2a450d
cmakebuild digiham 0.3.0
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean

View File

@ -45,10 +45,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.20.0-dev"
_versionstring = "0.20.0"
looseversion = LooseVersion(_versionstring)
openwebrx_version = "v{0}".format(looseversion)