Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

158 Add IARU HF Championship Contest #238

Merged
merged 26 commits into from
Feb 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b4af5ab
add IARU call history file
w7sst Dec 6, 2022
625b22c
add IARU HF Contest
w7sst Dec 7, 2022
f5ab773
Add files via upload
K6OK Dec 10, 2022
24239a0
Update IARU_HF.txt
K6OK Dec 10, 2022
744cdfd
Add IARU call history file (#170)
w7sst Dec 11, 2022
f4902a2
renormalize line endings
w7sst Dec 11, 2022
c6eb231
read IURU_HF.txt file
w7sst Dec 11, 2022
797f569
eliminate duplicate callsigns while reading multiple call history sec…
w7sst Dec 12, 2022
8ee951d
append Society callsigns to end of IARU_HF.txt
w7sst Dec 12, 2022
4395bd5
IARU HF Contest is now derived from TContest, not TDualExchContest
w7sst Dec 14, 2022
7fe98ea
update Sent Exchange hints
w7sst Dec 14, 2022
216a0e0
remove etIaruSociety; using etGenericField instead
w7sst Dec 14, 2022
4122bad
Merge branch 'main' into iaru-hf-contest
w7sst Mar 7, 2023
1e0ee16
Merge branch 'main' into iaru-hf-contest
w7sst Mar 19, 2023
2fecd60
Merge branch 'main' into iaru-hf-contest-1
w7sst Feb 4, 2024
6e5ef5e
update IARU_HF call history with IARU_2023-005.txt from N1MM
w7sst Feb 4, 2024
d2a868a
fix crash when call history file contains a blank line
w7sst Feb 5, 2024
2444f86
show status msg information only when callsign field is filled out
w7sst Feb 4, 2024
4a9c0fc
turn off Optimization for Debug compilation
w7sst Feb 4, 2024
08cf9fb
Merge branch 'main' into iaru-hf-contest
w7sst Feb 9, 2024
533f04e
Better status bar messages with improved DXCC Entity lookup #236
w7sst Feb 9, 2024
4c679ea
Merge branch '236-incorrect-dxcc-entity-reported-in-status-bar-for-so…
w7sst Feb 9, 2024
7ca96c7
Do not send abbreviated numbers when sending user's RST exchange
w7sst Feb 9, 2024
0fe90df
Merge branch 'main' into 158-iaru-hf-contest
w7sst Feb 9, 2024
558344e
Merge branch 'main' into 158-iaru-hf-contest
w7sst Feb 9, 2024
98e85b2
backout change preventing RST from being updated for user's station
w7sst Feb 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Station.pas
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change needs to be backed out. In CQ WPX contest, this stopped changing RST 599 to 5NN.

Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ function TStation.NrAsText: string;
NrWithError := false;
end;

if SentExchTypes.Exch1 = etRST then
if (SentExchTypes.Exch1 = etRST) and (MyCall <> Ini.Call) then
begin
if (Ini.RunMode <> rmHST) and (Random < 0.05) then
Result := StringReplace(Result, '599', 'ENN', [rfReplaceAll]);
Expand Down