Skip to content

Commit aed4ac5

Browse files
committed
deploy: cd657c3
1 parent 07c20b1 commit aed4ac5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+136
-132
lines changed

LiveDevelopment/BrowserScripts/LiveDevProtocolRemote.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LiveDevelopment/BrowserScripts/RemoteFunctions.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ function RemoteFunctions(config = {}) {
2121
// this is just a test function here to check if live preview. fn call is working correctly.
2222
console.log("Hello World", param);
2323
});
24+
const MessageBroker = window._Brackets_MessageBroker; // to be used by plugins.
2425

2526
const SHARED_STATE = {
2627
__description: "Use this to keep shared state for Live Preview Edit instead of window.*"
@@ -753,7 +754,7 @@ function RemoteFunctions(config = {}) {
753754

754755
// send cursor movement message to editor so cursor jumps to clicked element
755756
if (element.hasAttribute(GLOBALS.DATA_BRACKETS_ID_ATTR)) {
756-
window._Brackets_MessageBroker.send({
757+
MessageBroker.send({
757758
"tagId": element.getAttribute(GLOBALS.DATA_BRACKETS_ID_ATTR),
758759
"nodeID": element.id,
759760
"nodeClassList": element.classList,
@@ -1285,7 +1286,7 @@ function RemoteFunctions(config = {}) {
12851286
// we need to refresh the config once the load is completed
12861287
// this is important because messageBroker gets ready for use only when load fires
12871288
window.addEventListener('load', function() {
1288-
window._Brackets_MessageBroker.send({
1289+
MessageBroker.send({
12891290
requestConfigRefresh: true
12901291
});
12911292
});

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ window.AppConfig = {
3333
"app_update_url": "https://updates.phcode.io/tauri/update-latest-pre-release.json",
3434
"extensionTakedownURL": "https://updates.phcode.io/extension_takedown.json",
3535
"linting.enabled_by_default": true,
36-
"build_timestamp": "2025-12-24T02:37:33.589Z",
36+
"build_timestamp": "2025-12-24T05:11:59.655Z",
3737
"googleAnalyticsID": "G-FP5S9BKDSJ",
3838
"googleAnalyticsIDDesktop": "G-D5R1Y6PTS8",
3939
"mixPanelID": "a7e08ffd43c37767c29b13df1d2e6c62",
@@ -45,7 +45,7 @@ window.AppConfig = {
4545
"bugsnagEnv": "staging"
4646
},
4747
"name": "Phoenix Code",
48-
"version": "4.1.2-21780",
48+
"version": "4.1.2-21784",
4949
"apiVersion": "4.1.2",
5050
"homepage": "https://core.ai",
5151
"issues": {

assets/default-project/en.zip

0 Bytes
Binary file not shown.

assets/sample-projects/HTML5.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

assets/sample-projects/explore.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

brackets.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)