merge-requests/237/merge test_1.23.0326
Tag 2023-03-26 13:22:24 -07:00
rodzic f397f78885
commit b5a6de15f8
10 zmienionych plików z 529 dodań i 68 usunięć

7
debian/changelog vendored
Wyświetl plik

@ -1,6 +1,7 @@
gridtracker (1.23.0319) unstable; urgency=low
gridtracker (1.23.0326) unstable; urgency=low
- POTA – fixed disappearing parks, removed auto RBNs
- Pin mode – added missing band pins
- Call Roster - added UTC column for easier even/odd spotting
- Call Roster – fixed “Spotted Me” exception
- Call Roster – “Uses LoTW” “Uses eQSL” “Uses OQRS” now inclusive
- Loggers – added HamZone.cn service
@ -10,8 +11,8 @@ gridtracker (1.23.0319) unstable; urgency=low
- Map – upgraded to OpenLayers 6.15.1, Heatmap now world-wraps
- Mac – “Full Stop” no longer spoken at startup
- Satellite – framework started for satellite tracking
- BIGCTY – update 0204
-- Tag Loomis <n0ttl@gridtracker.org> Sun, 19 Mar 2023 00:00:00 -0000
- BIGCTY – update from March 19th
-- Tag Loomis <n0ttl@gridtracker.org> Sun, 26 Mar 2023 00:00:00 -0000
gridtracker (1.23.0206) unstable; urgency=low
- Bugfix for Turkey zone 1 decodes

Wyświetl plik

@ -40,9 +40,10 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
%license %{_docdir}/%{name}/
%changelog
* Sun Mar 19 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0319-1
* Sun Mar 26 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0326-1
- POTA – fixed disappearing parks, removed auto RBNs
- Pin mode – added missing band pins
- Call Roster - added UTC column for easier even/odd spotting
- Call Roster – fixed “Spotted Me” exception
- Call Roster – “Uses LoTW” “Uses eQSL” “Uses OQRS” now inclusive
- Loggers – added HamZone.cn service
@ -52,7 +53,7 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
- Map – upgraded to OpenLayers 6.15.1, Heatmap now world-wraps
- Mac – “Full Stop” no longer spoken at startup
- Satellite – framework started for satellite tracking
- BIGCTY – update 0204
- BIGCTY – update from March 19th
* Mon Feb 06 2023 Tag Loomis <n0ttl@gridtracker.org> - 1.23.0206-1
- Removed lightning strike detection
- Bugfix for Turkey zone 1 decodes

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -6841,7 +6841,7 @@ function finalWsjtxDecode(newMessage, isFox = false, foxMessage)
callsign.grid = callsign.grid.substr(0, 4);
callsign.CQ = CQ;
callsign.RR73 = RR73;
callsign.UTC = toColonHMS(parseInt(newMessage.TM / 1000));
callsign.qrz = (msgDXcallsign == GT.appSettings.myCall);
if (callsign.grid.length > 0 && callsign.distance == 0)

Wyświetl plik

@ -156,6 +156,16 @@ function toDHM(inputSeconds)
return val;
};
function toColonHMS(inputSeconds)
{
let seconds = inputSeconds;
let hrs = Math.floor(seconds / 3600);
seconds -= hrs * 3600;
let mnts = Math.floor(seconds / 60);
seconds -= mnts * 60;
return padNumber(hrs, 2) + ":" + padNumber(mnts, 2) + ":" + padNumber(seconds, 2);
};
function toYM(input)
{
let months = input;

Wyświetl plik

@ -140,7 +140,8 @@ CR.defaultSettings = {
Spot: false,
Life: false,
OAMS: true,
Age: true
Age: true,
UTC: true
},
displayFilters: {
brightness: 100,

Wyświetl plik

@ -4,7 +4,7 @@ const DEFAULT_COLUMN_ORDER = [
"dB", "Freq", "DT", "Dist", "Azim",
"CQz", "ITUz", "PX",
"LoTW", "eQSL", "OQRS",
"Life", "Spot", "OAMS", "Age"
"Life", "Spot", "OAMS", "Age", "UTC"
]
const LEGACY_COLUMN_SORT_ID = {
@ -353,6 +353,14 @@ const ROSTER_COLUMNS = {
}
},
UTC: {
compare: callObjSimpleComparer("age"),
tableData: (callObj) => ({
style: "color: #EEE;",
html: callObj.UTC
})
},
Age: {
compare: callObjSimpleComparer("age"),
tableData: (callObj) => ({

Wyświetl plik

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