From 34fb0d9271e4e4533a6600bf87b3bd616ee26c75 Mon Sep 17 00:00:00 2001 From: John Hutchison Date: Fri, 7 May 2021 12:18:08 -0400 Subject: [PATCH 1/5] New Labels for Apple Fonts New labels for Apple's font collections including New York, San Francisco Mono, San Francisco Pro, and San Francisco Compact --- Installomator.sh | 28 ++++++++++++++++++++++++++++ Labels.txt | 4 ++++ 2 files changed, 32 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 545a928..b65a2eb 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -949,6 +949,34 @@ appcleaner) expectedTeamID="X85ZX835W9" #Company=FreeMacSoft ;; +applenyfonts) + name="Apple New York Font Collection" + type="pkgInDmg" + downloadURL="https://devimages-cdn.apple.com/design/resources/download/NY-Font.dmg" + packageID="com.apple.pkg.NYFonts" + expectedTeamID="Development Update" + ;; +applesfpro) + name="San Francisco Pro" + type="pkgInDmg" + downloadURL="https://devimages-cdn.apple.com/design/resources/download/SF-Font-Pro.dmg" + packageID="com.apple.pkg.SanFranciscoPro" + expectedTeamID="Development Update" + ;; +applesfmono) + name="San Francisco Mono" + type="pkgInDmg" + downloadURL="https://devimages-cdn.apple.com/design/resources/download/SF-Mono.dmg" + packageID="com.apple.pkg.SFMonoFonts" + expectedTeamID="Software Update" + ;; +applesfcompact) + name="San Francisco Compact" + type="pkgInDmg" + downloadURL="https://devimages-cdn.apple.com/design/resources/download/SF-Font-Compact.dmg" + packageID="com.apple.pkg.SanFranciscoCompact" + expectedTeamID="Development Update" + ;; aquaskk) # credit: Tadayuki Onishi (@kenchan0130) name="aquaskk" diff --git a/Labels.txt b/Labels.txt index da6bf23..2b822de 100644 --- a/Labels.txt +++ b/Labels.txt @@ -14,6 +14,10 @@ amazonworkspaces androidfiletransfer apparency appcleaner +applenyfonts +applesfcompact +applesfmono +applesfpro aquaskk atom autodmg From d32496e7e10aed1125dc569810c9a355e281c887 Mon Sep 17 00:00:00 2001 From: John Hutchison Date: Sun, 9 May 2021 08:23:56 -0400 Subject: [PATCH 2/5] Updated new App URL for Camo Studio --- Installomator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installomator.sh b/Installomator.sh index b65a2eb..3f8448d 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1143,7 +1143,7 @@ camostudio) name="Camo Studio" type="zip" downloadURL="https://reincubate.com/res/labs/camo/camo-macos-latest.zip" - #appNewVersion=$( ) # Can't find any versioniing on web server + appNewVersion=$(curl -s -L https://reincubate.com/support/camo/release-notes/ | grep -m2 "title is-5" | tail -n1 | grep -o -e "name=.*\"" | awk -F '=' '{print $2}' | sed 's/\"//g') expectedTeamID="Q248YREB53" ;; camtasia) From 16828a190f34f37bcffa1841b79e9a35c6a494c3 Mon Sep 17 00:00:00 2001 From: John Hutchison Date: Sun, 9 May 2021 08:24:16 -0400 Subject: [PATCH 3/5] New Label for Proxyman --- Installomator.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 3f8448d..5c25ca9 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -2112,6 +2112,13 @@ promiseutilityr) expectedTeamID="268CCUR4WN" #Company="Promise" ;; +proxyman) + name="Proxyman" + type="dmg" + downloadURL="https://proxyman.io/release/osx/Proxyman_latest.dmg" + expectedTeamID="3X57WP8E8V" + appNewVersion=$(curl -s -L https://github.com/ProxymanApp/Proxyman | grep -o 'releases/tag/.*\>' | awk -F '/' '{print $3}') + ;; pymol) name="PyMOL" type="dmg" From 5f264ca86838e73afd3f03950150cb12b128a869 Mon Sep 17 00:00:00 2001 From: John Hutchison Date: Wed, 19 May 2021 09:26:54 -0400 Subject: [PATCH 4/5] Added Label for Proxyman --- Labels.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Labels.txt b/Labels.txt index 2b822de..157bdfb 100644 --- a/Labels.txt +++ b/Labels.txt @@ -184,6 +184,7 @@ prism9 privileges proctortrack promiseutilityr +proxyman pycharmce pymol r From 088b4aab2f8b38cc8eec333c89965ae8b1b2db25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Theilgaard?= Date: Thu, 20 May 2021 13:47:13 +0200 Subject: [PATCH 5/5] Incorrect version in camostudio Thanks for find the URL with release-notes, but the original version returned had too much content. Current version is only 1.3.4, not "1.3.4.4648". But in the little square on the right side above the download link is the version, so I took that. --- Installomator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installomator.sh b/Installomator.sh index 5c25ca9..6349abf 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1143,7 +1143,7 @@ camostudio) name="Camo Studio" type="zip" downloadURL="https://reincubate.com/res/labs/camo/camo-macos-latest.zip" - appNewVersion=$(curl -s -L https://reincubate.com/support/camo/release-notes/ | grep -m2 "title is-5" | tail -n1 | grep -o -e "name=.*\"" | awk -F '=' '{print $2}' | sed 's/\"//g') + appNewVersion=$(curl -s -L https://reincubate.com/support/camo/release-notes/ | grep -m2 "has-m-t-0" | head -1 | cut -d ">" -f2 | cut -d " " -f1) expectedTeamID="Q248YREB53" ;; camtasia)