Merge branch 'lotw-time-fix' into 'master'

Lotw time fix

See merge request gridtracker.org/gridtracker!269

If this is changing anything in the UI or operational behavior, please prepare to update the wiki!
merge-requests/237/merge v1.23.0206
T Loomis 2023-02-05 04:23:10 +00:00
commit 6bccc51cad
6 zmienionych plików z 9 dodań i 9 usunięć

5
debian/changelog vendored
Wyświetl plik

@ -1,4 +1,4 @@
gridtracker (1.23.0205) unstable; urgency=low
gridtracker (1.23.0206) unstable; urgency=low
- Bugfix for Turkey zone 1 decodes
- Heatmap part of “Spots” button, Hotkey H removed
- GT flags button follow “Map View Filters”
@ -12,7 +12,8 @@ gridtracker (1.23.0205) unstable; urgency=low
- Added OAMS based band activity
- Award Tracker CQ Zone and State fix
- <...> treated as UNKNOWN in Call Roster
-- Tag Loomis <n0ttl@gridtracker.org> Sun, 05 Feb 2023 00:00:00 -0000
- LoTW download button not responding
-- Tag Loomis <n0ttl@gridtracker.org> Mon, 06 Feb 2023 00:00:00 -0000
gridtracker (1.23.0110) unstable; urgency=high
- Emergency LoTW fix

Wyświetl plik

@ -40,7 +40,7 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
%license %{_docdir}/%{name}/
%changelog
* Sun Feb 05 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0205-1
* Mon Feb 06 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0206-1
- Removed lightning strike detection
- Bugfix for Turkey zone 1 decodes
- Heatmap part of “Spots” button, Hotkey H removed
@ -55,6 +55,7 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
- Added OAMS based band activity
- Award Tracker CQ Zone and State fix
- <...> treated as UNKNOWN in Call Roster
- LoTW download button not responding
* 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

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -723,9 +723,8 @@ function grabLOtWLog(test)
function grabLoTWQSO()
{
var dLoTWQSO = Date.parse(dateToISO8601(g_adifLogSettings.lastFetch.lotw_qso, "Z"));
var tmpDate = ((new Date().getTime()) - 300);
if ((g_isGettingLOTW == false) && ((isNaN(dLoTWQSO) == false) && (dLoTWQSO < tmpDate)))
if (g_isGettingLOTW == false && isNaN(dLoTWQSO) == false)
{
// Fetch QSOs
lastQSLDateString = "&qso_qsorxsince=" + g_adifLogSettings.lastFetch.lotw_qso;
@ -749,11 +748,10 @@ function grabLoTWQSO()
function grabLoTWQSL()
{
var dLoTWQSL = Date.parse(dateToISO8601(g_adifLogSettings.lastFetch.lotw_qsl, "Z")) / 1000;
var tmpDate = timeNowSec() - 300;
var dLoTWQSL = Date.parse(dateToISO8601(g_adifLogSettings.lastFetch.lotw_qsl, "Z"));
// Don't grab if the last QSL was less than 5 minutes ago
if ((g_isGettingLOTW == false) && ((isNaN(dLoTWQSL) == false) && (dLoTWQSL < tmpDate)))
if (g_isGettingLOTW == false && isNaN(dLoTWQSL) == false)
{
lastQSLDateString = "&qso_qslsince=" + g_adifLogSettings.lastFetch.lotw_qsl;
getABuffer(

Wyświetl plik

@ -1,7 +1,7 @@
{
"name": "GridTracker",
"product_string_do_not_use": "gridtracker",
"version": "1.23.0205",
"version": "1.23.0206",
"betaVersion": "",
"description": "GridTracker, an amateur radio companion",
"author": "GridTracker.org",