Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

holoiso: 20230626 #746

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 15 additions & 16 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ function pretty_name() {
freedos) PRETTY_NAME="FreeDOS";;
garuda) PRETTY_NAME="Garuda Linux";;
ghostbsd) PRETTY_NAME="GhostBSD";;
holoiso) PRETTY_NAME="HoloISO";;
kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";;
Expand All @@ -65,7 +66,6 @@ function pretty_name() {
reactos) PRETTY_NAME="ReactOS";;
rebornos) PRETTY_NAME="RebornOS";;
rockylinux) PRETTY_NAME="Rocky Linux";;
holoiso) PRETTY_NAME="HoloISO";;
truenas-core) PRETTY_NAME="TrueNAS Core";;
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
Expand Down Expand Up @@ -200,6 +200,7 @@ function os_support() {
gentoo \
ghostbsd \
haiku \
holoiso \
kali \
kdeneon \
kolibrios \
Expand All @@ -225,7 +226,6 @@ function os_support() {
siduction \
slackware \
solus \
holoiso \
tails \
truenas-core \
truenas-scale \
Expand Down Expand Up @@ -425,6 +425,10 @@ function editions_haiku() {
echo x86_64 x86_gcc2h
}

function releases_holoiso() {
echo 4.5
}

function releases_kali() {
echo current kali-weekly
}
Expand Down Expand Up @@ -571,10 +575,6 @@ function editions_solus() {
echo Budgie GNOME MATE Plasma
}

function releases_holoiso() {
echo 4.0
}

function releases_tails() {
echo stable
}
Expand Down Expand Up @@ -1346,6 +1346,15 @@ function get_haiku() {
echo "${URL}/${ISO} ${HASH}"
}

function get_holoiso() {
local HASH=""
local ISO="HoloISO_${RELEASE}_ux_changes-20230626_66f7c74061_bootchoice_fixes-1-x86_64.iso"
local URL="http://holoiso.itsvixano.me"

HASH=$(wget -q -O- "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_kali() {
local HASH=""
local ISO=""
Expand Down Expand Up @@ -1665,16 +1674,6 @@ function get_solus() {
echo "${URL}/${ISO} ${HASH}"
}

function get_holoiso() {
local HASH=""
local DATE="20221211"
local ISO="HoloISO_${RELEASE}_OfflineInstaller-${DATE}_1636-x86_64.iso"
local URL="http://holoiso.itsvixano.me"

HASH=$(wget -q -O- "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_tails() {
local ISO=""
local JSON=""
Expand Down