From 9f415ac3965ef0d189b31a5719369bdf6f4b741f Mon Sep 17 00:00:00 2001 From: abose Date: Sat, 10 Jan 2026 22:26:48 +0530 Subject: [PATCH 1/2] chore: no health popup in windows/mac desktop as its managed by the installer --- .../HealthData/HealthDataNotification.js | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/extensions/default/HealthData/HealthDataNotification.js b/src/extensions/default/HealthData/HealthDataNotification.js index 95f8fe830f..df65030b69 100644 --- a/src/extensions/default/HealthData/HealthDataNotification.js +++ b/src/extensions/default/HealthData/HealthDataNotification.js @@ -21,15 +21,19 @@ define(function (require, exports, module) { } function _showFirstLaunchPopup() { - if(!window.testEnvironment){ - const alreadyShown = PreferencesManager.getViewState("healthDataNotificationShown"); - const prefs = PreferencesManager.getExtensionPrefs("healthData"); - if (!alreadyShown && prefs.get("healthDataTracking")) { - HealthDataPopup.showFirstLaunchTooltip() - .done(function () { - PreferencesManager.setViewState("healthDataNotificationShown", true); - }); - } + const agreementManagedByInstaller = Phoenix.isNativeApp && + (brackets.platform === "mac" || brackets.platform === "win"); + if(window.testEnvironment || agreementManagedByInstaller){ + return; + } + + const alreadyShown = PreferencesManager.getViewState("healthDataNotificationShown"); + const prefs = PreferencesManager.getExtensionPrefs("healthData"); + if (!alreadyShown && prefs.get("healthDataTracking")) { + HealthDataPopup.showFirstLaunchTooltip() + .done(function () { + PreferencesManager.setViewState("healthDataNotificationShown", true); + }); } } From 8abed51d8073039da686a0fef7e4335c6c2b39a9 Mon Sep 17 00:00:00 2001 From: abose Date: Sat, 10 Jan 2026 22:34:06 +0530 Subject: [PATCH 2/2] chore: update pro dep --- tracking-repos.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracking-repos.json b/tracking-repos.json index 33fc2bd6fc..6a415ac012 100644 --- a/tracking-repos.json +++ b/tracking-repos.json @@ -1,5 +1,5 @@ { "phoenixPro": { - "commitID": "ece20361a70b3c0260831427550f52e86ddeb333" + "commitID": "a55288701fdb0ee0445ed3d2bfb426d802f488a1" } }