-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
e3a40c6
commit 88d4705
Showing
3 changed files
with
24 additions
and
2 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2024-03-08" | ||
channel = "stable" | ||
# targets = ["x86_64-pc-windows-msvc"] |
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,23 @@ | ||
todo | ||
|
||
* don't force a project to have a repository. | ||
* don't crash or hang if trying to reload a project that doesn't exist (work around by running with -p flag or deleting C:\Users\<user>\AppData\Roaming\Iron Coder\). | ||
* do some check about if the user has rust toolchain installed, along with proper targets for the current main board, and required cargo sub-commands. | ||
|
||
Release message: | ||
|
||
This is a pre-alpha release of the Iron Coder embedded Rust IDE. The core feature set isn't complete yet, but the application is usable for simple examples. This also is the first version for which I successfully used the executable on a computer that it wasn't built on (i.e. no rust toolchain installed). Current features include: | ||
|
||
**Graphical Editor** | ||
* A minimal set of boards available in the "add board" menu. | ||
* Ability to make simple connections between two pins in the graphical editor, and change the connection name via a context menu. | ||
* Loading and saving of projects. | ||
|
||
**Text Editor** | ||
* File explorer to browse project directory and select files for editing. | ||
* Multi-tab code editor with syntax highlighting and save-state indication. | ||
* Buttons to build code, load code, push to git, etc.. | ||
|
||
**General** | ||
* Minimal set of keyboard shortcuts (needs documentation). | ||
* Incomplete and in-progress metaprogramming features, hinted at by "Gen Sys Mod" button |