Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjust web and modem settings #887

Merged
merged 1 commit into from
Feb 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions freedata_gui/src/components/settings_modem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ const audioStore = useAudioStore(pinia);
<strong><i class="bi bi-gear-wide-connected me-1"></i>Modem and Audio</strong> related settings, including starting/stopping the modem, configuring audio devices, and adjusting audio levels.
</div>

<div class="alert alert-light" role="alert">
Settings in <strong class="text-danger">RED</strong> require a server restart!
</div>

<!-- Start and Stop Modem Buttons -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Expand Down Expand Up @@ -65,7 +69,7 @@ const audioStore = useAudioStore(pinia);
</div>
<!-- Modem Port -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
<label class="input-group-text w-50 text-wrap text-danger">
Modem port
<button
type="button"
Expand All @@ -91,7 +95,7 @@ const audioStore = useAudioStore(pinia);

<!-- Modem Host -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
<label class="input-group-text w-50 text-wrap text-danger">
Modem host
<button
type="button"
Expand Down
12 changes: 8 additions & 4 deletions freedata_gui/src/components/settings_web.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,19 @@ import { settingsStore as settings, onChange } from "../store/settingsStore.js";
<strong><i class="bi bi-gear-wide-connected me-1"></i>Explorer</strong> related settings, including enabling <strong>Explorer publishing</strong> and <strong>Explorer stats publishing</strong>.
</div>

<div class="alert alert-light" role="alert">
Publish information like your frequency or heard stations to <strong>https://explorer.freedata.app</strong>, so other users can see your stations status. Publishing stats is currently under development and might be broken.
</div>

<!-- Explorer Publishing -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Explorer publishing
publish station status
<button
type="button"
class="btn btn-link p-0 ms-2"
data-bs-toggle="tooltip"
title="Share your station's data with the Explorer network"
title="Share your station's status with FreeDATA web service"
>
<i class="bi bi-question-circle"></i>
</button>
Expand All @@ -43,12 +47,12 @@ import { settingsStore as settings, onChange } from "../store/settingsStore.js";
<!-- Explorer Stats Publishing -->
<div class="input-group input-group-sm mb-1">
<label class="input-group-text w-50 text-wrap">
Explorer stats publishing
publish statistics
<button
type="button"
class="btn btn-link p-0 ms-2"
data-bs-toggle="tooltip"
title="Share your station's statistics with the Explorer network"
title="Share your station's statistics with FreeDATA web service"
>
<i class="bi bi-question-circle"></i>
</button>
Expand Down
Loading