[U] Release 1.4.6

This commit is contained in:
Azalea Gui 2023-01-14 22:06:01 -05:00
parent 8ee516e640
commit 2fda114552
No known key found for this signature in database
GPG key ID: E289FAC0DA92DD2B
8 changed files with 151 additions and 124 deletions

View file

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

View file

@ -23,4 +23,4 @@ ${c1} .,-:;//;:=,
,:+$+-,/H#MMMMMMM@= =,
=++%%%%+/:-.
""")

View file

@ -17,6 +17,10 @@ def detect(name: str) -> AsciiArt | None:
from .aperio_gnu_linux import aperio_gnu_linux
return aperio_gnu_linux
if name.startswith('aperture'):
from .aperture import aperture
return aperture
if name.startswith('asahi'):
from .asahi import asahi
return asahi
@ -1017,6 +1021,10 @@ def detect(name: str) -> AsciiArt | None:
from .regolith import regolith
return regolith
if name.startswith('rhaymos'):
from .rhaymos import rhaymos
return rhaymos
if name.startswith('rocky_small'):
from .rocky_small import rocky_small
return rocky_small
@ -1336,8 +1344,4 @@ def detect(name: str) -> AsciiArt | None:
if name == 'sunos':
from .sunos import sunos
return sunos
if name == 'aperture':
from .aperture import aperture
return aperture

View file

@ -0,0 +1,21 @@
from . import AsciiArt
rhaymos = AsciiArt(match=r'''"RhaymOS"*''', color='1', ascii=r"""
${c1}
###
#####
####### /########
############# ###########
,########### #### ####(..
#### #### ####* ##########
#### ##### ##### (####
#### ########### ###########
#### ######### ##########
###################################
#####################################
#######################################
""")