Skip to content

Commit

Permalink
Width bug (#190)
Browse files Browse the repository at this point in the history
* fix : 3d_diagonal font fixed #189

* fix : bear font fixed #189

* fix : cola font fixed #189

* fix : cygnet font fixed #189

* fix : dietcola font fixed #189

* fix : filter font fixed #189

* fix : flipped font fixed #189

* fix : georgi16 font fixed #189

* fix : knob font fixed #189

* fix : slscript font fixed #189

* fix : ghoulish font fixed #189

* fix : block font updated

* fix : autopep8

* fix : gradient font fixed #189

* fix : block font updated

* fix : __word2art function updated #189

* fix : font_check script updated #189

* fix : font_check script updated #189

* fix : font_check script updated #189

* fix : font_check script updated #189

* fix : autopep8

* fix : font_wizard script updated #189

* doc : CHANGELOG updated #189

* fix : font_check.py updated

* fix : art_decor_check.py updated

* fix : minor edit in cola font
  • Loading branch information
sepandhaghighi authored Dec 15, 2021
1 parent f9396db commit c9beeee
Show file tree
Hide file tree
Showing 7 changed files with 159 additions and 925 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10. tarty3
- Discord badge
### Changed
- Some fonts width bug fixed
- `test.py` modified
- `font_wizard.py` modified
- `font_check.py` modified
- `art_decor_check.py` modified
- `__word2art` function modified
- `mix_letters` function modified
- `AUTHORS.md` updated
- License updated
Expand Down
5 changes: 0 additions & 5 deletions art/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,11 +461,6 @@ def __word2art(word, font, chr_ignore, letters, next_word, sep="\n"):
for i in range(len(split_list[0])):
temp = ""
for j, item in enumerate(split_list):
if j > 0 and (
i == 1 or i == len(
split_list[0]) -
2) and font == "block":
temp = temp + " "
temp = temp + item[i]
result_list.append(temp)
result = (splitter).join(result_list)
Expand Down
Loading

0 comments on commit c9beeee

Please sign in to comment.