-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
212 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Just unzip anywhere. IcyBoard works with relative and not absolute paths. | ||
|
||
|
||
Create a bbs with: | ||
|
||
bin/icbsetup create bbs | ||
|
||
This creates all required files in "bbs" | ||
|
||
Or import an existing pcboard installation with: | ||
|
||
bin/icbsetup import [PCBOARD.DAT] bbs | ||
|
||
Where PCBOARD.DAT is the pull path to the pcboard data file. Note that the original installation won't be altered at all. | ||
Howver it's not 100% so manual changes are likeley to be required but the output should be a good starting point. I can need test installations for improving the importer. | ||
|
||
Then just start with: | ||
|
||
bin/icy_board --file bbs | ||
|
||
It's recommended to put bin/ in path and just start icy_board etc. inside the bbs directory - it'll be picked up all automatically. | ||
|
||
Following tools are currently shipped | ||
|
||
icbsetup - setting up with a tui client - in theory the .toml files can be edited with any text editor but it's easier with a tui | ||
icbsysmgr - user/groups edutor. | ||
mkicbtxt - create & alter PCBTEXT files (compatible with old PCBoard format) | ||
mkicbmnu - create & change icy_board .mnu files | ||
pplc - ppl compiler | ||
ppl-language-server - a lsp implementation that can be used in editors that support it to get some syntax coloring, help and code completion for ppl | ||
|
||
The other tools are work in progress and will be split up into other commands. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/target | ||
/Cargo.lock | ||
/Polygon | ||
/.Polygon | ||
/.polygon | ||
/polygon | ||
/.vscode | ||
/src/main.rs | ||
/src/core/unit_tests | ||
/file_root.txt | ||
/.Folder | ||
/.folder | ||
/Folder | ||
/folder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,6 @@ | |
|
||
f = open(sys.argv[1], "w") | ||
f.writelines(new_lines) | ||
f.close() | ||
f.close() | ||
|
||
print(version) |