Merge 8e5d2f5281 into 82df57dadf
This commit is contained in:
commit
336fa0d2ac
15
quickget
15
quickget
|
|
@ -72,6 +72,7 @@ function os_info() {
|
|||
haiku) INFO="Haiku|-|https://www.haiku-os.org/|Specifically targets personal computing. Inspired by the BeOS, Haiku is fast, simple to use, easy to learn and yet very powerful.";;
|
||||
kali) INFO="Kali|-|https://www.kali.org/|The most advanced Penetration Testing Distribution.";;
|
||||
kdeneon) INFO="KDE Neon|-|https://neon.kde.org/|Latest and greatest of KDE community software packaged on a rock-solid base.";;
|
||||
kdelinux) INFO="KDE Linux|-|https://kde.org/linux/|A free Linux-based operating system built by KDE.";;
|
||||
kolibrios) INFO="KolibriOS|-|https://kolibrios.org/en/|Tiny yet incredibly powerful and fast operating system.";;
|
||||
kubuntu) INFO="Kubuntu|-|https://kubuntu.org/|Free, complete, and open-source alternative to Microsoft Windows and Mac OS X which contains everything you need to work, play, or share.";;
|
||||
linuxlite) INFO="Linux Lite|-|https://www.linuxliteos.com/|Your first simple, fast and free stop in the world of Linux.";;
|
||||
|
|
@ -501,6 +502,7 @@ function os_support() {
|
|||
haiku \
|
||||
kali \
|
||||
kdeneon \
|
||||
kdelinux \
|
||||
kolibrios \
|
||||
kubuntu \
|
||||
linuxlite \
|
||||
|
|
@ -837,6 +839,10 @@ function releases_kdeneon() {
|
|||
echo user testing unstable
|
||||
}
|
||||
|
||||
function releases_kdelinux() {
|
||||
echo latest
|
||||
}
|
||||
|
||||
function releases_kolibrios() {
|
||||
echo latest
|
||||
}
|
||||
|
|
@ -2229,6 +2235,15 @@ function get_kdeneon() {
|
|||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function get_kdelinux() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
local URL="https://files.kde.org/kde-linux"
|
||||
ISO=$(curl -s "${URL}/?C=M;O=D" | grep -o 'kde-linux_[0-9]\{12\}\.iso' | head -n1)
|
||||
HASH=$(web_pipe "${URL}/SHA256SUMS" | grep "$ISO" | awk '{print $1}')
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function get_kolibrios() {
|
||||
local HASH=""
|
||||
local ISO="latest-iso.7z"
|
||||
|
|
|
|||
Loading…
Reference in New Issue