Update Fleet-maintained apps (#48812)
Automated ingestion of latest Fleet-maintained app data. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Updated app release metadata for Cursor, Hive, OpenCode Desktop, Postman, and Wavebox to reflect the latest available versions, download links, and checksums. * Adjusted installation status checks so these apps are detected correctly after upgrading. * Refreshed uninstall handling for Docker Desktop and Nova to use the latest removal instructions. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: allenhouchins <32207388+allenhouchins@users.noreply.github.com>
This commit is contained in:
co-authored by
allenhouchins
parent
d7692a43ef
commit
fcd63ebdbd
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"version": "3.10.11",
|
||||
"version": "3.10.17",
|
||||
"queries": {
|
||||
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.todesktop.230313mzl4w4u92';",
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.todesktop.230313mzl4w4u92' AND version_compare(bundle_short_version, '3.10.11') < 0);"
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.todesktop.230313mzl4w4u92' AND version_compare(bundle_short_version, '3.10.17') < 0);"
|
||||
},
|
||||
"installer_url": "https://downloads.cursor.com/production/4ef9fe3d055f8c4523179a090f14eb835bc3c94e/darwin/arm64/Cursor-darwin-arm64.zip",
|
||||
"installer_url": "https://downloads.cursor.com/production/c89f45b831621cdc5e951694db44fecd8fab1150/darwin/arm64/Cursor-darwin-arm64.zip",
|
||||
"install_script_ref": "5147ff0b",
|
||||
"uninstall_script_ref": "9d80ae1c",
|
||||
"sha256": "03337271ef9ea01669add55893871e9659a84d5f1d0cbfe09b0c9484b4e5a115",
|
||||
"sha256": "40906c218869720dae07284a4a6160cff1b7d0c12277990237277f43a7877185",
|
||||
"default_categories": [
|
||||
"Developer tools"
|
||||
]
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.2.8",
|
||||
"version": "1.2.9",
|
||||
"queries": {
|
||||
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.hive.app';",
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hive.app' AND version_compare(bundle_short_version, '1.2.8') < 0);"
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hive.app' AND version_compare(bundle_short_version, '1.2.9') < 0);"
|
||||
},
|
||||
"installer_url": "https://github.com/morapelker/hive/releases/download/v1.2.8/Hive-1.2.8-arm64.dmg",
|
||||
"installer_url": "https://github.com/morapelker/hive/releases/download/v1.2.9/Hive-1.2.9-arm64.dmg",
|
||||
"install_script_ref": "6b39e7ad",
|
||||
"uninstall_script_ref": "78bb4e43",
|
||||
"sha256": "e0a059dc2cb6a3293ee43525359a1c20aff9c10d0d5ca7f2b062b1126ea9117d",
|
||||
"sha256": "38f34c4eb128cbbc74a81430afce52182c8d101ce94450965eaf93526a14bbef",
|
||||
"default_categories": [
|
||||
"Productivity"
|
||||
]
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
},
|
||||
"installer_url": "https://panic.com/download/nova/Nova%2013.4.zip",
|
||||
"install_script_ref": "ce3cd317",
|
||||
"uninstall_script_ref": "24345bcf",
|
||||
"uninstall_script_ref": "2d51ce6a",
|
||||
"sha256": "728e933f0f64f7547c2bd057f6bda74d056953a9272c9f9382a71af5e50e25b3",
|
||||
"default_categories": [
|
||||
"Developer tools"
|
||||
@@ -16,7 +16,7 @@
|
||||
}
|
||||
],
|
||||
"refs": {
|
||||
"24345bcf": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nLOGGED_IN_USER=$(scutil <<< \"show State:/Users/ConsoleUser\" | awk '/Name :/ { print $3 }')\n# functions\n\ntrash() {\n local logged_in_user=\"$1\"\n local target_file=\"$2\"\n local timestamp=\"$(date +%Y-%m-%d-%s)\"\n local rand=\"$(jot -r 1 0 99999)\"\n\n # replace ~ with /Users/$logged_in_user\n if [[ \"$target_file\" == ~* ]]; then\n target_file=\"/Users/$logged_in_user${target_file:1}\"\n fi\n\n local trash=\"/Users/$logged_in_user/.Trash\"\n\n # If the target contains glob characters, expand it and move each match.\n if [[ \"$target_file\" == *[*?[]* ]]; then\n local file file_name\n local matched=false\n local i=0\n # compgen -G expands the (quoted) pattern itself, so paths containing\n # spaces glob correctly; reading line by line keeps each match intact.\n while IFS= read -r file; do\n [[ -n \"$file\" ]] || continue\n [[ -e \"$file\" || -L \"$file\" ]] || continue\n matched=true\n i=$((i + 1))\n file_name=\"$(basename \"$file\")\"\n echo \"removing $file.\"\n # The per-match counter keeps matches that share a basename from\n # overwriting each other in the trash.\n mv -f \"$file\" \"$trash/${file_name}_${timestamp}_${rand}_${i}\"\n done < <(compgen -G \"$target_file\" 2>/dev/null)\n if [[ \"$matched\" == false ]]; then\n echo \"$target_file doesn't exist.\"\n fi\n return\n fi\n\n local file_name=\"$(basename \"${target_file}\")\"\n\n if [[ -e \"$target_file\" ]]; then\n echo \"removing $target_file.\"\n mv -f \"$target_file\" \"$trash/${file_name}_${timestamp}_${rand}\"\n else\n echo \"$target_file doesn't exist.\"\n fi\n}\n\nsudo rm -rf \"$APPDIR/Nova.app\"\nsudo rm -rf '/Library/LaunchDaemons/com.panic.NovaPrivilegedHelper.plist'\nsudo rm -rf '/Library/PrivilegedHelperTools/com.panic.NovaPrivilegedHelper'\ntrash $LOGGED_IN_USER '~/Library/Application Scripts/com.panic.Nova.NovaQuickLookPreview'\ntrash $LOGGED_IN_USER '~/Library/Application Scripts/com.panic.Nova.NovaQuickLookThumbnail'\ntrash $LOGGED_IN_USER '~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.panic.nova.sfl*'\ntrash $LOGGED_IN_USER '~/Library/Caches/com.panic.Nova'\ntrash $LOGGED_IN_USER '~/Library/Containers/com.panic.Nova.NovaQuickLookPreview'\ntrash $LOGGED_IN_USER '~/Library/Containers/com.panic.Nova.NovaQuickLookThumbnail'\ntrash $LOGGED_IN_USER '~/Library/Preferences/com.panic.Nova.plist'\ntrash $LOGGED_IN_USER '~/Library/WebKit/com.panic.Nova'\n",
|
||||
"2d51ce6a": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nLOGGED_IN_USER=$(scutil <<< \"show State:/Users/ConsoleUser\" | awk '/Name :/ { print $3 }')\n# functions\n\ntrash() {\n local logged_in_user=\"$1\"\n local target_file=\"$2\"\n local timestamp=\"$(date +%Y-%m-%d-%s)\"\n local rand=\"$(jot -r 1 0 99999)\"\n\n # replace ~ with /Users/$logged_in_user\n if [[ \"$target_file\" == ~* ]]; then\n target_file=\"/Users/$logged_in_user${target_file:1}\"\n fi\n\n local trash=\"/Users/$logged_in_user/.Trash\"\n\n # If the target contains glob characters, expand it and move each match.\n if [[ \"$target_file\" == *[*?[]* ]]; then\n local file file_name\n local matched=false\n local i=0\n # compgen -G expands the (quoted) pattern itself, so paths containing\n # spaces glob correctly; reading line by line keeps each match intact.\n while IFS= read -r file; do\n [[ -n \"$file\" ]] || continue\n [[ -e \"$file\" || -L \"$file\" ]] || continue\n matched=true\n i=$((i + 1))\n file_name=\"$(basename \"$file\")\"\n echo \"removing $file.\"\n # The per-match counter keeps matches that share a basename from\n # overwriting each other in the trash.\n mv -f \"$file\" \"$trash/${file_name}_${timestamp}_${rand}_${i}\"\n done < <(compgen -G \"$target_file\" 2>/dev/null)\n if [[ \"$matched\" == false ]]; then\n echo \"$target_file doesn't exist.\"\n fi\n return\n fi\n\n local file_name=\"$(basename \"${target_file}\")\"\n\n if [[ -e \"$target_file\" ]]; then\n echo \"removing $target_file.\"\n mv -f \"$target_file\" \"$trash/${file_name}_${timestamp}_${rand}\"\n else\n echo \"$target_file doesn't exist.\"\n fi\n}\n\nsudo rm -rf '/Library/LaunchDaemons/com.panic.NovaPrivilegedHelper.plist'\nsudo rm -rf '/Library/PrivilegedHelperTools/com.panic.NovaPrivilegedHelper'\nsudo rm -rf \"$APPDIR/Nova.app\"\ntrash $LOGGED_IN_USER '~/Library/Application Scripts/com.panic.Nova.NovaQuickLookPreview'\ntrash $LOGGED_IN_USER '~/Library/Application Scripts/com.panic.Nova.NovaQuickLookThumbnail'\ntrash $LOGGED_IN_USER '~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.panic.nova.sfl*'\ntrash $LOGGED_IN_USER '~/Library/Caches/com.panic.Nova'\ntrash $LOGGED_IN_USER '~/Library/Containers/com.panic.Nova.NovaQuickLookPreview'\ntrash $LOGGED_IN_USER '~/Library/Containers/com.panic.Nova.NovaQuickLookThumbnail'\ntrash $LOGGED_IN_USER '~/Library/Preferences/com.panic.Nova.plist'\ntrash $LOGGED_IN_USER '~/Library/WebKit/com.panic.Nova'\n",
|
||||
"ce3cd317": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nTMPDIR=$(dirname \"$(realpath \"$INSTALLER_PATH\")\")\n# functions\n\nquit_and_track_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n eval \"export $var_name=0\"\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n eval \"export $var_name=0\"\n return\n fi\n\n # App was running, mark it for relaunch\n eval \"export $var_name=1\"\n echo \"Application '$bundle_id' was running; will relaunch after installation.\"\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n\nrelaunch_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local was_running\n\n # Check if the app was running before installation\n eval \"was_running=\\$$var_name\"\n if [[ \"$was_running\" != \"1\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping relaunching application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Relaunching application '$bundle_id'...\"\n\n # Launch the app in the logged-in user's GUI session. Apps launched by root\n # won't register with the user's Dock/GUI, so run 'open' as the console user.\n # Use 'launchctl asuser' to bootstrap into the console user's Mach namespace\n # and GUI session — 'sudo -u' alone doesn't do this, which can cause\n # LSOpenURLsWithRole() failures even when 'open' exits 0.\n local open_status=0\n if [[ $EUID -eq 0 ]]; then\n local console_uid\n console_uid=$(id -u \"$console_user\")\n /bin/launchctl asuser \"$console_uid\" sudo -u \"$console_user\" open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n else\n open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n fi\n\n if [[ $open_status -eq 0 ]]; then\n echo \"Application '$bundle_id' relaunched successfully.\"\n else\n echo \"Failed to relaunch application '$bundle_id'.\"\n fi\n}\n\n\n# extract contents\nunzip \"$INSTALLER_PATH\" -d \"$TMPDIR\"\n# copy to the applications folder\nquit_and_track_application 'com.panic.Nova'\nif [ -d \"$APPDIR/Nova.app\" ]; then\n\tsudo mv \"$APPDIR/Nova.app\" \"$TMPDIR/Nova.app.bkp\"\nfi\nsudo cp -R \"$TMPDIR/Nova.app\" \"$APPDIR\"\nrelaunch_application 'com.panic.Nova'\n"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.17.13",
|
||||
"version": "1.17.14",
|
||||
"queries": {
|
||||
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'ai.opencode.desktop';",
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'ai.opencode.desktop' AND version_compare(bundle_short_version, '1.17.13') < 0);"
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'ai.opencode.desktop' AND version_compare(bundle_short_version, '1.17.14') < 0);"
|
||||
},
|
||||
"installer_url": "https://github.com/anomalyco/opencode/releases/download/v1.17.13/opencode-desktop-mac-arm64.dmg",
|
||||
"installer_url": "https://github.com/anomalyco/opencode/releases/download/v1.17.14/opencode-desktop-mac-arm64.dmg",
|
||||
"install_script_ref": "727dc41e",
|
||||
"uninstall_script_ref": "ad62b190",
|
||||
"sha256": "db8e9159ec9d8615d9cce0a72dca107b43d643a7fdc63664d4b5d28e6c8e7ed9",
|
||||
"sha256": "deb8267728b08404beadc6b8225566b8ff618e2b134b19a46529ac42c95df95c",
|
||||
"default_categories": [
|
||||
"Productivity"
|
||||
]
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"version": "12.17.5",
|
||||
"version": "12.18.0",
|
||||
"queries": {
|
||||
"exists": "SELECT 1 FROM programs WHERE name LIKE 'Postman x64 %' AND publisher = 'Postman';",
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'Postman x64 %' AND publisher = 'Postman' AND version_compare(version, '12.17.5') < 0);"
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'Postman x64 %' AND publisher = 'Postman' AND version_compare(version, '12.18.0') < 0);"
|
||||
},
|
||||
"installer_url": "https://dl.pstmn.io/download/version/12.17.5/windows_64",
|
||||
"installer_url": "https://dl.pstmn.io/download/version/12.18.0/windows_64",
|
||||
"install_script_ref": "8594f0bc",
|
||||
"uninstall_script_ref": "fd59d029",
|
||||
"sha256": "450c4c646574322936f943252c44e8f2c5a237952dcd7bcfc23c9f0c72bf119a",
|
||||
"sha256": "2519f6ba4469ca5125ab7f93d74637408483ab201b45d52479d964e841a44a3d",
|
||||
"default_categories": [
|
||||
"Developer tools"
|
||||
]
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"version": "150.2.117.2",
|
||||
"version": "150.2.118.2",
|
||||
"queries": {
|
||||
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'io.wavebox.wavebox';",
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'io.wavebox.wavebox' AND version_compare(bundle_short_version, '150.2.117.2') < 0);"
|
||||
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'io.wavebox.wavebox' AND version_compare(bundle_short_version, '150.2.118.2') < 0);"
|
||||
},
|
||||
"installer_url": "https://download.wavebox.app/stable/macarm64/Wavebox_150.2.117.2.zip",
|
||||
"installer_url": "https://download.wavebox.app/stable/macarm64/Wavebox_150.2.118.2.zip",
|
||||
"install_script_ref": "60a16753",
|
||||
"uninstall_script_ref": "ecfbed36",
|
||||
"sha256": "37d4e78042bfadef684884442e0bf789ebda6571bcf14c9f513c5f398ac8f9ff",
|
||||
"sha256": "de39d965c63fc945b535b50f1b23ea68145f979a73c3c4c5f9b1d38f8e713dfa",
|
||||
"default_categories": [
|
||||
"Browsers"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user