mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
20 lines
631 B
Text
20 lines
631 B
Text
# Template file for 'ventoy'
|
|
OSNAME="ventoy"
|
|
PRETTY="Ventoy"
|
|
BASEDOF="Void"
|
|
DESCRIPTION="Tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. "
|
|
HOMEPAGE="https://www.ventoy.net"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="1.1.05 1.1.04 1.1.02 1.1.01 1.1.00 1.0.99 1.0.98 1.0.97 1.0.96 1.0.95 1.0.94 1.0.93 1.0.91 1.0.90 1.0.89 1.0.88 1.0.87 1.0.86 1.0.85"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="ventoy-${RELEASE}-livecd.iso"
|
|
local URL="https://github.com/ventoy/Ventoy/releases/download/v${RELEASE}"
|
|
HASH="$(wget -q -O- "${URL}/sha256.txt" | grep "${ISO}" | cut -d' ' -f4)"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|