and more linting related changes

This commit is contained in:
DJ2LS 2023-10-03 21:28:24 +02:00
parent 4f080d2640
commit 80c61eab04
4 changed files with 10 additions and 13 deletions

View file

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/DJ2LS/FreeDATA.git"
},
"keywords": [
"keywords": [
"TNC",
"GUI",
"FreeDATA",
@ -26,9 +26,9 @@
"bugs": {
"url": "https://github.com/DJ2LS/FreeDATA/issues"
},
"homepage": "https://freedata.app",
"homepage": "https://freedata.app",
"dependencies": {
"@electron/notarize": "^2.1.0",
"@vueuse/electron": "^10.4.1",
"blob-util": "^2.0.2",
"bootstrap": "^5.3.1",
@ -37,7 +37,6 @@
"browser-image-compression": "^2.0.2",
"chart.js": "^4.3.3",
"chartjs-plugin-annotation": "^3.0.1",
"@electron/notarize": "^1.5.1",
"electron-log": "^4.4.8",
"electron-updater": "^6.1.1",
"emoji-picker-element": "^1.18.3",
@ -45,6 +44,7 @@
"mime": "^3.0.0",
"pinia": "^2.1.6",
"pouchdb": "^8.0.1",
"pouchdb-browser": "^8.0.1",
"pouchdb-find": "^8.0.1",
"pouchdb-upsert": "^2.2.0",
"qth-locator": "^2.1.0",

View file

@ -145,7 +145,7 @@ function startStopRecordAudio() {
class="justify-content-center d-flex position-absolute w-100"
id="dbfs_level_value"
>
{{ state.dbfs_level }} dBFS
{{ state.dbfs_level_raw }} dBFS
</p>
</div>
<div

View file

@ -16,13 +16,10 @@ import { startTNC, stopTNC } from "../js/daemon.js";
function startStopTNC() {
switch (state.tnc_running_state) {
case "stopped":
// todo: is there another way of doing this, maybe more VueJS like?
settings.rx_audio = document.getElementById(
"audio_input_selectbox",
).value;
settings.tx_audio = document.getElementById(
"audio_output_selectbox",
).value;
settings.rx_audio = (<HTMLInputElement>document.getElementById("audio_input_selectbox")).value;
settings.tx_audio = (<HTMLInputElement>document.getElementById("audio_output_selectbox")).value;
startTNC();

View file

@ -1,4 +1,4 @@
import { createApp, Vue } from 'vue'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import {loadSettings} from './js/settingsHandler'