Skip to content

Commit b8e4698

Browse files
committed
deploy: 8a905e4
1 parent 318e1bd commit b8e4698

File tree

67 files changed

+1494
-786
lines changed

Some content is hidden

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

67 files changed

+1494
-786
lines changed

LiveDevelopment/MultiBrowserImpl/documents/LiveDocument.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ define(function (require, exports, module) {
6666

6767
EditorManager.on(`activeEditorChange.LiveDocument-${this.doc.file.fullPath}`, this._onActiveEditorChange);
6868

69-
PreferencesManager.stateManager.getPreference("livedev.highlight")
69+
PreferencesManager.stateManager.getPreference("livedevHighlight")
7070
.on(`change.LiveDocument-${this.doc.file.fullPath}`, this._onHighlightPrefChange);
7171

7272
// Redraw highlights when window gets focus. This ensures that the highlights
@@ -89,7 +89,7 @@ define(function (require, exports, module) {
8989
this._clearErrorDisplay();
9090
this._detachFromEditor();
9191
EditorManager.off(`activeEditorChange.LiveDocument-${this.doc.file.fullPath}`);
92-
PreferencesManager.stateManager.getPreference("livedev.highlight")
92+
PreferencesManager.stateManager.getPreference("livedevHighlight")
9393
.off(`change.LiveDocument-${this.doc.file.fullPath}`);
9494
};
9595

@@ -266,7 +266,7 @@ define(function (require, exports, module) {
266266
* @return {boolean}
267267
*/
268268
LiveDocument.prototype.isHighlightEnabled = function () {
269-
return PreferencesManager.getViewState("livedev.highlight");
269+
return PreferencesManager.getViewState("livedevHighlight");
270270
};
271271

272272
/**

LiveDevelopment/MultiBrowserImpl/protocol/LiveDevProtocol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ define(function (require, exports, module) {
108108
}
109109

110110
function _tagSelectedInLivePreview(tagId, nodeName, contentEditable) {
111-
const highlightPref = PreferencesManager.getViewState("livedev.highlight");
111+
const highlightPref = PreferencesManager.getViewState("livedevHighlight");
112112
if(!highlightPref){
113113
// live preview highlight and reverse highlight feature is disabled
114114
return;

LiveDevelopment/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ define(function main(require, exports, module) {
224224
} else {
225225
MultiBrowserLiveDev.hideHighlight();
226226
}
227-
PreferencesManager.setViewState("livedev.highlight", config.highlight);
227+
PreferencesManager.setViewState("livedevHighlight", config.highlight);
228228
}
229229

230230
/** Setup window references to useful LiveDevelopment modules */
@@ -296,13 +296,13 @@ define(function main(require, exports, module) {
296296
});
297297

298298
// init prefs
299-
PreferencesManager.stateManager.definePreference("livedev.highlight", "boolean", true)
299+
PreferencesManager.stateManager.definePreference("livedevHighlight", "boolean", true)
300300
.on("change", function () {
301-
config.highlight = PreferencesManager.getViewState("livedev.highlight");
301+
config.highlight = PreferencesManager.getViewState("livedevHighlight");
302302
_updateHighlightCheckmark();
303303
});
304304

305-
config.highlight = PreferencesManager.getViewState("livedev.highlight");
305+
config.highlight = PreferencesManager.getViewState("livedevHighlight");
306306

307307
// init commands
308308
CommandManager.register(Strings.CMD_LIVE_HIGHLIGHT, Commands.FILE_LIVE_HIGHLIGHT, _handlePreviewHighlightCommand);

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ window.AppConfig = {
2323
"extension_store_url": "https://store.core.ai/src/",
2424
"app_notification_url": "assets/notifications/dev/",
2525
"linting.enabled_by_default": true,
26-
"build_timestamp": "2024-01-23T10:43:16.246Z",
26+
"build_timestamp": "2024-01-24T21:08:47.771Z",
2727
"googleAnalyticsID": "G-P4HJFPDB76",
2828
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
2929
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -34,7 +34,7 @@ window.AppConfig = {
3434
"bugsnagEnv": "development"
3535
},
3636
"name": "Phoenix",
37-
"version": "3.2.21-19767",
37+
"version": "3.2.21-19775",
3838
"apiVersion": "3.2.21",
3939
"homepage": "https://core.ai",
4040
"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.

0 commit comments

Comments
 (0)