mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Prepare for 23.04 and add Ubuntu Cinnamon
This commit is contained in:
parent
c69fa6b430
commit
54d19096ad
1 changed files with 10 additions and 6 deletions
16
quickget
16
quickget
|
@ -65,9 +65,10 @@ function pretty_name() {
|
||||||
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
||||||
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
||||||
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
||||||
ubuntukylin) PRETTY_NAME="Ubuntu Kylin";;
|
ubuntucinnamon) PRETTY_NAME="Ubuntu Cinnamon";;
|
||||||
|
ubuntukylin) PRETTY_NAME="Ubuntu Kylin";;
|
||||||
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";;
|
||||||
void) PRETTY_NAME="Void Linux";;
|
void) PRETTY_NAME="Void Linux";;
|
||||||
zorin) PRETTY_NAME="Zorin OS";;
|
zorin) PRETTY_NAME="Zorin OS";;
|
||||||
|
@ -214,6 +215,7 @@ function os_support() {
|
||||||
truenas-scale \
|
truenas-scale \
|
||||||
ubuntu \
|
ubuntu \
|
||||||
ubuntu-budgie \
|
ubuntu-budgie \
|
||||||
|
ubuntucinnamon \
|
||||||
ubuntukylin \
|
ubuntukylin \
|
||||||
ubuntu-mate \
|
ubuntu-mate \
|
||||||
ubuntustudio \
|
ubuntustudio \
|
||||||
|
@ -528,7 +530,7 @@ function releases_truenas-scale() {
|
||||||
|
|
||||||
function releases_ubuntu() {
|
function releases_ubuntu() {
|
||||||
local LTS_SUPPORT="14.04 16.04 18.04 20.04 22.04"
|
local LTS_SUPPORT="14.04 16.04 18.04 20.04 22.04"
|
||||||
local INTERIM_SUPPORT="22.10"
|
local INTERIM_SUPPORT="22.10 23.04"
|
||||||
|
|
||||||
case "${OS}" in
|
case "${OS}" in
|
||||||
kubuntu|lubuntu|ubuntukylin|\
|
kubuntu|lubuntu|ubuntukylin|\
|
||||||
|
@ -543,14 +545,16 @@ function releases_ubuntu() {
|
||||||
ubuntu-unity)
|
ubuntu-unity)
|
||||||
INTERIM_SUPPORT="${INTERIM_SUPPORT}"
|
INTERIM_SUPPORT="${INTERIM_SUPPORT}"
|
||||||
;;
|
;;
|
||||||
|
ubuntucinnamon)
|
||||||
|
INTERIM_SUPPORT="${INTERIM_SUPPORT/22.10 /}"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
INTERIM_SUPPORT="${INTERIM_SUPPORT/22.10 /}"
|
|
||||||
|
|
||||||
if [ "${OS}" == "ubuntu-unity" ]; then
|
if [ "${OS}" == "ubuntu-unity" ] || [ "${OS}" == "ubuntucinnamon" ]; then
|
||||||
echo ${INTERIM_SUPPORT} \
|
echo ${INTERIM_SUPPORT} \
|
||||||
daily-live \
|
daily-live \
|
||||||
daily-canary \
|
daily-canary \
|
||||||
;
|
;
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue