Merge branch 'develop' into rf103
This commit is contained in:
commit
8bb6e91597
@ -1,5 +1,6 @@
|
|||||||
**unreleased**
|
**unreleased**
|
||||||
- Introduced `squelch_auto_margin` config option that allows configuring the auto squelch level
|
- 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
|
||||||
|
|
||||||
**0.20.0**
|
**0.20.0**
|
||||||
- Added the ability to sign multiple keys in a single request, thus enabling multiple users to claim a single receiver
|
- Added the ability to sign multiple keys in a single request, thus enabling multiple users to claim a single receiver
|
||||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,6 +1,8 @@
|
|||||||
openwebrx (0.21.0) UNRELEASED; urgency=low
|
openwebrx (0.21.0) UNRELEASED; urgency=low
|
||||||
* Introduced `squelch_auto_margin` config option that allows configuring the
|
* Introduced `squelch_auto_margin` config option that allows configuring the
|
||||||
auto squelch level
|
auto squelch level
|
||||||
|
* Removed `port` configuration option; `rtltcp_compat` takes the port number
|
||||||
|
with the new connectors
|
||||||
|
|
||||||
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sun, 11 Oct 2020 21:12:00 +0000
|
-- Jakob Ketterl <jakob.ketterl@gmx.de> Sun, 11 Oct 2020 21:12:00 +0000
|
||||||
|
|
||||||
|
@ -59,9 +59,6 @@ class SdrSource(ABC):
|
|||||||
self.activateProfile()
|
self.activateProfile()
|
||||||
self.wireEvents()
|
self.wireEvents()
|
||||||
|
|
||||||
if "port" in props and props["port"] is not None:
|
|
||||||
self.port = props["port"]
|
|
||||||
else:
|
|
||||||
self.port = getAvailablePort()
|
self.port = getAvailablePort()
|
||||||
self.monitor = None
|
self.monitor = None
|
||||||
self.clients = []
|
self.clients = []
|
||||||
|
@ -23,7 +23,7 @@ class ConnectorSource(SdrSource):
|
|||||||
"controlPort": Option("-c"),
|
"controlPort": Option("-c"),
|
||||||
"device": Option("-d"),
|
"device": Option("-d"),
|
||||||
"iqswap": Flag("-i"),
|
"iqswap": Flag("-i"),
|
||||||
"rtltcp_compat": Flag("-r"),
|
"rtltcp_compat": Option("-r"),
|
||||||
"ppm": Option("-P"),
|
"ppm": Option("-P"),
|
||||||
"rf_gain": Option("-g"),
|
"rf_gain": Option("-g"),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user