Merge pull request #384 from Installomator/remotedesktopmanager-ent-free

Remote Desktop Manager Enterprise and Free, and front update
This commit is contained in:
Søren Theilgaard
2022-01-18 20:31:05 +01:00
committed by GitHub
3 changed files with 21 additions and 1 deletions

View File

@@ -1,7 +1,13 @@
front)
name="Front"
type="dmg"
downloadURL="https://dl.frontapp.com/macos/Front.dmg"
if [[ $(arch) == "arm64" ]]; then
downloadURL="https://dl.frontapp.com/macos/Front-arm64.dmg"
appNewVersion=$(curl -fs "https://dl.frontapp.com/desktop/updates/latest/mac-arm64/latest-mac.yml" | grep -i version | cut -d " " -f2)
elif [[ $(arch) == "i386" ]]; then
downloadURL="https://dl.frontapp.com/macos/Front.dmg"
appNewVersion=$(curl -fs "https://dl.frontapp.com/desktop/updates/latest/mac/latest-mac.yml" | grep -i version | cut -d " " -f2)
fi
expectedTeamID="X549L7572J"
Company="FrontApp. Inc."
;;

View File

@@ -0,0 +1,7 @@
remotedesktopmanagerenterprise)
name="Remote Desktop Manager"
type="dmg"
downloadURL=$(curl -fs https://remotedesktopmanager.com/home/thankyou/rdmmacbin | grep -oe "http.*\.dmg" | head -1)
appNewVersion=$(echo "$downloadURL" | sed -E 's/.*\.Mac\.([0-9.]*)\.dmg/\1/g')
expectedTeamID="N592S9ASDB"
;;

View File

@@ -0,0 +1,7 @@
remotedesktopmanagerfree)
name="Remote Desktop Manager Free"
type="dmg"
downloadURL=$(curl -fs https://remotedesktopmanager.com/home/thankyou/rdmmacfreebin | grep -oe "http.*\.dmg" | head -1)
appNewVersion=$(echo "$downloadURL" | sed -E 's/.*\.Mac\.([0-9.]*)\.dmg/\1/g')
expectedTeamID="N592S9ASDB"
;;