Skip to content

Commit

Permalink
now builds on stable toolchain!
Browse files Browse the repository at this point in the history
  • Loading branch information
shulltronics committed Jun 14, 2024
1 parent e3a40c6 commit 88d4705
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ clap = { version = "4.3.19", features = ["derive"] }
usvg = "0.35.0"
generate = "1.5.0"
cargo-generate = "0.19.0"
iron-coder-feather-rp2040-bsp = { version = "0.1.0", path = "iron-coder-boards/Adafruit/Feather_RP2040/bsp" }
savefile-derive = "0.16.4"
k_board = "1.2.2"
git2 = "0.18.2"
2 changes: 1 addition & 1 deletion rust-toolchain.toml
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"]
23 changes: 23 additions & 0 deletions todo.txt
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

0 comments on commit 88d4705

Please sign in to comment.