Updated Linux Mint and added LMDE in Quickget

Updated Linux Mint version to 20.3 (latest)
Added LMDE (Linux Mint Debian Edition), current version is 5
This commit is contained in:
tudo75 2022-06-09 12:32:06 +02:00
parent 187da46c3b
commit e75391319b

View File

@ -45,6 +45,7 @@ function pretty_name() {
kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mxlinux) PRETTY_NAME="MX Linux";;
netboot) PRETTY_NAME="netboot.xyz";;
netbsd) PRETTY_NAME="NetBSD";;
@ -177,6 +178,7 @@ function os_support() {
kolibrios \
kubuntu \
linuxmint \
lmde \
manjaro \
mxlinux \
netboot \
@ -342,13 +344,17 @@ function releases_kolibrios() {
}
function releases_linuxmint(){
echo 20.2
echo 20.3
}
function editions_linuxmint(){
echo cinnamon mate xfce
}
function releases_lmde(){
echo 5
}
function releases_mxlinux(){
echo 21
}
@ -1007,6 +1013,16 @@ function get_linuxmint() {
echo "${URL}/${ISO} ${HASH}"
}
function get_lmde() {
local EDITION="${1:-}"
local HASH=""
local ISO="lmde-${RELEASE}-cinnamon-64bit.iso"
local URL="https://mirror.bytemark.co.uk/linuxmint/debian/"
HASH=$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}
function get_macos() {
local BOARD_ID=""
local CWD=""