From 8eb63eb5c4f1de6bd10b96ea80eb4fcedf30db8d Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Sat, 27 Jan 2024 23:04:51 +0100 Subject: [PATCH] config cleanup --- userconfig.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/userconfig.js b/userconfig.js index e4fd13a..101c367 100644 --- a/userconfig.js +++ b/userconfig.js @@ -2,15 +2,15 @@ const webServerHost = '0.0.0.0'; // IP of the web server const webServerPort = 8080; // web server port const webServerName = "Noobish's Server"; // web server name (will be displayed in title, bookmarks...) -const audioDeviceName = "Microphone (SADES Locust Plus)"; // Audio device name in your OS +const audioDeviceName = "Microphone (High Definition Audio Device)"; // Audio device name in your OS const audioPort = 8081; -const xdrdServerHost = '192.168.1.15'; // xdrd server IP (if it's running on the same machine, use 127.0.0.1) +const xdrdServerHost = '127.0.0.1'; // xdrd server IP (if it's running on the same machine, use 127.0.0.1) const xdrdServerPort = 7373; // xdrd server port -const xdrdPassword = 'changememe'; // xdrd password (optional) +const xdrdPassword = ''; // xdrd password (optional) -const qthLatitude = '50.357935'; // your latitude, useful for maps.fmdx.pl integration -const qthLongitude = '15.924395'; // your longitude, useful for maps.fmdx.pl integration +const qthLatitude = ''; // your latitude, useful for maps.fmdx.pl integration +const qthLongitude = ''; // your longitude, useful for maps.fmdx.pl integration const verboseMode = false; // if true, console will display extra messages