Skip to content

Commit

Permalink
[U] Release 1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Apr 2, 2023
1 parent 659811a commit 9777652
Show file tree
Hide file tree
Showing 11 changed files with 206 additions and 151 deletions.
30 changes: 16 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,20 +101,22 @@ pip install git+https://github.com/hykilpikonna/hyfetch.git@master

<!-- CHANGELOG STARTS HERE --->

* 🌈 Improved Windows git bash detection (#99)
* 🌈 Improved color formatting codes (#101)
* 🌈 Allow specifying distro in config (#102)
* 🌈 Allow specifying custom ascii files (#104)
* 🌈 Add omniromantic and pangender (#106)
* 🌈 Now officially packaged for ArchLinux Community & Slackware! (#112) (#109)
* 🖼 Host - Update Apple device model detection. (#111)
* 🖼 Distro - Add Salient OS. (dylanaraps/neofetch#2301)
* 🖼 Distro - Add PikaOS. (#105)
* 🖼 Distro - Add Archcraft minimal variant. (#108)
* 🖼 Distro - Update Vanilla logo. (#98)
* 🖼 Distro - ChromeOS version improvements. (dylanaraps/neofetch#2305)
* 🖼 CPU - Improved multi-cpu ARM chip detection. (#97)
* 🖼 Packages - Support pipx package manager. (#107)
### 1.4.8

* 🌈 Improved Windows git bash detection ([#99](https://github.com/hykilpikonna/hyfetch/pull/99))
* 🌈 Improved color formatting codes ([#101](https://github.com/hykilpikonna/hyfetch/pull/101))
* 🌈 Allow specifying distro in config ([#102](https://github.com/hykilpikonna/hyfetch/pull/102))
* 🌈 Allow specifying custom ascii files ([#104](https://github.com/hykilpikonna/hyfetch/pull/104))
* 🌈 Add omniromantic and pangender ([#106](https://github.com/hykilpikonna/hyfetch/pull/106))
* 🌈 Now officially packaged for ArchLinux Community & Slackware! ([#112](https://github.com/hykilpikonna/hyfetch/pull/112)) ([#109](https://github.com/hykilpikonna/hyfetch/pull/109))
* 🖼 Host - Update Apple device model detection. ([#111](https://github.com/hykilpikonna/hyfetch/pull/111))
* 🖼 Distro - Add Salient OS. ([dylanaraps#2301](https://github.com/dylanaraps/neofetch/pull/2301))
* 🖼 Distro - Add PikaOS. ([#105](https://github.com/hykilpikonna/hyfetch/pull/105))
* 🖼 Distro - Add Archcraft minimal variant. ([#108](https://github.com/hykilpikonna/hyfetch/pull/108))
* 🖼 Distro - Update Vanilla logo. ([#98](https://github.com/hykilpikonna/hyfetch/pull/98))
* 🖼 Distro - ChromeOS version improvements. ([dylanaraps#2305](https://github.com/dylanaraps/neofetch/pull/2305))
* 🖼 CPU - Improved multi-cpu ARM chip detection. ([#97](https://github.com/hykilpikonna/hyfetch/pull/97))
* 🖼 Packages - Support pipx package manager. ([#107](https://github.com/hykilpikonna/hyfetch/pull/107))

### 1.4.7

Expand Down
2 changes: 1 addition & 1 deletion hyfetch/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.4.7'
VERSION = '1.4.8'
2 changes: 1 addition & 1 deletion hyfetch/distros/archcraft_ascii.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from . import AsciiArt

archcraft_ascii = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
archcraft_ascii = AsciiArt(match=r'''"archcraft_ascii"*''', color='6 1 2 3 4 5', ascii=r"""
${c1} -o\
:ooo:
.ooooo.
Expand Down
2 changes: 1 addition & 1 deletion hyfetch/distros/archcraft_minimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from . import AsciiArt

archcraft_minimal = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
archcraft_minimal = AsciiArt(match=r'''"archcraft_minimal"*''', color='6 1 2 3 4 5', ascii=r"""
${c1} ⢰⡆
⢠⣿⣿⡄
⢀⣾⣿⣿⣿⡀
Expand Down
14 changes: 11 additions & 3 deletions hyfetch/distros/distro_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ def detect(name: str) -> AsciiArt | None:
if name.startswith('archcraft_ascii'):
from .archcraft_ascii import archcraft_ascii
return archcraft_ascii

if name.startswith('archcraft_minimal'):
from .archcraft_minimal import archcraft_minimal
return archcraft_minimal

if name.startswith('archcraft'):
from .archcraft import archcraft
return archcraft

if name.startswith('arcolinux_small'):
from .arcolinux_small import arcolinux_small
return arcolinux_small
Expand Down Expand Up @@ -928,6 +928,10 @@ def detect(name: str) -> AsciiArt | None:
from .pisi import pisi
return pisi

if name.startswith('pikaos'):
from .pikaos import pikaos
return pikaos

if name.startswith('pnm linux') or name.startswith('whpnm linux'):
from .pnm_linux import pnm_linux
return pnm_linux
Expand Down Expand Up @@ -1076,6 +1080,10 @@ def detect(name: str) -> AsciiArt | None:
from .sasanqua import sasanqua
return sasanqua

if name.startswith('salient os') or name.startswith('salientos') or name.startswith('salientos'):
from .salient_os import salient_os
return salient_os

if name.startswith('scientific'):
from .scientific import scientific
return scientific
Expand Down
15 changes: 15 additions & 0 deletions hyfetch/distros/pikaos.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This file is automatically generated. Please do not modify.

from . import AsciiArt

pikaos = AsciiArt(match=r'''"PikaOS"*''', color='11', ascii=r"""
${c1} /🐦🐦🐦$ /🐦/🐦 /🐦🐦🐦 /🐦🐦🐦
| 🐦__ $|__| 🐦 /🐦__ 🐦/🐦__ 🐦
| 🐦 \ 🐦/$| 🐦 /🐦 /🐦🐦🐦| 🐦 \ $| 🐦 \__/
| 🐦🐦🐦$| $| 🐦 /🐦/|____ $| 🐦 | $| 🐦🐦🐦
| 🐦____/| $| 🐦🐦🐦/ /🐦🐦🐦| 🐦 | 🐦\____ 🐦
| 🐦 | $| 🐦_ 🐦 /🐦__ $| 🐦 | 🐦/🐦 \ 🐦
| 🐦 | $| 🐦 \ $| 🐦🐦🐦| 🐦🐦🐦| 🐦🐦🐦/
|__/ |__|__/ \__/\_______/\______/ \______/ .
""")

27 changes: 27 additions & 0 deletions hyfetch/distros/salient_os.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This file is automatically generated. Please do not modify.

from . import AsciiArt

salient_os = AsciiArt(match=r'''"Salient OS"* | "SalientOS"* | "salientos"*''', color='6 6 7 1', ascii=r"""
${c1} 00xxxx0
00xxxxxx0
0xxxxxxxxx 000000
0xxxxxxxxxx xxxxxxxxxx0
0xxxxxxxxxxx0 xxxxxxxxxxxxx0
0xxxxxxxxxxxx0 0xxxxxxxxxxxxxx0
0xxxxxxxxxxxxx0 0xxxxxxxxxxxxxxx0
0xxxxxxxxxxxxxxx xxxxxxxxxxxxxxxx0
xxxxxxxxxxxxxxxx0 0xxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxx 0xxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx0 xxxxxxxxxxxxxx
0xxxxxxxxxxxxxxxxxx0 0xxxxxxxxxxxx0
0xxxxxxxxxxxxxxxxxx xxxxxxxxxxx0
0xxxxxxxxxxxxxxxxx xxxxxxxxxx0
0xxxxxxxxxxxxxxxx xxxxxxxxx0
0xxxxxxxxxxxx0 0xxxxxxx0
0xxxxxxx0 xxxxxx0
0xxx00
x00
""")

36 changes: 19 additions & 17 deletions hyfetch/distros/vanilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,24 @@

vanilla = AsciiArt(match=r'''"Vanilla"*''', color='11 15', ascii=r"""
${c1}
.----:
.-------.
:---::----:
.----::-----.
......... :----::-----: ..:::-::::..
.-----------------::------------------:
----::-----------::----------::::---:
-----:::--------::-------:::-------
:------::::--::...:::::---------:
.---------::.. ..:---------.
.::-----::.. .::----::.
.:------:.......:-------:
.--------::::::::-:::-------.
.-------::-----.:-----::------.
-----::------: :------::-----
:--::--------: .-------::---:
:----------:: .:----------
.OO.
.OOOO.
.OO${c2}II${c1}OO.
IOOO${c2}II${c1}OOOI
.OOOO${c2}II${c1}OOOO.
............IOOOO${c2}II${c1}OOOOI............
OOOOOOOOOOOOOOOOOO${c2}II${c1}OOOOOOOOOOOOOOOOOO
OOOO${c2}II${c1}OOOOOOOOOOO${c2}II${c1}OOOOOOOOOOO${c2}II${c1}OOOO
OOOOO${c2}III${c1}OOOOOOOO${c2}II${c1}OOOOOOOO${c2}III${c1}OOOOO
OOOOOOO${c2}IIII${c1}OO${c2}I....I${c1}OO${c2}IIII${c1}OOOOOOO
OOOOOOOOOO${c2}II.. ..II${c1}OOOOOOOOOO
OOOOOOO${c2}II. .II${c1}OOOOOOO
OOOOOO${c2}II:......:II${c1}OOOOOO
OOOOOOOOO${c2}IIIIIIII${c1}OOOOOOOOO
OOOOOO${c2}II${c1}OOOOOOOOOOOO${c2}II${c1}OOOOOO
OOOO${c2}II${c1}OOOOOOOI IOOOOOO${c2}II${c1}OOOO
IOO${c2}II${c1}OOOOOOOO: :OOOOOOOO${c2}II${c1}OOI
IOOOOOOOOOOII IIOOOOOOOOOOI
""")

Loading

0 comments on commit 9777652

Please sign in to comment.