diff --git a/CHANGELOG.md b/CHANGELOG.md index cfe8bc5d0..75e1dfd25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Modifications since version 2.x +### 5.0.4 + + * Add ligation for chained hyphens and tildes (#893). + * Add symbols used by BQN programming language (`U+2389`, `U+2687`, `U+231C`, `U+238A`, `U+27DC`, and `U+294A`; #870). + + ### 5.0.3 * Add ligation set for chaining number signs (#894). diff --git a/README.md b/README.md index 963ac358c..3e1687f24 100644 --- a/README.md +++ b/README.md @@ -450,6 +450,9 @@ Subsection `ligations` is used to customize the ligation set assigned to `calt` - `brack-bar`: Enable ligation for `[|` and `|]`. - `connected-underscore`: Make contiguous underscores (like `__`) connected. - `connected-number-sign`: Make contiguous number signs (like `##`) connected. + - `connected-tilde-as-wave`: Make contiguous ASCII tildes (like `~~`) connected as a wave line. + - `connected-hyphen-as-solid-line`: Make contiguous hyphen-minuses (like `--`) connected as a straight solid line. + - `connected-hyphen-as-semi-dashed-line`: Make contiguous hyphen-minuses (like `--`) connected as a straight semi-dashed line, identifying each hyphen component. diff --git a/images/charvars.png b/images/charvars.png index e10a85862..18dd51a80 100644 Binary files a/images/charvars.png and b/images/charvars.png differ diff --git a/images/iosevka-fixed-slab.png b/images/iosevka-fixed-slab.png index 5c5334586..900591f6c 100644 Binary files a/images/iosevka-fixed-slab.png and b/images/iosevka-fixed-slab.png differ diff --git a/images/iosevka-fixed.png b/images/iosevka-fixed.png index 1cab36c8e..48d128bfd 100644 Binary files a/images/iosevka-fixed.png and b/images/iosevka-fixed.png differ diff --git a/images/iosevka-slab.png b/images/iosevka-slab.png index 5c5334586..900591f6c 100644 Binary files a/images/iosevka-slab.png and b/images/iosevka-slab.png differ diff --git a/images/iosevka-term-slab.png b/images/iosevka-term-slab.png index 5c5334586..900591f6c 100644 Binary files a/images/iosevka-term-slab.png and b/images/iosevka-term-slab.png differ diff --git a/images/iosevka-term.png b/images/iosevka-term.png index 1cab36c8e..48d128bfd 100644 Binary files a/images/iosevka-term.png and b/images/iosevka-term.png differ diff --git a/images/iosevka.png b/images/iosevka.png index 1cab36c8e..48d128bfd 100644 Binary files a/images/iosevka.png and b/images/iosevka.png differ diff --git a/images/languages.png b/images/languages.png index e5dc0881d..85acb59f8 100644 Binary files a/images/languages.png and b/images/languages.png differ diff --git a/images/preview-all.png b/images/preview-all.png index eae427e71..688e719a0 100644 Binary files a/images/preview-all.png and b/images/preview-all.png differ diff --git a/images/stylistic-set-i-off-0.png b/images/stylistic-set-i-off-0.png index 755297a53..56edda769 100644 Binary files a/images/stylistic-set-i-off-0.png and b/images/stylistic-set-i-off-0.png differ diff --git a/images/stylistic-set-u-off-0.png b/images/stylistic-set-u-off-0.png index cd0029236..50506ed41 100644 Binary files a/images/stylistic-set-u-off-0.png and b/images/stylistic-set-u-off-0.png differ diff --git a/package.json b/package.json index ee7d30436..d9d0d5e46 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iosevka", - "version": "5.0.3", + "version": "5.0.4", "main": "./font-src/index.js", "scripts": { "build": "node utility/ensure-verda-exists && verda -f verdafile.js",