From 489efa51debc7b4a33a7dc12950fcb1e7eec739c Mon Sep 17 00:00:00 2001 From: Allen Houchins <32207388+allenhouchins@users.noreply.github.com> Date: Sun, 1 Feb 2026 23:12:14 -0600 Subject: [PATCH] Evernote: update darwin to latest and freeze (#39136) This pull request updates the configuration and output files for the Evernote maintained app to simplify version management and improve maintainability. The main changes involve switching to a "latest" version tracking approach and marking the app as frozen. **Version management updates:** * Changed the tracked version in `ee/maintained-apps/outputs/evernote/darwin.json` from a specific version (`10.105.4`) to `"latest"`, and updated the `installer_url` to always point to the latest Evernote DMG file. The `sha256` hash is now set to `"no_check"` to accommodate the dynamic installer. **Configuration changes:** * Added `"frozen": true` to the Evernote app input configuration in `ee/maintained-apps/inputs/homebrew/evernote.json` to indicate the app is no longer actively updated in this system. **Related issue:** Resolves #39032 --- ee/maintained-apps/inputs/homebrew/evernote.json | 3 ++- ee/maintained-apps/outputs/evernote/darwin.json | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ee/maintained-apps/inputs/homebrew/evernote.json b/ee/maintained-apps/inputs/homebrew/evernote.json index 91e6563909..1c0d9fbd05 100644 --- a/ee/maintained-apps/inputs/homebrew/evernote.json +++ b/ee/maintained-apps/inputs/homebrew/evernote.json @@ -5,5 +5,6 @@ "installer_format": "dmg", "slug": "evernote/darwin", "default_categories": ["Productivity"], - "install_script_path": "ee/maintained-apps/inputs/homebrew/scripts/evernote-install.sh" + "install_script_path": "ee/maintained-apps/inputs/homebrew/scripts/evernote-install.sh", + "frozen": true } diff --git a/ee/maintained-apps/outputs/evernote/darwin.json b/ee/maintained-apps/outputs/evernote/darwin.json index cd70affd2c..9a34560833 100644 --- a/ee/maintained-apps/outputs/evernote/darwin.json +++ b/ee/maintained-apps/outputs/evernote/darwin.json @@ -1,14 +1,14 @@ { "versions": [ { - "version": "10.105.4", + "version": "latest", "queries": { "exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.evernote.Evernote';" }, - "installer_url": "https://mac.desktop.evernote.com/builds/Evernote-10.105.4-mac-ddl-stage-20240910164757-a2e60a8d876a07eded5d212fa56ba45214114ad0.dmg", + "installer_url": "https://mac.desktop.evernote.com/builds/Evernote-latest.dmg", "install_script_ref": "c4c66da7", "uninstall_script_ref": "7be36873", - "sha256": "98d1f6d52718a0b05222b7cdce14a3755ece619edf0a1b8557af75afbfe2cd73", + "sha256": "no_check", "default_categories": [ "Productivity" ]