Add elementary 7.0

Hopefully I did this right. I tested locally, and it appears to download the 7.0 ISO correctly.
pull/630/head
Alan Pope 2 years ago committed by Martin Wimpress
parent 809ad68fd8
commit 75c80d89fd
  1. 11
      quickget

@ -296,7 +296,7 @@ function releases_dragonflybsd() {
} }
function releases_elementary() { function releases_elementary() {
echo 6.1 echo 6.1 7.0
} }
function releases_endeavouros() { function releases_endeavouros() {
@ -1067,7 +1067,14 @@ function get_dragonflybsd() {
function get_elementary() { function get_elementary() {
local HASH="" local HASH=""
local ISO="elementaryos-${RELEASE}-stable.20211218-rc.iso" case ${RELEASE} in
6.2)
local ISO="elementaryos-${RELEASE}-stable.20211218-rc.iso"
;;
7.0)
local ISO="elementaryos-${RELEASE}-stable.20230129rc.iso"
;;
esac
local URL="https://ams3.dl.elementary.io/download" local URL="https://ams3.dl.elementary.io/download"
echo "${URL}/$(date +%s | base64)/${ISO} ${HASH}" echo "${URL}/$(date +%s | base64)/${ISO} ${HASH}"
} }

Loading…
Cancel
Save