aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-03-08 22:31:00 -0500
committerJesse Luehrs <doy@tozt.net>2023-03-09 00:27:25 -0500
commita705c1f07de2b8ec3ba4fe46377242f151b996c1 (patch)
treefcd415ca7390aa47b4c7af56948506fc15571fdf /CHANGELOG.md
parent939fd8bed87dd67de9d0e00ba151ef637ef1c16a (diff)
downloadvt100-rust-a705c1f07de2b8ec3ba4fe46377242f151b996c1.tar.gz
vt100-rust-a705c1f07de2b8ec3ba4fe46377242f151b996c1.zip
use callbacks for events rather than tracking counters
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51a7f97..477fc5a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,18 @@
## [Unreleased]
+### Added
+
+* `Parser::process_cb`, which works the same as `Parser::process` except that
+ it calls callbacks during parsing when it finds a terminal escape which is
+ potentially useful but not something that affects the screen itself.
+
+### Removed
+
+* `Screen::bells_diff`, `Screen::audible_bell_count`,
+ `Screen::visual_bell_count`, and `Screen::errors` have been removed in favor
+ of the new callback api described above.
+
### Changed
* `Parser::set_size` and `Parser::set_scrollback` have been moved to methods