Skip to content

Commit

Permalink
Fixed monospace property broken by adding threeemdash #1073
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Jun 10, 2020
1 parent 5cfaa1e commit a260b83
Show file tree
Hide file tree
Showing 24 changed files with 38 additions and 50 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

#### 5.1 (June 10, 2020)

- Fixed monospace property broken by adding threeemdash #1073

#### 5.0 (June 8, 2020)

- Fixed Box drawing diagonal lines U+2571 `` U+2572 `` U+2573 `` #929
Expand Down
76 changes: 28 additions & 48 deletions FiraCode.glyphs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion clojure/fira_code/checks.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


(defn width-ok? [w]
(#{"0" 0 1200 2400 3600} w))
(#{"0" 0 1200 2400} w))


(defn widths [font]
Expand Down
Binary file modified distr/ttf/FiraCode-Bold.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Light.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Medium.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Regular.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-Retina.ttf
Binary file not shown.
Binary file modified distr/ttf/FiraCode-SemiBold.ttf
Binary file not shown.
Binary file modified distr/variable_ttf/FiraCode-VF.ttf
Binary file not shown.
Binary file modified distr/woff/FiraCode-Bold.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Light.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Medium.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-Regular.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-SemiBold.woff
Binary file not shown.
Binary file modified distr/woff/FiraCode-VF.woff
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Bold.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Light.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Medium.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-Regular.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-SemiBold.woff2
Binary file not shown.
Binary file modified distr/woff2/FiraCode-VF.woff2
Binary file not shown.
4 changes: 4 additions & 0 deletions features/calt/dashes.fea
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### Long dashes

sub twoemdash by hyphen_start.seq hyphen_end.seq;
sub threeemdash by hyphen_start.seq hyphen_middle.seq hyphen_end.seq;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firacode",
"version": "5.0.0",
"version": "5.1.0",
"description": "Fira Code: monospaced font with programming ligatures",
"main": "distr/fira_code.css",
"keywords": [
Expand Down

0 comments on commit a260b83

Please sign in to comment.