From 66f32757414830d5385c74050d51f4db8b3ae470 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Wed, 4 May 2022 15:06:22 -0700 Subject: [PATCH 1/2] Add 1Password 8 --- Installomator.sh | 12 ++++++++++++ Labels.txt | 1 + 2 files changed, 13 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 3f64473..76f0cf2 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1302,6 +1302,18 @@ valuesfromarguments) blockingProcesses=( "1Password Extension Helper" "1Password 7" "1Password (Safari)" "1PasswordNativeMessageHost" "1PasswordSafariAppExtension" ) #forcefulQuit=YES ;; +1password8) + name="1Password 8" + type="zip" + if [[ $(arch) == "arm64" ]]; then + downloadURL="https://downloads.1password.com/mac/1Password-latest-aarch64.zip" + elif [[ $(arch) == "i386" ]]; then + downloadURL="https://downloads.1password.com/mac/1Password-latest-x86_64.zip" + fi + expectedTeamID="2BUA8C4S2C" + blockingProcesses=( "1Password Extension Helper" "1Password 7" "1Password" "1Password (Safari)" "1PasswordNativeMessageHost" "1PasswordSafariAppExtension" ) + #forcefulQuit=YES + ;; 1passwordcli) name="1Password CLI" type="pkg" diff --git a/Labels.txt b/Labels.txt index dc91bee..2cf5ce1 100644 --- a/Labels.txt +++ b/Labels.txt @@ -1,4 +1,5 @@ 1password7 +1password8 1passwordcli 4kvideodownloader 8x8 From 13864a0cd7abaa23c1bd3999faeb5cf6c7cc69a5 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Wed, 4 May 2022 15:23:04 -0700 Subject: [PATCH 2/2] Add appName and archiveName for 1password8 --- Installomator.sh | 3 +++ fragments/labels/1password8.sh | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 fragments/labels/1password8.sh diff --git a/Installomator.sh b/Installomator.sh index 76f0cf2..5a72db6 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1304,10 +1304,13 @@ valuesfromarguments) ;; 1password8) name="1Password 8" + appName="1Password.app" type="zip" if [[ $(arch) == "arm64" ]]; then + archiveName="1Password-latest-aarch64.zip" downloadURL="https://downloads.1password.com/mac/1Password-latest-aarch64.zip" elif [[ $(arch) == "i386" ]]; then + archiveName="1Password-latest-x86_64.zip" downloadURL="https://downloads.1password.com/mac/1Password-latest-x86_64.zip" fi expectedTeamID="2BUA8C4S2C" diff --git a/fragments/labels/1password8.sh b/fragments/labels/1password8.sh new file mode 100644 index 0000000..8ca3e78 --- /dev/null +++ b/fragments/labels/1password8.sh @@ -0,0 +1,15 @@ +1password8) + name="1Password 8" + appName="1Password.app" + type="zip" + if [[ $(arch) == "arm64" ]]; then + archiveName="1Password-latest-aarch64.zip" + downloadURL="https://downloads.1password.com/mac/1Password-latest-aarch64.zip" + elif [[ $(arch) == "i386" ]]; then + archiveName="1Password-latest-x86_64.zip" + downloadURL="https://downloads.1password.com/mac/1Password-latest-x86_64.zip" + fi + expectedTeamID="2BUA8C4S2C" + blockingProcesses=( "1Password Extension Helper" "1Password 7" "1Password" "1Password (Safari)" "1PasswordNativeMessageHost" "1PasswordSafariAppExtension" ) + #forcefulQuit=YES + ;; \ No newline at end of file