some more gui polising

This commit is contained in:
DJ2LS 2023-10-27 23:26:54 +02:00
parent 44a49a84a3
commit c68c952f13
4 changed files with 7 additions and 12 deletions

View file

@ -98,7 +98,7 @@ const state = useStateStore(pinia);
-->
<button
class="btn btn-sm disabled me-3"
class="btn btn-sm btn-secondary disabled me-3"
type="button"
data-bs-placement="top"
data-bs-toggle="tooltip"

View file

@ -87,7 +87,7 @@ alert("not yet implemented")
aria-controls="list-rig-control-none"
v-bind:class="{ active: settings.radiocontrol === 'disabled' }"
@click="selectRadioControl()"
>None/Vox</a
>None</a
>
<a
class="p-1 list-group-item list-group-item-dark list-group-item-action"
@ -139,7 +139,8 @@ alert("not yet implemented")
>
<p class="small">
Modem will not utilize rig control and features will be limited. While
functional; it is recommended to configure hamlib.
functional; it is recommended to configure hamlib. <br>
Use this setting also for <strong> VOX </strong>
</p>
</div>
<div

View file

@ -183,7 +183,7 @@ export function startModem() {
low_bandwidth_mode: settings.low_bandwidth_mode,
tuning_range_fmin: settings.tuning_range_fmin,
tuning_range_fmax: settings.tuning_range_fmax,
//tx_audio_level: settings.tx_audio_level,
tx_audio_level: settings.tx_audio_level,
respond_to_cq: settings.respond_to_cq,
rx_buffer_size: settings.rx_buffer_size,
enable_explorer: settings.enable_explorer,

View file

@ -224,13 +224,7 @@ class DAEMON:
radiocontrol = data[1]
# check how we want to control the radio
if radiocontrol == "direct":
print("direct hamlib support deprecated - not usable anymore")
sys.exit(1)
elif radiocontrol == "rigctl":
print("rigctl support deprecated - not usable anymore")
sys.exit(1)
elif radiocontrol == "rigctld":
if radiocontrol == "rigctld":
import rigctld as rig
rigctld_ip = data[2]
rigctld_port = data[3]
@ -501,7 +495,7 @@ class DAEMON:
print(data[24])
if data[24] == "True":
options.append("--mesh")
print(options)
# safe data to config file
config.write_entire_config(data)