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

Change f2 to be exch instead of # #119

Merged
merged 6 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
42 changes: 42 additions & 0 deletions .github/DEVELOPERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
The purpose of this document is to document the steps for a new developer to this project to get onboarded
to be able to contribute to the project.

1 - The source code for this application is written in the Pascal programming language.
Only Windows operating systems are currently supported as the target platform for the application to run.

1 - Fork the repo to your own GitHub account.

1 - Get your IDE (Integrated Development Environment) setup
This project is currently supported with the use of two seperate IDEs for Pascal
- Lazarus version 2.2.4 (fpc 3.2.2)
Lazarus was the original IDE used for MorseRunner
- Delphi Community Edition (aka RX RAD Studio 10.4)
Delphia CE is free for use by open source projects and Delphi is the perferred IDE at this time
Please not that there are github branches to support each of these IDEs
w7sst marked this conversation as resolved.
Show resolved Hide resolved
### TBD how do you configure each IDE?

1 - Clone your git repo into the IDE

1 - Directory hierarcy
.git - DO NOT TOUCH the contents here is how git does all it's magic
.github - contains support pages
PerlRegEx - TBD
VCL - Visual Component Library who's purpose is TBD
tools - contains verify-normalization.sh script who's purpose is TBD
. - the parent directory of the repo contains the bulk of the source code, configuration and data files
### TBD source directory refactoring. Should we look to put .pas and possibly other files in a src subdirectory?

1 - How to write and contribute unit tests
There aren't any unit tests. This may be added to the roadmap. Code refactoring will be needed to be able to support unit testing.
### TBD add unit testing framework and refactor to support it to the long term roadmap

1 - How to build, run, test the source code

1 - How to build an executable

1 - Production builds are currently created for each release by W7SST
### TBD add automated nightly test builds and versioned release builds to the long term roadmap
### TBD perform builds via github actions? if not then maybe GitLab, Travis or Jenkins?

In conclusion, thank you for volunteering to help improve this project. We all look forward to your contributions!

6 changes: 3 additions & 3 deletions Main.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object MainForm: TMainForm
Top = 66
Width = 61
Height = 26
Caption = 'F2 <#>'
Caption = 'F2 <EXCH>'
OnClick = SendClick
end
object SpeedButton6: TSpeedButton
Expand Down Expand Up @@ -1051,9 +1051,9 @@ object MainForm: TMainForm
ShortCut = 112
OnClick = SendClick
end
object Number1: TMenuItem
object Exchange1: TMenuItem
Tag = 2
Caption = 'Number'
Caption = 'Exchange'
ShortCut = 113
OnClick = SendClick
end
Expand Down
2 changes: 1 addition & 1 deletion Main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TMainForm = class(TForm)
File1: TMenuItem;
Send1: TMenuItem;
CQ1: TMenuItem;
Number1: TMenuItem;
Exchange1: TMenuItem;
TU1: TMenuItem;
MyCall1: TMenuItem;
HisCall1: TMenuItem;
Expand Down