Added cue to auto bookmark distance setting.
This commit is contained in:
parent
9558910471
commit
a759f50ea3
|
|
@ -5,6 +5,7 @@
|
|||
- Set range to 0km to disable autogenerated bookmarks (default).
|
||||
- Fixed locked source switch resetting it for all connections.
|
||||
- Separated default bookmarks by type, removing rarely used.
|
||||
- Fixed profile setting cues blowing up page layout.
|
||||
- Fixed fax frequency for Pevek.
|
||||
- Improved EIBI parser a bit.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ openwebrx (1.2.26) bullseye jammy; urgency=low
|
|||
* Set range to 0km to disable autogenerated bookmarks (default).
|
||||
* Fixed locked source switch resetting it for all connections.
|
||||
* Separated default bookmarks by type, removing rarely used.
|
||||
* Fixed profile setting cues blowing up page layout.
|
||||
* Fixed fax frequency for Pevek.
|
||||
* Improved EIBI parser a bit.
|
||||
|
||||
|
|
|
|||
|
|
@ -647,6 +647,9 @@ class SdrDeviceDescription(object):
|
|||
NumberInput(
|
||||
"eibi_bookmarks_range",
|
||||
"Automatic bookmarks range",
|
||||
infotext="Specifies the distance from the receiver location to "
|
||||
+ "search EIBI schedules for stations when creating automatic "
|
||||
+ "bookmarks. Set to 0 to disable automatic bookmarks.",
|
||||
validator=RangeValidator(0, 25000),
|
||||
append="km",
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue