From 7845f34e2b1ae7b96b02f6bd72131731f385097e Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 24 Feb 2023 16:14:38 +0100 Subject: [PATCH] Changelog --- docs/src/general/changelog.md | 13 +++++++++++++ docs/src/reference/types.md | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/src/general/changelog.md b/docs/src/general/changelog.md index 723f4add2..6d3ad42ff 100644 --- a/docs/src/general/changelog.md +++ b/docs/src/general/changelog.md @@ -5,6 +5,19 @@ description: | --- # Changelog +## Unreleased +- Added [`panic`]($func/panic) function +- Added [`clusters`]($type/string.clusters) and [`codepoints`]($type/string.codepoints) + methods for strings +- Support for multiple authors in [`set document`]($func/document.author) +- Fixed crash when string is accessed at a position that is not a char boundary +- Fixed semicolon parsing in `[#var ;]` +- Fixed incremental parsing when inserting backslash at end of `[#"abc"]` +- Fixed names of a few font families + (including Noto Sans Symbols and New Computer Modern families) +- Fixed autocompletion for font families +- Improved incremental compilation for user-defined functions + ## February 15, 2023 - [Box]($func/box) and [block]($func/block) have gained `fill`, `stroke`, `radius`, and `inset` properties diff --git a/docs/src/reference/types.md b/docs/src/reference/types.md index 47f8d9e1a..d7482a92d 100644 --- a/docs/src/reference/types.md +++ b/docs/src/reference/types.md @@ -270,12 +270,12 @@ Fails with an error if the start or end index is out of bounds. - returns: string ### clusters() -Returns the grapheme clusters of the string as array of substrings. +Returns the grapheme clusters of the string as an array of substrings. - returns: array ### codepoints() -Returns the Unicode codepoints of the string as array of substrings. +Returns the Unicode codepoints of the string as an array of substrings. - returns: array