ApeCrunch, a calculator for apes...
What is ApeCrunch?
ApeCrunch aims to be a fast, user-friendly Rust/TUI calculator port of the popular SpeedCrunch project. While not a copy-paste port, there are plans to implement every function SpeedCrunch supports plus the addition of much more
TO-DO:
- [ ] Add variables
- [ ] Add good exponents
- [ ] Add good roots
- [ ] Add dedicated square root function
Changelog:
Version 0.0.1 in progress
- [x] Added fractional numbers (commit eba06ee)
- [x] Added exponents (commit c84bc01)
- [x] Added support for negative numbers (commit 1ec049a)
- [x] Added ability to scroll through history (commit 6aede0c)
- [x] Added ability to select history entries (commit fa7ade5)
- [x] Added ability to exit program by pressing Esc (commit 6366ec7)
- [x] Added configurable decimal places (commit 7b4db5b)
- [x] Added automatic saving of calculations across multiple sessions (commit 3abc2cc)
- [x] Added parenthesis (commit a33a59c)
- [x] Added command line arguments (commit 7f31193)
- [x] Added properly formatted comments for rustdoc (commit 031bdb4)
- [x] Changed to bincode for history storage (commit 7f31193)
- [x] Config and history files are now stored per OS requirements (commit 7ea163c)
- [x] Deuglified layout/tui code (commit 6aede0c/6366ec7)
- [x] Enabled crossterm backend (commit 6366ec7)
- [x] No longer crashes when empty expression is entered (commit 159c78a)
- [x] Made view fullscreen (commit 62313aa)
- [x] Made test cases (commit ca102c9)
- [x] Made code even more idiomatic (commit d735543)
- [x] Sessions are now sorted by start date upon loading (commit 6911f74)
- [x] Ran rustfmt on source code (commit 24b37cd)