Skip to content

Commit 153b084

Browse files
author
Wayne, W5XD. Round Rock
committed
inactivity timer fix wasn't right
1 parent 6915f22 commit 153b084

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

AssemblyVersionInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// You can specify all the values or you can default the Build and Revision Numbers
1010
// by using the '*' as shown below:
1111
// [assembly: AssemblyVersion("1.0.*")]
12-
[assembly: AssemblyVersion("2.6.0.7")]
13-
[assembly: AssemblyFileVersion("2.6.0.7")]
12+
[assembly: AssemblyVersion("2.6.0.8")]
13+
[assembly: AssemblyFileVersion("2.6.0.8")]
1414
// If you plan to give the built files ot another Op, please add your callsign in the Version string.
15-
[assembly: AssemblyInformationalVersion("2.6.0.7 BETA built by - YOURCALLSIGN")]
15+
[assembly: AssemblyInformationalVersion("2.6.0.8 BETA built by - YOURCALLSIGN")]

InstallDigiRite/Product.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
!!
1818
-->
1919
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
20-
<?define VersionNumber = 206.0.7.0 ?>
20+
<?define VersionNumber = 206.0.8.0 ?>
2121
<?define BuildersName = PUT YOUR NAME HERE ?>
2222
<!--The numbering convention depends on the number of the WSJTX build DigiRite is derived from. Call that number A.B.C.
2323
For DigiRite, this installer version number is AB.C.D.0 where AB is 100 times A plus B, and D is the

InstallDigiRiteX64/ProductX64.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GUIDS: UpgradeCode MUST match between x64 and x86
44
All other GUIDs must NOT match.
55
-->
66
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
7-
<?define VersionNumber = 206.0.7.0 ?>
7+
<?define VersionNumber = 206.0.8.0 ?>
88
<?define BuildersName = PUT YOUR NAME HERE ?>
99
<!--The numbering convention depends on the number of the WSJTX build DigiRite is derived from. Call that number A.B.C.
1010
For DigiRite, this installer version number is AB.C.D.0 where AB is 100 time A plus B, and D is the

MainForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2113,7 +2113,7 @@ private void timerFt8Clock_Tick(object sender, EventArgs e)
21132113
var nowutc = DateTime.UtcNow;
21142114
if ((nowutc - watchDogTime).TotalMinutes > MAX_UNANSWERED_MINUTES)
21152115
{
2116-
bool statusWas = checkBoxAutoXmit.Checked;
2116+
bool statusWas = checkBoxAutoXmit.Checked | autoXmitTimedOut;
21172117
checkBoxAutoXmit.Checked = false; // order important with next:
21182118
autoXmitTimedOut = statusWas; // order of these two important!
21192119
}

ReadMe.htm

+9-7
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ <h2>License</h2>
2020
<a href="https://github.com/w5xd/Digi-Rite">https://github.com/w5xd/Digi-Rite</a>.
2121
</p>
2222
<blockquote>
23-
The algorithms, source code, look-and-feel of WSJT-X and related
24-
programs, and protocol specifications for the modes FSK441, FT8, JT4,
25-
JT6M, JT9, JT65, JTMS, QRA64, ISCAT, MSK144 are Copyright (C)
26-
2001-2020 by one or more of the following authors: Joseph Taylor,
27-
K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo,
28-
IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR;
29-
Philip Karn, KA9Q; and other members of the WSJT Development Group.
23+
The algorithms, source code, look-and-feel of WSJT-X and related
24+
programs, and protocol specifications for the modes FSK441, FST4, FT8, JT4,
25+
JT6M, JT9, JT65, JTMS, QRA64, Q65, MSK144 are Copyright (C)
26+
2001-2022 by one or more of the following authors: Joseph Taylor,
27+
K1JT; Bill Somerville, G4WJS; Steven Franke, K9AN; Nico Palermo,
28+
IV3NWV; Greg Beam, KI7MT; Michael Black, W9MDB; Edson Pereira, PY2SDR;
29+
Philip Karn, KA9Q; Chester Fennell, KG4IYS; Uwe Risse, DG2YCB;
30+
and other members of the WSJT Development Group.
31+
3032
</blockquote>
3133
<h2>Logbook dependencies</h2>
3234
DigiRite will run stand alone but that mode puts up a nastygram every time you run it, and is useful only for brief tests because it won't log any QSOs. Any logbook is permitted to incorporate DigiRite subject to the

0 commit comments

Comments
 (0)