aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-23 13:17:55 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-23 13:33:41 -0500
commitdf312db3c428e7e8936c5ad6846629236bcb6240 (patch)
treebb8ca39f256cf4605cacd78782f80fdbb0e82ec6 /CHANGELOG.md
parentcd94e2ccb2272286fd0e2bc8ae67db2fba5276e5 (diff)
downloadvt100-rust-df312db3c428e7e8936c5ad6846629236bcb6240.tar.gz
vt100-rust-df312db3c428e7e8936c5ad6846629236bcb6240.zip
make unicode normalization optional
it's not always necessary or desired, and adds quite a lot to the binary size (for instance, the problem it solves is pretty much non-existent in web browsers, and wasm builds are also very sensitive to code size)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 71a9d35..b4edf50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+## Unreleased
+
+### Added
+
+* New (default-on) cargo feature `unicode-normalization` which can be disabled
+ to disable normalizing cell contents to NFC - it's a pretty small edge case,
+ and the data tables required to support it are quite large, which affects
+ size-sensitive targets like wasm
+
## [0.6.3] - 2019-11-20
### Fixed