Build Process Request: zsync files for distro ISOs

I have no thought on that.

Appreciate your intention though.

If you want to ease up the download - you could use a script.

A short while ago I created a small command line python script which downloads the current ISO and signature and verifies when download is done.

You could easily create a wrapper loop for it and run it when a new release has been made.

EDITIONS=("gnome", "xfce", "plasma")
for edition in ${EDITIONS[@]}; do
    get-iso ${edition}
    get-iso -f ${edition}
done

It is also possible to amend the script to fetch the torrent and start a seed based on that.