diff --git a/Cargo.toml b/Cargo.toml index c573d66..d60b8ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 508a9c3..b07daa1 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-03-08" +channel = "stable" # targets = ["x86_64-pc-windows-msvc"] \ No newline at end of file diff --git a/todo.txt b/todo.txt new file mode 100644 index 0000000..5749958 --- /dev/null +++ b/todo.txt @@ -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\\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 \ No newline at end of file