[U] Release 1.4.7

This commit is contained in:
Azalea Gui 2023-02-18 22:04:19 -05:00
parent 664de7810d
commit 48d7772b7f
No known key found for this signature in database
GPG key ID: E289FAC0DA92DD2B
9 changed files with 192 additions and 105 deletions

View file

@ -7,7 +7,7 @@ from pathlib import Path
from .types import LightDark
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
VERSION = '1.4.6'
VERSION = '1.4.7'
TEST_ASCII = r"""

View file

@ -0,0 +1,23 @@
# This file is automatically generated. Please do not modify.
from . import AsciiArt
arselinux = AsciiArt(match=r'''"ArseLinux"*''', color='4 7', ascii=r"""
${c1}
""")

22
hyfetch/distros/cuteos.py Normal file
View file

@ -0,0 +1,22 @@
# This file is automatically generated. Please do not modify.
from . import AsciiArt
cuteos = AsciiArt(match=r'''"CuteOS"*''', color='33 50 57', ascii=r"""
${c2}
${c3}1ua${c2}
${c3}MMM1ua${c2}
${c1}MM${c2}EE ${c3} MMMMM1uazE${c2}
${c1}MM ${c2}EEEE ${c3}M1MM1uazzEn ${c2}EEEE MME
EEEEE ${c3}MMM uazEno ${c2}EEEE
EEEEE${c1}MMMMMMEno~; ${c2}EE E${c2}
EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2}
E ${c1}MMMMMMMMM ${c2} E E ${c2}
${c1}MMMMMMMMMMM
${c1}MMMMMMMMM ${c2}EE ${c1}
MM1MMMM ${c2}EEE ${c1}
MMMMM
MMM
M
""")

View file

@ -72,6 +72,10 @@ def detect(name: str) -> AsciiArt | None:
from .android import android
return android
if name.startswith('arselinux'):
from .arselinux import arselinux
return arselinux
if name.startswith('instantos'):
from .instantos import instantos
return instantos
@ -336,6 +340,10 @@ def detect(name: str) -> AsciiArt | None:
from .cutefishos import cutefishos
return cutefishos
if name.startswith('cuteos'):
from .cuteos import cuteos
return cuteos
if name.startswith('cyberos'):
from .cyberos import cyberos
return cyberos
@ -1220,6 +1228,10 @@ def detect(name: str) -> AsciiArt | None:
from .ubuntu_old import ubuntu_old
return ubuntu_old
if name.startswith('floflis'):
from .floflis import floflis
return floflis
if name.startswith('ubuntu'):
from .ubuntu import ubuntu
return ubuntu

View file

@ -0,0 +1,26 @@
# This file is automatically generated. Please do not modify.
from . import AsciiArt
floflis = AsciiArt(match=r'''"Floflis"*''', color='1 7 3', ascii=r"""
\e[96m ,,
,
,
` ,
, '▀▀▀▀▓▓▓▓▓▓▀▀Å╙` ▄▄▓█████▌
,
M
,,
'
`'
""")