This commit is contained in:
zenobit 2023-03-21 05:31:30 +01:00
parent 7a551cff53
commit 83ba5b3581
2 changed files with 14 additions and 0 deletions

BIN
config/icons/ventoy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -78,6 +78,7 @@ function pretty_name() {
ubuntu-mate) PRETTY_NAME="Ubuntu MATE";;
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
ventoy) PRETTY_NAME=Ventoy;;
void) PRETTY_NAME="Void Linux";;
voidpup) PRETTY_NAME="Void Puppy";;
vxlinux) PRETTY_NAME="VX Linux";;
@ -240,6 +241,7 @@ function os_support() {
ubuntu-mate \
ubuntustudio \
ubuntu-unity \
ventoy \
void \
voidpup \
vxlinux \
@ -687,6 +689,10 @@ function releases_ubuntu() {
fi
}
function releases_ventoy() {
echo latest
}
function releases_void() {
echo current 20221001 20210316 20210930 20210218 20191109 20190526 20190217 20181111 20171007 20170825 20170220
}
@ -1870,6 +1876,14 @@ function get_ubuntu() {
fi
}
function get_ventoy() {
local HASH=
local ISO=ventoy-1.0.89-livecd.iso
local URL=https://github.com/ventoy/Ventoy/releases/download/v1.0.89
HASH="$(wget -q -O- "${URL}/sha256.txt" | grep "${ISO}" | cut -d' ' -f4)"
echo "${URL}/${ISO} ${HASH}"
}
function get_void() {
local DATE=""
local EDITION="${1:-}"