kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Merge branch 'default-updates' into 'master'
Change defaults See merge request gridtracker.org/gridtracker!262 If this is changing anything in the UI or operational behavior, please prepare to update the wiki!merge-requests/237/merge v1.23.0110
commit
bd1f3a9b66
|
@ -1,3 +1,7 @@
|
|||
gridtracker (1.23.0110) unstable; urgency=high
|
||||
- Emergency LoTW fix
|
||||
-- Tag Loomis <n0ttl@gridtracker.org> Tue, 10 Jan 2023 00:00:00 -0000
|
||||
|
||||
gridtracker (1.22.1226) unstable; urgency=low
|
||||
- Fixed lightning strikes not showing on map
|
||||
- Fixed distance in status panel
|
||||
|
|
|
@ -40,6 +40,8 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
|
|||
%license %{_docdir}/%{name}/
|
||||
|
||||
%changelog
|
||||
* Tue Jan 10 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0110-1
|
||||
- Emergency LoTW fix
|
||||
* Mon Dec 26 2022 Tag Loomis <n0ttl@gridtracker.org> - 1.22.1226-1
|
||||
- Fixed lightning strikes not showing on map
|
||||
- Fixed distance in status panel
|
||||
|
|
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
|
@ -1143,8 +1143,8 @@ function loadLoTWLogFile()
|
|||
else
|
||||
{
|
||||
// We have no history, so our dates are not valid any more
|
||||
g_adifLogSettings.lastFetch.lotw_qso = "1940-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qsl = "1940-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qso = "1970-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qsl = "1970-01-01";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -43,9 +43,9 @@ var def_appSettings = {
|
|||
gridViewMode: 3,
|
||||
gridsquareDecayTime: 300,
|
||||
gtAgree: "",
|
||||
gtBandFilter: "",
|
||||
gtBandFilter: "auto",
|
||||
gtFlagImgSrc: 0,
|
||||
gtModeFilter: "",
|
||||
gtModeFilter: "auto",
|
||||
gtPropFilter: "mixed",
|
||||
gtMsgEnable: true,
|
||||
gtShareEnable: true,
|
||||
|
@ -145,7 +145,7 @@ var def_adifLogSettings = {
|
|||
buttonClubCheckBox: false,
|
||||
buttonLOTWCheckBox: false,
|
||||
buttonQRZCheckBox: false,
|
||||
buttonPsk24CheckBox: true
|
||||
buttonPsk24CheckBox: false
|
||||
},
|
||||
startup: {
|
||||
loadAdifCheckBox: false,
|
||||
|
@ -187,8 +187,8 @@ var def_adifLogSettings = {
|
|||
},
|
||||
downloads: {},
|
||||
lastFetch: {
|
||||
lotw_qso: "1940-01-01",
|
||||
lotw_qsl: "1940-01-01"
|
||||
lotw_qso: "1970-01-01",
|
||||
lotw_qsl: "1970-01-01"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -5079,8 +5079,8 @@ function clearLogFilesAndCounts()
|
|||
tryToDeleteLog("qrz.adif");
|
||||
tryToDeleteLog("clublog.adif");
|
||||
g_adifLogSettings.downloads = {};
|
||||
g_adifLogSettings.lastFetch.lotw_qso = "1940-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qsl = "1940-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qso = "1970-01-01";
|
||||
g_adifLogSettings.lastFetch.lotw_qsl = "1970-01-01";
|
||||
saveAdifSettings();
|
||||
}
|
||||
|
||||
|
@ -11117,38 +11117,60 @@ function updateBasedOnIni()
|
|||
{
|
||||
var which = null;
|
||||
var count = 0;
|
||||
if (g_wsjtxProcessRunning) count++;
|
||||
if (g_jtdxProcessRunning) count++;
|
||||
// UdpPortNotSet
|
||||
if (g_appSettings.wsjtUdpPort == 0 && count == 1)
|
||||
if (g_wsjtxProcessRunning)
|
||||
{
|
||||
if (g_wsjtxProcessRunning) which = g_wsjtxIni;
|
||||
else if (g_jtdxProcessRunning) which = g_jtdxIni;
|
||||
count++;
|
||||
}
|
||||
if (g_jtdxProcessRunning)
|
||||
{
|
||||
count++;
|
||||
}
|
||||
// UdpPortNotSet
|
||||
if (g_appSettings.wsjtUdpPort == 0 && count < 2)
|
||||
{
|
||||
if (g_wsjtxProcessRunning || count == 0)
|
||||
{
|
||||
which = g_wsjtxIni;
|
||||
}
|
||||
else if (g_jtdxProcessRunning)
|
||||
{
|
||||
which = g_jtdxIni;
|
||||
}
|
||||
|
||||
if (which != null && which.port > -1)
|
||||
{
|
||||
g_appSettings.wsjtUdpPort = which.port;
|
||||
g_appSettings.wsjtIP = which.ip;
|
||||
}
|
||||
|
||||
if (which == null)
|
||||
{
|
||||
g_appSettings.wsjtUdpPort = 2237;
|
||||
g_appSettings.wsjtIP = "";
|
||||
}
|
||||
if (
|
||||
ipToInt(g_appSettings.wsjtIP) >= ipToInt("224.0.0.0") &&
|
||||
ipToInt(g_appSettings.wsjtIP) < ipToInt("240.0.0.0")
|
||||
)
|
||||
|
||||
if (ipToInt(g_appSettings.wsjtIP) >= ipToInt("224.0.0.0") && ipToInt(g_appSettings.wsjtIP) < ipToInt("240.0.0.0"))
|
||||
{
|
||||
g_appSettings.multicast = true;
|
||||
}
|
||||
else g_appSettings.multicast = false;
|
||||
else
|
||||
{
|
||||
g_appSettings.multicast = false;
|
||||
}
|
||||
}
|
||||
// Which INI do we load?
|
||||
if (g_appSettings.wsjtUdpPort)
|
||||
{
|
||||
which = null;
|
||||
if (g_wsjtxIni.port == g_appSettings.wsjtUdpPort) which = g_wsjtxIni;
|
||||
else if (g_jtdxIni.port == g_appSettings.wsjtUdpPort) which = g_jtdxIni;
|
||||
if (g_wsjtxIni.port == g_appSettings.wsjtUdpPort)
|
||||
{
|
||||
which = g_wsjtxIni;
|
||||
}
|
||||
else if (g_jtdxIni.port == g_appSettings.wsjtUdpPort)
|
||||
{
|
||||
which = g_jtdxIni;
|
||||
}
|
||||
|
||||
if (which != null)
|
||||
{
|
||||
myDEcall = which.MyCall;
|
||||
|
@ -11157,25 +11179,17 @@ function updateBasedOnIni()
|
|||
g_lastMode = myMode;
|
||||
g_workingIniPath = which.IniPath;
|
||||
}
|
||||
if (
|
||||
which != null &&
|
||||
which.BroadcastToN1MM == true &&
|
||||
g_N1MMSettings.enable == true
|
||||
)
|
||||
|
||||
if (which != null && which.BroadcastToN1MM == true && g_N1MMSettings.enable == true)
|
||||
{
|
||||
if (
|
||||
which.N1MMServer == g_N1MMSettings.ip &&
|
||||
which.N1MMServerPort == g_N1MMSettings.port
|
||||
)
|
||||
if (which.N1MMServer == g_N1MMSettings.ip && which.N1MMServerPort == g_N1MMSettings.port)
|
||||
{
|
||||
buttonN1MMCheckBox.checked = g_N1MMSettings.enable = false;
|
||||
localStorage.N1MMSettings = JSON.stringify(g_N1MMSettings);
|
||||
alert(
|
||||
which.appName +
|
||||
" N1MM Logger+ is enabled with same settings, disabled GridTracker N1MM logger"
|
||||
);
|
||||
alert(which.appName + " N1MM Logger+ is enabled with same settings, disabled GridTracker N1MM logger");
|
||||
}
|
||||
}
|
||||
|
||||
if (which != null)
|
||||
{
|
||||
if (g_appSettings.wsjtIP == "")
|
||||
|
@ -11184,37 +11198,34 @@ function updateBasedOnIni()
|
|||
}
|
||||
}
|
||||
}
|
||||
if (myDEGrid.length > 0) setHomeGridsquare();
|
||||
|
||||
if (myDEGrid.length > 0)
|
||||
{
|
||||
setHomeGridsquare();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (typeof nw != "undefined")
|
||||
{
|
||||
alert("Location not available!\nEither start WSJT-X/JTDX or enter your grid square in the settings ");
|
||||
}
|
||||
alert("Location not available!\nEither start WSJT-X/JTDX or enter your grid square in settings");
|
||||
}
|
||||
}
|
||||
|
||||
function CheckReceivePortIsNotForwardPort(value)
|
||||
{
|
||||
if (
|
||||
udpForwardIpInput.value == "127.0.0.1" &&
|
||||
udpForwardPortInput.value == value &&
|
||||
g_appSettings.wsjtIP == "" &&
|
||||
udpForwardEnable.checked
|
||||
)
|
||||
if (udpForwardIpInput.value == "127.0.0.1" && udpForwardPortInput.value == value && g_appSettings.wsjtIP == "" && udpForwardEnable.checked)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function CheckForwardPortIsNotReceivePort(value)
|
||||
{
|
||||
if (
|
||||
udpForwardIpInput.value == "127.0.0.1" &&
|
||||
udpPortInput.value == value &&
|
||||
g_appSettings.wsjtIP == ""
|
||||
) { return false; }
|
||||
if (udpForwardIpInput.value == "127.0.0.1" && udpPortInput.value == value && g_appSettings.wsjtIP == "")
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -11630,13 +11641,10 @@ function applyCallsignsAndDates()
|
|||
|
||||
function selectElementContents(el)
|
||||
{
|
||||
var body = document.body,
|
||||
range,
|
||||
sel;
|
||||
if (document.createRange && window.getSelection)
|
||||
{
|
||||
range = document.createRange();
|
||||
sel = window.getSelection();
|
||||
var range = document.createRange();
|
||||
var sel = window.getSelection();
|
||||
sel.removeAllRanges();
|
||||
range.selectNodeContents(el);
|
||||
sel.addRange(range);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "GridTracker",
|
||||
"product_string_do_not_use": "gridtracker",
|
||||
"version": "1.22.1226",
|
||||
"version": "1.23.0110",
|
||||
"betaVersion": "",
|
||||
"description": "GridTracker, an amateur radio companion",
|
||||
"author": "GridTracker.org",
|
||||
|
|
Ładowanie…
Reference in New Issue