Skip to content

Commit

Permalink
Update changelog, fix a line that's too long for Black
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Oct 10, 2021
1 parent 5f4afa0 commit 710719f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
current
-------

- Added 4-dotted numbers to rendering sample
- Moved ⃛ and ⃜ up away from topline
- Add GitHub workflow for testing
- Fix cache clear utility
- Update requirements.txt
- Set version to 2.3.2
Expand Down
10 changes: 7 additions & 3 deletions test_font_rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@

misc_glyphs = "Misc glyphs: ™●⌘⏎⬇⬆✔✼✎✘‘’◢◣◤◥▮◆▒░▓ ▏▎▍▌▋▊▉█"

composed_glyphs = "Composed glyphs: ÀÉI͂o̓N̈́AͅB̊͆Ȍ͇U͈D̈ẢB̊A̋ĎA̍J̎Ȁ\n"
composed_glyphs = (
"Composed glyphs: ÀÉI͂o̓N̈́AͅB̊͆Ȍ͇U͈D̈ẢB̊A̋ĎA̍J̎Ȁ"
"1⃜2⃜3⃜4⃜5⃜6⃜7⃜8⃜9⃜0⃜\n"
)

apl_set = (
"The APL set: ⌶⌷⌸⌹⌺⌻⌼⌽⌾⌿⍀⍁⍂⍃⍄⍅⍆⍇⍈⍉⍊⍋⍌⍍⍎⍏⍐⍑⍒⍓⍔⍕⍖⍗⍘⍙⍚⍛⍜⍝⍞⍟⍠⍡⍢⍣⍤⍥⍦⍧⍨⍩⍪⍫⍬⍭⍮⍯⍰⍱"
"⍲⍳⍴⍵⍶⍷⍸⍹⍺⊂⊃⊆⊇⊏⊐⊑⊒⊔⊓⊕⊖⊗⊘⊙⌾⊝⋆⌈⌉⌊⌋⁼⇐⇒⊸⟜⟨⟩⋄∧∨⊢⊣⊤⊥≢⚇⎉⎊◴◵◶◷⥊⥋∾‿↩↪≍𝕩𝕨𝕤𝕣𝕘𝕗𝕏𝕎𝕊𝔾𝔽\n"
"⍲⍳⍴⍵⍶⍷⍸⍹⍺⊂⊃⊆⊇⊏⊐⊑⊒⊔⊓⊕⊖⊗⊘⊙⌾⊝⋆⌈⌉⌊⌋⁼⇐⇒⊸⟜⟨⟩⋄∧∨⊢⊣⊤⊥≢⚇⎉⎊◴◵◶◷⥊⥋∾‿↩↪≍𝕩𝕨𝕤𝕣𝕘𝕗𝕏𝕎𝕊𝔾𝔽"
)

confusables = (
Expand All @@ -41,7 +44,8 @@
if __name__ == "__main__":
print("ASCII:", printable)
print(boxes)
print(misc_glyphs, composed_glyphs)
print(misc_glyphs)
print(composed_glyphs)
print(apl_set)
print(confusables)
print(ladder)
Expand Down

0 comments on commit 710719f

Please sign in to comment.