Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New fonts #152

Merged
merged 9 commits into from Jan 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,8 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- 5 new fonts
1. old_italic
2. ninja
3. tai_viet
4. subscript2
5. fancy130
### Changed
- Test system modified
- `subscript` font renamed to `subscript1`
## [5.1] - 2020-11-30
### Added
- 15 new fonts
Expand Down
19 changes: 17 additions & 2 deletions FontList.ipynb
Expand Up @@ -38,7 +38,7 @@
{
"data": {
"text/plain": [
"590"
"595"
]
},
"execution_count": 2,
Expand Down Expand Up @@ -3875,6 +3875,9 @@
"fancy13 : \n",
"tєรt123\n",
"\n",
"fancy130 : \n",
"𐨠𐌴Ⲋ𐨠𐄐𐄑𐄒\n",
"\n",
"fancy14 : \n",
"ȶɛֆȶ123\n",
"\n",
Expand Down Expand Up @@ -4235,6 +4238,12 @@
"native_lands : \n",
"ƬꍟꌗƬ123\n",
"\n",
"ninja : \n",
"ȾɆꞨȾ𐏑ƻ੩\n",
"\n",
"old_italic : \n",
"𐌕𐌄𐌔𐌕ᛑᘖᙣ\n",
"\n",
"paranormal : \n",
"tєst123\n",
"\n",
Expand Down Expand Up @@ -4292,9 +4301,12 @@
"strikethrough : \n",
"ŦɆSŦ1ƻ3\n",
"\n",
"subscript : \n",
"subscript1 : \n",
"TEST123\n",
"\n",
"subscript2 : \n",
"тₑꜱт₁₂₃\n",
"\n",
"sunday_cuddle : \n",
"тєѕт123\n",
"\n",
Expand All @@ -4307,6 +4319,9 @@
"symbols : \n",
"☂€ⓢ☂➊➋➌\n",
"\n",
"tai_viet : \n",
"ꪻꫀᦓꪻ᧒ᒿᗱ\n",
"\n",
"thin2 : \n",
"test123\n",
"\n",
Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -11,7 +11,7 @@
</a>
<a href="https://badge.fury.io/py/art"><img src="https://badge.fury.io/py/art.svg" alt="PyPI version" height="18"></a>
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3" /></a>
<a href="https://github.com/sepandhaghighi/art/blob/master/FontList.ipynb"><img src="https://img.shields.io/badge/Font List-590-blue.svg"></a>
<a href="https://github.com/sepandhaghighi/art/blob/master/FontList.ipynb"><img src="https://img.shields.io/badge/Font List-595-blue.svg"></a>
<a href="https://github.com/sepandhaghighi/art/blob/master/ArtList.ipynb"><img src="https://img.shields.io/badge/Art List-700-orange.svg"></a>
<a href="https://github.com/sepandhaghighi/art/blob/master/DecorList.ipynb"><img src="https://img.shields.io/badge/Decor List-195-green.svg"></a>
<a href="https://t.me/artlib_bot" target="__blank"><img src="https://img.shields.io/badge/Telegram-Bot-red.svg"></a>
Expand Down Expand Up @@ -68,7 +68,7 @@ ART is a Python lib for text converting to ASCII art fancy. ;-)
</tr>
<tr>
<td align="center">Font Counter</td>
<td align="center">590</td>
<td align="center">595</td>
</tr>
<tr>
<td align="center">1-Line-Art Counter</td>
Expand Down Expand Up @@ -827,6 +827,7 @@ or send an email to [info@4r7.ir](mailto:info@4r7.ir "info@4r7.ir").
21. [ASCII-emoji](https://github.com/dysfunc/ascii-emoji)
22. [Instagram Fonts2](https://www.instagramfonts.com/)
23. [Emotiworld](http://en.emotiworld.com/)
24. [Fancy Text Pro](https://www.fancytextpro.com/)

## Donate to our project

Expand Down
18 changes: 14 additions & 4 deletions art/art_param.py
Expand Up @@ -632,7 +632,7 @@
"white_bubble",
"smallcaps2",
"superscript",
"subscript",
"subscript1",
"full_width",
"antrophobia",
"currency",
Expand Down Expand Up @@ -840,7 +840,12 @@
"pin2",
"sign",
"bud1",
"bud2"]
"bud2",
"old_italic",
"ninja",
"tai_viet",
"subscript2",
"fancy130"]

RANDOM_FILTERED_FONTS = [
'5x8',
Expand Down Expand Up @@ -1192,7 +1197,7 @@
"white_bubble": [white_bubble_dic, False],
"smallcaps2": [smallcaps2_dic, False],
"superscript": [superscript_dic, False],
"subscript": [subscript_dic, False],
"subscript1": [subscript1_dic, False],
"full_width": [full_width_dic, False],
"antrophobia": [antrophobia_dic, False],
"currency": [currency_dic, False],
Expand Down Expand Up @@ -1403,7 +1408,12 @@
"pin2": [pin2_dic, False],
"sign": [sign_dic, False],
"bud1": [bud1_dic, False],
"bud2": [bud2_dic, False]
"bud2": [bud2_dic, False],
"old_italic": [old_italic_dic, False],
"ninja": [ninja_dic, False],
"tai_viet": [tai_viet_dic, False],
"subscript2": [subscript2_dic, False],
"fancy130": [fancy130_dic, False]
}

DECORATIONS_MAP = {"angry1": angry1, # pragma: no cover
Expand Down
17 changes: 16 additions & 1 deletion art/test2.py
Expand Up @@ -205,6 +205,9 @@
fancy13 :
tєรt
<BLANKLINE>
fancy130 :
𐨠𐌴Ⲋ𐨠
<BLANKLINE>
fancy14 :
ȶɛֆȶ
<BLANKLINE>
Expand Down Expand Up @@ -565,6 +568,12 @@
native_lands :
ƬꍟꌗƬ
<BLANKLINE>
ninja :
ⱦēꞩⱦ
<BLANKLINE>
old_italic :
𐌕𐌄𐌔𐌕
<BLANKLINE>
paranormal :
tєst
<BLANKLINE>
Expand Down Expand Up @@ -622,9 +631,12 @@
strikethrough :
ŧɇsŧ
<BLANKLINE>
subscript :
subscript1 :
ₜₑₛₜ
<BLANKLINE>
subscript2 :
𝑡ₑ𝑠𝑡
<BLANKLINE>
sunday_cuddle :
тєѕт
<BLANKLINE>
Expand All @@ -637,6 +649,9 @@
symbols :
☂€ⓢ☂
<BLANKLINE>
tai_viet :
ꪻꫀᦓꪻ
<BLANKLINE>
thin2 :
test
<BLANKLINE>
Expand Down