n4af / TR4W

TRLOG 4 Windows free amateur radio logging application
GNU General Public License v3.0
19 stars 6 forks source link

Added M class and MX and fixed a few related items. #630

Closed ny4i closed 1 year ago

ny4i commented 1 year ago

Changed ADIF name to WFD. Added M class. Added support for receiving MX as a section for Mexico. Also fixed #484.

I also found an error in TREE LooksLikeAGrid. Perhaps something was not committed. The line pAE := ActiveExchange was of the wrong type but it was never again referenced so I commented it out.

In fixing #484, I also reformatted the band/mode so the columns aligned better. It would be good to check ion a few other contests too.

n4af commented 1 year ago

Hi Tom -

Any chance you built against 4.118.1 ? I cannot merge trdos/tree.pas and your copy appears to be .1 rather than .2 ??

git checkout WFD-2022-rule-changes error: Your local changes to the following files would be overwritten by checkout: tr4w/src/trdos/tree.pas


diff --git a/tr4w/src/trdos/tree.pas b/tr4w/src/trdos/tree.pas index 9916886..10359c9 100644 --- a/tr4w/src/trdos/tree.pas +++ b/tr4w/src/trdos/tree.pas @@ -3293,11 +3293,11 @@ function LooksLikeAGrid(var GridString: ShortString): boolean; var TestString : Str20; i : integer;

On Tue, Dec 27, 2022 at 10:03 PM Tom Schaefer @.***> wrote:

Changed ADIF name to WFD. Added M class. Added support for receiving MX as a section for Mexico. Also fixed #484 https://github.com/n4af/TR4W/issues/484.

I also found an error in TREE LooksLikeAGrid. Perhaps something was not committed. The line pAE := ActiveExchange was of the wrong type but it was never again referenced so I commented it out.

In fixing #484 https://github.com/n4af/TR4W/issues/484, I also reformatted the band/mode so the columns aligned better. It would be good to check ion a few other contests too.

You can view, comment on, or merge this pull request online at:

https://github.com/n4af/TR4W/pull/630 Commit Summary

File Changes

(4 files https://github.com/n4af/TR4W/pull/630/files)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/n4af/TR4W/pull/630, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABVLCUALAHTIXJTRVV3WMBDWPOUZHANCNFSM6AAAAAATK4O4AU . You are receiving this because you are subscribed to this thread.Message ID: @.***>

ny4i commented 1 year ago

I pulled the latest from master and started there. Did you have the latest in master?Principal Solutions ArchitectBetter Software Solutions, Inc. 727-437-2771On Dec 28, 2022, at 7:41 AM, Howie Hoyt @.***> wrote: Hi Tom -

Any chance you built against 4.118.1 ? I cannot merge trdos/tree.pas and your copy appears to be .1 rather than .2 ??

git checkout WFD-2022-rule-changes error: Your local changes to the following files would be overwritten by checkout: tr4w/src/trdos/tree.pas


diff --git a/tr4w/src/trdos/tree.pas b/tr4w/src/trdos/tree.pas index 9916886..10359c9 100644 --- a/tr4w/src/trdos/tree.pas +++ b/tr4w/src/trdos/tree.pas @@ -3293,11 +3293,11 @@ function LooksLikeAGrid(var GridString: ShortString): boolean; var TestString : Str20; i : integer;

On Tue, Dec 27, 2022 at 10:03 PM Tom Schaefer @.***> wrote:

Changed ADIF name to WFD. Added M class. Added support for receiving MX as a section for Mexico. Also fixed #484 https://github.com/n4af/TR4W/issues/484.

I also found an error in TREE LooksLikeAGrid. Perhaps something was not committed. The line pAE := ActiveExchange was of the wrong type but it was never again referenced so I commented it out.

In fixing #484 https://github.com/n4af/TR4W/issues/484, I also reformatted the band/mode so the columns aligned better. It would be good to check ion a few other contests too.

You can view, comment on, or merge this pull request online at:

https://github.com/n4af/TR4W/pull/630 Commit Summary

File Changes

(4 files https://github.com/n4af/TR4W/pull/630/files)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/n4af/TR4W/pull/630, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABVLCUALAHTIXJTRVV3WMBDWPOUZHANCNFSM6AAAAAATK4O4AU . You are receiving this because you are subscribed to this thread.Message ID: @.***>

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

n4af commented 1 year ago

I think some of 4.118.2 was not committed. Best I can see, this https://tr4w.net/4.118/tr4w_setup_4_118.3.exepicks up M class and MX section.

On Wed, Dec 28, 2022 at 9:19 AM Tom Schaefer @.***> wrote:

I pulled the latest from master and started there. Did you have the latest in master?Principal Solutions ArchitectBetter Software Solutions, Inc. 727-437-2771On Dec 28, 2022, at 7:41 AM, Howie Hoyt @.***> wrote: Hi Tom -

Any chance you built against 4.118.1 ? I cannot merge trdos/tree.pas and your copy appears to be .1 rather than .2 ??

git checkout WFD-2022-rule-changes error: Your local changes to the following files would be overwritten by checkout: tr4w/src/trdos/tree.pas


diff --git a/tr4w/src/trdos/tree.pas b/tr4w/src/trdos/tree.pas index 9916886..10359c9 100644 --- a/tr4w/src/trdos/tree.pas +++ b/tr4w/src/trdos/tree.pas @@ -3293,11 +3293,11 @@ function LooksLikeAGrid(var GridString: ShortString): boolean; var TestString : Str20; i : integer;

  • pAE : pchar;
  • p : pchar;^M begin

LooksLikeAGrid := False;

  • pAE := ActiveExchange;
  • ^M TestString := UpperCase(GridString); if ((ActiveExchange = RSTAndOrGridExchange) or // 4.118.1 (ActiveExchange = Grid2Exchange) or

On Tue, Dec 27, 2022 at 10:03 PM Tom Schaefer @.***> wrote:

Changed ADIF name to WFD. Added M class. Added support for receiving MX as a section for Mexico. Also fixed #484 https://github.com/n4af/TR4W/issues/484.

I also found an error in TREE LooksLikeAGrid. Perhaps something was not committed. The line pAE := ActiveExchange was of the wrong type but it was never again referenced so I commented it out.

In fixing #484 https://github.com/n4af/TR4W/issues/484, I also reformatted the band/mode so the columns aligned better. It would be good to check ion a few other contests too.

You can view, comment on, or merge this pull request online at:

https://github.com/n4af/TR4W/pull/630 Commit Summary

Added M class and MX and fixed a few related items.

File Changes

(4 files https://github.com/n4af/TR4W/pull/630/files)

(2)

(6)

(34)

(2)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/n4af/TR4W/pull/630, or unsubscribe < https://github.com/notifications/unsubscribe-auth/ABVLCUALAHTIXJTRVV3WMBDWPOUZHANCNFSM6AAAAAATK4O4AU

. You are receiving this because you are subscribed to this thread.Message ID: @.***>

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/n4af/TR4W/pull/630#issuecomment-1366686904, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABVLCUE4O7246NPUHDHOHLTWPRD5PANCNFSM6AAAAAATK4O4AU . You are receiving this because you commented.Message ID: @.***>