2023-08-05 10:08:59 -07:00
|
|
|
## Version Bump checklist
|
2023-08-21 13:26:53 -07:00
|
|
|
- TODO: build and publish script
|
2023-08-05 10:08:59 -07:00
|
|
|
- update Cargo.toml
|
|
|
|
- run cargo test
|
|
|
|
- commit
|
2023-08-17 10:32:05 -07:00
|
|
|
- push
|
|
|
|
- merge
|
|
|
|
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
2023-08-05 10:08:59 -07:00
|
|
|
- cargo publish
|
|
|
|
- Update packages
|
2023-09-21 19:32:44 -07:00
|
|
|
- Build wasm & push changes
|
2023-09-21 19:43:00 -07:00
|
|
|
- Update AUR package
|
2023-08-05 10:08:59 -07:00
|
|
|
|
|
|
|
|
2023-08-01 20:13:10 -07:00
|
|
|
## Pre-release
|
2023-08-05 09:30:19 -07:00
|
|
|
- Tuple operations
|
2023-08-03 22:15:20 -07:00
|
|
|
- we don't need vectors as arguments to operators
|
2023-08-21 13:26:53 -07:00
|
|
|
- Fix linelocation when evaluating functions
|
2023-08-01 20:13:10 -07:00
|
|
|
|
|
|
|
## Parser
|
2023-07-31 16:54:09 -07:00
|
|
|
- Should functions be operators?
|
2023-08-02 17:45:28 -07:00
|
|
|
- Binary, hex, octal numbers
|
2023-06-13 09:17:57 -07:00
|
|
|
|
2023-04-06 10:39:36 -07:00
|
|
|
|
|
|
|
## General
|
2023-08-21 13:26:53 -07:00
|
|
|
- Better tests (assignment, many expressions in one context)
|
2023-06-13 09:17:57 -07:00
|
|
|
- Optional config file
|
|
|
|
- Optional history file
|
2023-07-31 20:44:17 -07:00
|
|
|
- evaluate straight from command line
|
2023-09-03 13:12:37 -07:00
|
|
|
- Package for debian, nix
|
2023-06-11 16:45:36 -07:00
|
|
|
|
2023-04-06 10:39:36 -07:00
|
|
|
|
|
|
|
## Internals
|
|
|
|
- Non-recursive treeify
|
|
|
|
- Faster factorial function. Maybe use gamma instead?
|
|
|
|
- Arbitrary precision float (rug doesn't offer arbitrary exponents)
|
|
|
|
|
|
|
|
## Math Features
|
2023-08-01 20:13:10 -07:00
|
|
|
- Mean, Median, Min
|
2023-04-06 10:39:36 -07:00
|
|
|
- Arbitrary base logarithm
|
|
|
|
- Derivatives
|
|
|
|
- CAS features (trig, roots and powers)
|
|
|
|
- Complex numbers
|
|
|
|
- acot/acoth functions
|
2023-08-01 20:13:10 -07:00
|
|
|
- Sums and products with functional arguments
|
2023-08-21 13:26:53 -07:00
|
|
|
- Add functions: gcd, inverse mod, dice
|
2023-04-06 10:39:36 -07:00
|
|
|
|
|
|
|
## Prompt
|
2023-08-21 13:26:53 -07:00
|
|
|
- Fix terminal color detection
|
2023-04-06 10:39:36 -07:00
|
|
|
- Live syntax/output (like firefox js terminal)
|
2023-08-21 13:26:53 -07:00
|
|
|
- Syntax highlighting
|
2023-04-06 10:39:36 -07:00
|
|
|
- fish-style tab completion
|
2023-04-13 14:10:53 -07:00
|
|
|
- Numbered expressions, history recall
|
2023-07-31 16:54:09 -07:00
|
|
|
- Enable/disable unit sets (defaults?)
|
2023-08-01 11:02:39 -07:00
|
|
|
- Consistent unit ordering
|
2023-06-11 16:45:36 -07:00
|
|
|
|
2023-06-13 09:12:50 -07:00
|
|
|
## Units
|
2023-06-13 21:24:04 -07:00
|
|
|
- long prefixes (megatonne, etc)
|
2023-06-13 09:12:50 -07:00
|
|
|
- HMS for degrees
|
|
|
|
- Exact radians, using pi constant?
|
2023-08-04 22:41:18 -07:00
|
|
|
- Weird units: flops, lumen, lux, bel
|
|
|
|
- Command to list units
|