diff --git a/debian/control b/debian/control index 87bde73..54d76e0 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Paul Traina <216482-pleasantone@users.noreply.gitlab.com> Build-Depends: debhelper (>= 12.1) Standards-Version: 4.3.0 -Homepage: http://tagloomis.com/ +Homepage: http://gridtracker.org/ Package: gridtracker Architecture: all diff --git a/debian/copyright b/debian/copyright index 180e6f3..ef36cc5 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GridTracker -Upstream-Contact: Tag Loomis +Upstream-Contact: GridTracker Team Source: https://gitlab.com/gridtracker.org/gridtracker Files: * diff --git a/gridtracker.1 b/gridtracker.1 index 526cb0b..db58bfc 100644 --- a/gridtracker.1 +++ b/gridtracker.1 @@ -43,9 +43,9 @@ Run gridtracker, no arguments needed. .SH COPYRIGHT .PP Copyright (c) 2018-2020 Stephen Tag Loomis. All rights reserved. -https://tagloomis.com Copyright (c) 2020 GridTracker.org. All rights reserved. Released under BSD 3-Clause License +https://gridtracker.org .SH .PP diff --git a/package.nw/GridTracker.html b/package.nw/GridTracker.html index 5c7b6e7..5527ded 100644 --- a/package.nw/GridTracker.html +++ b/package.nw/GridTracker.html @@ -1064,7 +1064,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-
+
Print
diff --git a/package.nw/data/awards.json b/package.nw/data/awards.json index 2834b81..15a736c 100644 --- a/package.nw/data/awards.json +++ b/package.nw/data/awards.json @@ -4953,7 +4953,7 @@ "GT": { "compiledBy": "N0TTL", "sponsor": "GridTracker", - "website": "https://tagloomis.com/", + "website": "https://gridtracker.org/", "qsl_req": "confirmed", "mixed": [ "160m", diff --git a/package.nw/lib/callsigns.js b/package.nw/lib/callsigns.js index 8ba9014..7aa8f6f 100644 --- a/package.nw/lib/callsigns.js +++ b/package.nw/lib/callsigns.js @@ -234,8 +234,7 @@ function oqrsValuesChanged() { function oqrsDownload(fromSettings) { oqrsUpdatedTd.innerHTML = "Downloading..."; getBuffer( - "https://dl.dropboxusercontent.com/s/9nycdpbxx5b3bpp/clublog.json?cb=" + - timeNowSec(), + "https://gridtracker.org/gt/clublog.json", processoqrsCallsigns, null, "https", @@ -450,8 +449,7 @@ function ulsDownload() { ulsUpdatedTd.innerHTML = "Downloading..."; ulsCountTd.innerHTML = 0; getChunkedBuffer( - "https://dl.dropboxusercontent.com/s/91iynrvdse7zcf5/callsigns.txt?cb=" + - timeNowSec(), + "https://gridtracker.org/gt/callsigns.txt", processulsCallsigns, null, "https", diff --git a/package.nw/lib/gt.js b/package.nw/lib/gt.js index db2d109..09c64bf 100644 --- a/package.nw/lib/gt.js +++ b/package.nw/lib/gt.js @@ -9442,7 +9442,7 @@ function newMessageSetting(whichSetting) { function checkForNewVersion(showUptoDate) { if (typeof nw != "undefined") getBuffer( - "https://tagloomis.com/gt/version.txt?lang=" + g_localeString, + "https://gridtracker.org/gt/version.txt?lang=" + g_localeString, versionCheck, showUptoDate, "https", @@ -10799,14 +10799,10 @@ function versionCheck(buffer, flag) { } function onExitAppToGoWebsite() { - require("nw.gui").Shell.openExternal("https://tagloomis.com/"); + require("nw.gui").Shell.openExternal("https://gridtracker.org/"); saveAndCloseApp(); } -function mailMe() { - require("nw.gui").Shell.openExternal("mailto:tag.loomis@gmail.com"); -} - function mailThem(address) { require("nw.gui").Shell.openExternal("mailto:" + address); } @@ -13534,7 +13530,7 @@ function pskSpotCheck(timeSec) { "&senderCallsign=" + encodeURIComponent(myRawCall) + "&appcontact=" + - encodeURIComponent("tag.loomis@gmail.com"), + encodeURIComponent("contact@gridtracker.org"), pskSpotResults, null, "https", @@ -13968,7 +13964,7 @@ function updateSpotView(leaveCount = true) { function gotoDonate() { var gui = require("nw.gui"); - gui.Shell.openExternal("https://tagloomis.com/donations/"); + gui.Shell.openExternal("https://gridtracker.org/donations/"); } function changeRosterTime() { diff --git a/package.nw/lib/gtws.js b/package.nw/lib/gtws.js index eafa0ab..df3f3b1 100644 --- a/package.nw/lib/gtws.js +++ b/package.nw/lib/gtws.js @@ -65,7 +65,7 @@ function gtConnectChat() { var rnd = parseInt(Math.random() * 10) + 18260; try { g_gtState = ChatState.connecting; - g_gtChatSocket = new WebSocket("wss://tagloomis.com:" + rnd); + g_gtChatSocket = new WebSocket("wss://oams.space:" + rnd); } catch (e) { g_gtState = ChatState.error; return; diff --git a/package.nw/lib/roster.js b/package.nw/lib/roster.js index 655f570..841d942 100644 --- a/package.nw/lib/roster.js +++ b/package.nw/lib/roster.js @@ -2661,7 +2661,7 @@ function stateChangedValue(what) { if (window.opener.g_mapSettings.offlineMode == false) { var callState = r_currentUSState.replace("CN-", ""); getBuffer( - "https://tagloomis.com/gt/callsigns/" + callState + ".callsigns.json", + "https://gridtracker.org/gt/callsigns/" + callState + ".callsigns.json", callsignResult, r_currentUSState, "https", @@ -2913,7 +2913,7 @@ function init() { if (window.opener.g_mapSettings.offlineMode == false) getBuffer( - "https://tagloomis.com/gt/callsigns/manifest.json", + "https://gridtracker.org/gt/callsigns/manifest.json", manifestResult, null, "https",