Now using kHz by default in ExponentialInput.

This commit is contained in:
Marat Fayzullin 2024-04-05 20:38:43 -04:00
parent 28d9e820c2
commit fb8422dc55
3 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,7 @@
- Added columns to the time displays. - Added columns to the time displays.
- Fixed locators not aging when updated. - Fixed locators not aging when updated.
- Fixed race condition between move-profile requests. - Fixed race condition between move-profile requests.
- Now defaulting all fields to kHz in new profiles.
**1.2.53** **1.2.53**
- Added ability to reorder profiles in the Settings. - Added ability to reorder profiles in the Settings.

1
debian/changelog vendored
View File

@ -5,6 +5,7 @@ openwebrx (1.2.54) bullseye jammy; urgency=low
* Added columns to the time displays. * Added columns to the time displays.
* Fixed locators not aging when updated. * Fixed locators not aging when updated.
* Fixed race condition between move-profile requests. * Fixed race condition between move-profile requests.
* Now defaulting all fields to kHz in new profiles.
-- Marat Fayzullin <luarvique@gmail.com> Mon, 8 Apr 2024 16:12:00 +0000 -- Marat Fayzullin <luarvique@gmail.com> Mon, 8 Apr 2024 16:12:00 +0000

View File

@ -348,8 +348,8 @@ class ExponentialInput(Input):
append = """ append = """
<div class="input-group-append"> <div class="input-group-append">
<select class="input-group-text exponent" name="{id}-exponent" tabindex="-1" {disabled}> <select class="input-group-text exponent" name="{id}-exponent" tabindex="-1" {disabled}>
<option value="0" selected>{unit}</option> <option value="0">{unit}</option>
<option value="3">k{unit}</option> <option value="3" selected>k{unit}</option>
<option value="6">M{unit}</option> <option value="6">M{unit}</option>
<option value="9">G{unit}</option> <option value="9">G{unit}</option>
<option value="12">T{unit}</option> <option value="12">T{unit}</option>