Fixed map selection issue, and chat window not saving position on app exit

merge-requests/229/head
Tag 2022-10-08 16:13:14 -07:00
rodzic e5a7a89cad
commit 47a09beeb0
6 zmienionych plików z 12 dodań i 4 usunięć

5
debian/changelog vendored
Wyświetl plik

@ -1,3 +1,8 @@
gridtracker (1.22.1010) unstable; urgency=low
- Fix issue with map selection not saving/restoring
-- Tag Loomis <n0ttl@gridtracker.org> Sun, 09 Oct 2022 12:00:00 -0000
gridtracker (1.22.1009) unstable; urgency=low
- Fix issue loading logs and generating scores tab

Wyświetl plik

@ -1,6 +1,6 @@
Name: {{{ git_name name=gridtracker }}}
Summary: GridTracker: An amateur radio companion to WSJT-X or JTDX
Version: {{{ git_version lead=1.22.1009 }}}
Version: {{{ git_version lead=1.22.1010 }}}
Release: 1%{?dist}
BuildArch: noarch
Source0: {{{ git_dir_pack }}}
@ -40,6 +40,8 @@ DESTDIR=${RPM_BUILD_ROOT} make clean
%license %{_docdir}/%{name}/
%changelog
* Sun Oct 09 2022 Tag Loomis <n0ttl@gridtracker.org> - 1.22.1010-1
- Fix issue with map selection not saving/restoring
* Sat Oct 08 2022 Tag Loomis <n0ttl@gridtracker.org> - 1.22.1009-1
- Fix issue with loading logs and generating scores
* Sat Oct 08 2022 Matthew Chambers <nr0q@gridtracker.org> - 1.22.1008-1

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -286,6 +286,7 @@ function saveAndCloseApp()
g_statsWindowHandle.window.saveScreenSettings();
g_baWindowHandle.window.saveScreenSettings();
g_lookupWindowHandle.window.saveScreenSettings();
g_chatWindowHandle.window.saveScreenSettings();
}
catch (e)
{
@ -5502,7 +5503,7 @@ function initMap()
var saveSettings = false;
g_maps = Object.keys(g_maps).sort().reduce((obj, key) => { obj[key] = g_maps[key]; return obj; }, {});
if (typeof Number(g_mapSettings.mapIndex) == "number")
if (typeof g_mapSettings.mapIndex == "number")
{
var foundKey = null;
for (const key in g_maps)
@ -5521,7 +5522,7 @@ function initMap()
saveSettings = true;
}
if (typeof Number(g_mapSettings.nightMapIndex) == "number")
if (typeof g_mapSettings.nightMapIndex == "number")
{
var foundKey = null;
for (const key in g_maps)

Wyświetl plik

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