From 74520a8b0bfc624b2249b15c2180d4902e713543 Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 15:02:03 +0530 Subject: [PATCH 1/6] chore: update media query styles --- .../Phoenix-live-preview/live-preview.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/extensionsIntegrated/Phoenix-live-preview/live-preview.css b/src/extensionsIntegrated/Phoenix-live-preview/live-preview.css index 604503708..6e3536afd 100644 --- a/src/extensionsIntegrated/Phoenix-live-preview/live-preview.css +++ b/src/extensionsIntegrated/Phoenix-live-preview/live-preview.css @@ -142,6 +142,14 @@ opacity: 0.35; } +.device-size-item-breakpoint-icon { + margin-right: 6px; + width: 12px; + text-align: center; + font-size: inherit; + color: rgba(100, 180, 255, 0.8); +} + #livePreviewModeBtn { min-width: fit-content; display: flex; From 9112fb2d5d537c681f77b17a34d877c6e3a3eb27 Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 15:27:10 +0530 Subject: [PATCH 2/6] chore: device switch strings --- src/nls/root/strings.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nls/root/strings.js b/src/nls/root/strings.js index bade4354d..de0cc8fb4 100644 --- a/src/nls/root/strings.js +++ b/src/nls/root/strings.js @@ -232,6 +232,8 @@ define({ "LIVE_DEV_IMAGE_FOLDER_DIALOG_PLACEHOLDER": "Type folder path (e.g., assets/images/)", "LIVE_DEV_IMAGE_FOLDER_DIALOG_HELP": "💡 Type folder path or leave empty to download in 'images' folder.", "LIVE_DEV_IMAGE_FOLDER_DIALOG_REMEMBER": "Don't ask again for this project", + "DEVICE_SIZE_LIMIT_TITLE": "Responsive Preview Limit Reached", + "DEVICE_SIZE_LIMIT_MESSAGE": "Free accounts get a few responsive previews per day. Upgrade to Phoenix Pro for unlimited responsive previews across all device sizes.", "IMAGE_SEARCH_LIMIT_TITLE": "Image search limit reached", "IMAGE_SEARCH_LIMIT_MESSAGE": "You’ve used all {0} image searches for this month.
Start a paid Phoenix Pro plan to remove trial limits and continue searching.", "IMAGE_SEARCH_LIMIT_MESSAGE_THROTTLE": "Image search is temporarily unavailable due to high demand.
Start a paid Phoenix Pro plan to remove trial limits and continue searching.", From eb31117f3feba1137478e246619dfcc49e29acfe Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 18:09:00 +0530 Subject: [PATCH 3/6] chore: cancel trial help menu entry --- src/command/Commands.js | 3 +++ src/nls/root/strings.js | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/command/Commands.js b/src/command/Commands.js index 216561b40..dbd94cb21 100644 --- a/src/command/Commands.js +++ b/src/command/Commands.js @@ -405,6 +405,9 @@ define(function (require, exports, module) { /** Opens Phoenix Pro page */ exports.HELP_GET_PRO = "help.getPro"; // HelpCommandHandlers.js _handleLinkMenuItem() + /** Cancels Phoenix Pro trial */ + exports.HELP_CANCEL_TRIAL = "help.cancelTrial"; + /** Opens Phoenix License page */ exports.HELP_VIEW_LICENSE = "help.viewLicense"; // HelpCommandHandlers.js _handleLinkMenuItem() diff --git a/src/nls/root/strings.js b/src/nls/root/strings.js index de0cc8fb4..0d1870e0e 100644 --- a/src/nls/root/strings.js +++ b/src/nls/root/strings.js @@ -697,6 +697,10 @@ define({ "CMD_HOW_TO_USE_BRACKETS": "How to Use {APP_NAME}", "CMD_SUPPORT": "{APP_NAME} Support", "CMD_GET_PRO": "Get Phoenix Pro", + "CMD_CANCEL_TRIAL": "Cancel Phoenix Pro Trial", + "CANCEL_TRIAL_TITLE": "Cancel {0} Trial?", + "CANCEL_TRIAL_MESSAGE": "You have {0} days remaining in your Phoenix Pro trial. Cancelling cannot be undone. Are you sure you want to stop your trial?", + "CANCEL_TRIAL_STOP_BTN": "Stop Trial", "CMD_VIEW_LICENSE": "View License", "CMD_MANAGE_LICENSES": "Manage Licenses", "CMD_USER_PROFILE": "{APP_NAME} Account", From 41393a20e51546a88d0a7b34576c6c9765c08adc Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 18:11:45 +0530 Subject: [PATCH 4/6] build: 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 71f529a2e..0d7763cef 100644 --- a/tracking-repos.json +++ b/tracking-repos.json @@ -1,5 +1,5 @@ { "phoenixPro": { - "commitID": "1687d43c4e8f87cb01e9e7de614c2ce1e85e7a30" + "commitID": "30f7c0134525df5d1f055fcea9cc276025cb1a68" } } From b0bea35c84441026c75bf504fa67ac185eb1bfae Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 19:04:16 +0530 Subject: [PATCH 5/6] chore: update test files for media query dropdown --- docs/API-Reference/command/Commands.md | 6 ++++++ .../mediaQuery.html | 20 +++++++++++++++++++ tracking-repos.json | 2 +- 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 test/spec/LiveDevelopment-MultiBrowser-test-files/mediaQuery.html diff --git a/docs/API-Reference/command/Commands.md b/docs/API-Reference/command/Commands.md index 0e2fef498..e5b864be4 100644 --- a/docs/API-Reference/command/Commands.md +++ b/docs/API-Reference/command/Commands.md @@ -734,6 +734,12 @@ Opens support resources ## HELP\_GET\_PRO Opens Phoenix Pro page +**Kind**: global variable + + +## HELP\_CANCEL\_TRIAL +Cancels Phoenix Pro trial + **Kind**: global variable diff --git a/test/spec/LiveDevelopment-MultiBrowser-test-files/mediaQuery.html b/test/spec/LiveDevelopment-MultiBrowser-test-files/mediaQuery.html new file mode 100644 index 000000000..951e7650e --- /dev/null +++ b/test/spec/LiveDevelopment-MultiBrowser-test-files/mediaQuery.html @@ -0,0 +1,20 @@ + + + + +Media Query Test + + + +
Media query test page
+ + diff --git a/tracking-repos.json b/tracking-repos.json index 0d7763cef..b8b06efa7 100644 --- a/tracking-repos.json +++ b/tracking-repos.json @@ -1,5 +1,5 @@ { "phoenixPro": { - "commitID": "30f7c0134525df5d1f055fcea9cc276025cb1a68" + "commitID": "eb905df1b6d728d57118f012ba787d42a2eaa7fb" } } From c0c0b0c88c442f241d6c6340b704eec068213cc3 Mon Sep 17 00:00:00 2001 From: abose Date: Wed, 11 Feb 2026 20:35:33 +0530 Subject: [PATCH 6/6] build: 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 b8b06efa7..15e87406b 100644 --- a/tracking-repos.json +++ b/tracking-repos.json @@ -1,5 +1,5 @@ { "phoenixPro": { - "commitID": "eb905df1b6d728d57118f012ba787d42a2eaa7fb" + "commitID": "968dd7418a998b9fbde87fd393e338d84d9ce4c3" } }