mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
ventoy
This commit is contained in:
parent
7a551cff53
commit
83ba5b3581
2 changed files with 14 additions and 0 deletions
BIN
config/icons/ventoy.png
Normal file
BIN
config/icons/ventoy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.1 KiB |
14
quickget
14
quickget
|
@ -78,6 +78,7 @@ function pretty_name() {
|
||||||
ubuntu-mate) PRETTY_NAME="Ubuntu MATE";;
|
ubuntu-mate) PRETTY_NAME="Ubuntu MATE";;
|
||||||
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
|
ubuntustudio) PRETTY_NAME="Ubuntu Studio";;
|
||||||
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
|
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
|
||||||
|
ventoy) PRETTY_NAME=Ventoy;;
|
||||||
void) PRETTY_NAME="Void Linux";;
|
void) PRETTY_NAME="Void Linux";;
|
||||||
voidpup) PRETTY_NAME="Void Puppy";;
|
voidpup) PRETTY_NAME="Void Puppy";;
|
||||||
vxlinux) PRETTY_NAME="VX Linux";;
|
vxlinux) PRETTY_NAME="VX Linux";;
|
||||||
|
@ -240,6 +241,7 @@ function os_support() {
|
||||||
ubuntu-mate \
|
ubuntu-mate \
|
||||||
ubuntustudio \
|
ubuntustudio \
|
||||||
ubuntu-unity \
|
ubuntu-unity \
|
||||||
|
ventoy \
|
||||||
void \
|
void \
|
||||||
voidpup \
|
voidpup \
|
||||||
vxlinux \
|
vxlinux \
|
||||||
|
@ -687,6 +689,10 @@ function releases_ubuntu() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_ventoy() {
|
||||||
|
echo latest
|
||||||
|
}
|
||||||
|
|
||||||
function releases_void() {
|
function releases_void() {
|
||||||
echo current 20221001 20210316 20210930 20210218 20191109 20190526 20190217 20181111 20171007 20170825 20170220
|
echo current 20221001 20210316 20210930 20210218 20191109 20190526 20190217 20181111 20171007 20170825 20170220
|
||||||
}
|
}
|
||||||
|
@ -1870,6 +1876,14 @@ function get_ubuntu() {
|
||||||
fi
|
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() {
|
function get_void() {
|
||||||
local DATE=""
|
local DATE=""
|
||||||
local EDITION="${1:-}"
|
local EDITION="${1:-}"
|
||||||
|
|
Loading…
Reference in a new issue