kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Merge branch 'clear-data-on-version' into 'master'
Purge internal data before v1.22.1010 only See merge request gridtracker.org/gridtracker!235 If this is changing anything in the UI or operational behavior, please prepare to update the wiki!merge-requests/201/merge
commit
69b3e56e50
|
@ -20,7 +20,12 @@ if (typeof localStorage.currentVersion == "undefined" || localStorage.currentVer
|
||||||
gui.App.clearCache();
|
gui.App.clearCache();
|
||||||
|
|
||||||
// If the version changed, the interanl qso file is possibly out of date so don't read it
|
// If the version changed, the interanl qso file is possibly out of date so don't read it
|
||||||
g_readInternalQso = false;
|
// 1221010 introduced "|"s in DXCC, CQ and ITU g_tracker so older data is no longer valid
|
||||||
|
// update this number if anything in the internal_qso format has changed
|
||||||
|
if (gtVersion < 1221010)
|
||||||
|
{
|
||||||
|
g_readInternalQso = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var vers = String(gtVersion);
|
var vers = String(gtVersion);
|
||||||
|
|
Ładowanie…
Reference in New Issue