2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-01 16:52:03 +00:00

chore: add changelog

This commit is contained in:
sammyette 2025-06-15 15:21:31 -04:00
parent 2fcbe0ad4c
commit 3317d0a2c2
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

@ -3,6 +3,13 @@
## Unreleased ## Unreleased
### Added ### Added
- Forward/Right arrow key will fill in hint text (#327) - Forward/Right arrow key will fill in hint text (#327)
- The readline library adds the ability to create custom instances of the Hilbish
line editor. Now, `hilbish.editor` has been changed to a readline instance, instead of just being a table of a few functions to access it.
This means the colon operator is now the *preferred* way of accessing its functions,
and the dot operator will cause errors in 3.0.
Example: `hilbish.editor.getLine()` should be changed to `hilbish.editor:getLine()`
before 3.0
- Added the `hilbish.editor:read` and `hilbish.editor:log(text)` functions.
### Changed ### Changed
- Documentation for Lunacolors has been improved, with more information added. - Documentation for Lunacolors has been improved, with more information added.
- Values returned by bait hooks will be passed to the `throw` caller - Values returned by bait hooks will be passed to the `throw` caller