Skip to content

Commit 1dc83b8

Browse files
committed
deploy: 606b7d0
1 parent 377e1bc commit 1dc83b8

File tree

58 files changed

+339
-543
lines changed

Some content is hidden

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

58 files changed

+339
-543
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ window.AppConfig = {
2626
"app_notification_url": "assets/notifications/dev/",
2727
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2828
"linting.enabled_by_default": true,
29-
"build_timestamp": "2024-12-07T06:51:00.172Z",
29+
"build_timestamp": "2024-12-07T13:00:48.975Z",
3030
"googleAnalyticsID": "G-P4HJFPDB76",
3131
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3232
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -38,7 +38,7 @@ window.AppConfig = {
3838
"bugsnagEnv": "development"
3939
},
4040
"name": "Phoenix Code",
41-
"version": "3.11.0-20723",
41+
"version": "3.11.0-20724",
4242
"apiVersion": "3.11.0",
4343
"homepage": "https://core.ai",
4444
"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-min.js

Lines changed: 30 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -22053,12 +22053,8 @@ define("editor/Editor", function (require, exports, module) {
2205322053
}
2205422054
};
2205522055

22056-
/**
22057-
* Renders all registered gutters
22058-
* @private
22059-
*/
22060-
Editor.prototype._renderGutters = function () {
22061-
var languageId = this.document.getLanguage().getId();
22056+
Editor.prototype._getRegisteredGutters = function () {
22057+
const languageId = this.document.getLanguage().getId();
2206222058

2206322059
function _filterByLanguages(gutter) {
2206422060
return !gutter.languages || gutter.languages.indexOf(languageId) > -1;
@@ -22072,19 +22068,26 @@ define("editor/Editor", function (require, exports, module) {
2207222068
return gutter.name;
2207322069
}
2207422070

22075-
var gutters = registeredGutters.map(_getName),
22076-
rootElement = this.getRootElement();
22077-
2207822071
// If the line numbers gutter has not been explicitly registered and the CodeMirror lineNumbes option is
2207922072
// set to true, we explicitly add the line numbers gutter. This case occurs the first time the editor loads
2208022073
// and showLineNumbers is set to true in preferences
22074+
const gutters = registeredGutters.map(_getName);
2208122075
if (gutters.indexOf(LINE_NUMBER_GUTTER) < 0 && this._codeMirror.getOption(cmOptions[SHOW_LINE_NUMBERS])) {
2208222076
registeredGutters.push({ name: LINE_NUMBER_GUTTER, priority: LINE_NUMBER_GUTTER_PRIORITY });
2208322077
}
2208422078

22085-
gutters = registeredGutters.sort(_sortByPriority)
22079+
return registeredGutters.sort(_sortByPriority)
2208622080
.filter(_filterByLanguages)
2208722081
.map(_getName);
22082+
};
22083+
22084+
/**
22085+
* Renders all registered gutters
22086+
* @private
22087+
*/
22088+
Editor.prototype._renderGutters = function () {
22089+
const rootElement = this.getRootElement();
22090+
const gutters = this._getRegisteredGutters();
2208822091

2208922092
this._codeMirror.setOption("gutters", gutters);
2209022093
this._codeMirror.refresh();
@@ -22136,6 +22139,16 @@ define("editor/Editor", function (require, exports, module) {
2213622139
this.setGutterMarker(lineNumber, gutterName, null);
2213722140
};
2213822141

22142+
/**
22143+
* Returns true if this editor has the named gutter activated. gutters are considered active if the gutter is
22144+
* registered for the language of the file currently shown in the editor.
22145+
* @param {string} gutterName The name of the gutter to check
22146+
*/
22147+
Editor.prototype.isGutterActive = function (gutterName) {
22148+
const gutters = this._getRegisteredGutters();
22149+
return gutters.includes(gutterName);
22150+
};
22151+
2213922152
/**
2214022153
* Clears all marks from the gutter with the specified name.
2214122154
* @param {string} gutterName The name of the gutter to clear.
@@ -33237,7 +33250,6 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3323733250
*/
3323833251
function showColorMarks() {
3323933252
if (!enabled) {
33240-
removeColorMarks();
3324133253
return;
3324233254
}
3324333255

@@ -33265,22 +33277,6 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3326533277
});
3326633278
}
3326733279

33268-
/**
33269-
* To remove the color marks from the gutter of all the active editors
33270-
*/
33271-
function removeColorMarks() {
33272-
33273-
const allActiveEditors = MainViewManager.getAllViewedEditors();
33274-
33275-
allActiveEditors.forEach((activeEditor) => {
33276-
const currEditor = activeEditor.editor;
33277-
if(currEditor) {
33278-
currEditor.clearGutter(GUTTER_NAME);
33279-
}
33280-
});
33281-
}
33282-
33283-
3328433280
/**
3328533281
* To move the cursor to the color text and display the color quick edit
3328633282
* @param {Editor} editor the codemirror instance
@@ -33310,8 +33306,8 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3331033306
* all the line numbers and the colors to be displayed on that line.
3331133307
*/
3331233308
function showGutters(editor, _results) {
33309+
// TODO we should show the gutter in those languages only if a color is present in that file.
3331333310
if (editor && enabled) {
33314-
initGutter(editor);
3331533311
const cm = editor._codeMirror;
3331633312
editor.clearGutter(GUTTER_NAME); // clear color markers
3331733313
_addDummyGutterMarkerIfNotExist(editor, editor.getCursorPos().line);
@@ -33371,19 +33367,6 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3337133367
}
3337233368
}
3337333369

33374-
33375-
/**
33376-
* Initialize the gutter
33377-
* @param {activeEditor} editor
33378-
*/
33379-
function initGutter(editor) {
33380-
if (!Editor.isGutterRegistered(GUTTER_NAME)) {
33381-
// we should restrict the languages here to Editor.registerGutter(..., ["css", "less", "scss", etc..]);
33382-
// TODO we should show the gutter in those languages only if a color is present in that file.
33383-
Editor.registerGutter(GUTTER_NAME, COLOR_PREVIEW_GUTTER_PRIORITY, COLOR_LANGUAGES);
33384-
}
33385-
}
33386-
3338733370
function _addDummyGutterMarkerIfNotExist(editor, line) {
3338833371
let marker = editor.getGutterMarker(line, GUTTER_NAME);
3338933372
if(!marker){
@@ -33407,8 +33390,7 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3340733390

3340833391
// Add listener for all editor changes
3340933392
EditorManager.on("activeEditorChange", function (event, newEditor, oldEditor) {
33410-
if (newEditor) {
33411-
// todo: only attach if the color gutter is present as we disable it in certain languages
33393+
if (newEditor && newEditor.isGutterActive(GUTTER_NAME)) {
3341233394
newEditor.off("cursorActivity.colorPreview");
3341333395
newEditor.on("cursorActivity.colorPreview", _cursorActivity);
3341433396
// Unbind the previous editor's change event if it exists
@@ -33426,6 +33408,7 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3342633408
}
3342733409

3342833410
showColorMarks();
33411+
_cursorActivity(null, newEditor);
3342933412
}
3343033413
});
3343133414

@@ -33448,9 +33431,9 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3344833431
const value = PreferencesManager.get(PREFERENCES_CSS_COLOR_PREVIEW);
3344933432
enabled = value;
3345033433
if (!value) {
33451-
// to dynamically remove color to all active editors
33452-
removeColorMarks();
33434+
Editor.unregisterGutter(GUTTER_NAME);
3345333435
} else {
33436+
Editor.registerGutter(GUTTER_NAME, COLOR_PREVIEW_GUTTER_PRIORITY, COLOR_LANGUAGES);
3345433437
// to dynamically add color to all active editors
3345533438
addColorMarksToAllEditors();
3345633439
}
@@ -33463,19 +33446,11 @@ define("extensionsIntegrated/CSSColorPreview/main", function (require, exports,
3346333446
showColorMarks();
3346433447
}
3346533448

33466-
/**
33467-
* Driver function, runs at the start of the program
33468-
*/
33469-
function init() {
33470-
// preferenceChanged calls 'showColorMarks' or 'removeColorMarks'
33471-
preferenceChanged();
33472-
registerHandlers();
33473-
}
33474-
3347533449
// init after appReady
3347633450
AppInit.appReady(function () {
3347733451
PreferencesManager.on("change", PREFERENCES_CSS_COLOR_PREVIEW, preferenceChanged);
33478-
init();
33452+
preferenceChanged();
33453+
registerHandlers();
3347933454
});
3348033455
});
3348133456

cacheManifest.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "fe768fd7fc2f5b4ee9e1ae8e64696406eef37815c7317b90226c69a71b244e59",
3-
"assets/default-project/en.zip": "d527680bce10d845dc3f54d2bc6c0b777af49905e34322f1bbf38e822f7dd485",
2+
"appConfig.js": "d8975dc218ee20ec37934fbf4e196d341396fa20d93635d548cb9e898f50bf48",
3+
"assets/default-project/en.zip": "509ed9e86655d8671f67d96880efcf45ca239c13452ace70bf8e6d8996de3acf",
44
"assets/default-project/en/images/cloud1.svg": "527399dadfa3357c3ee1a63d6c1c7dda81ecebb832f7383db26f1aaeaf722a8d",
55
"assets/default-project/en/images/cloud2.svg": "8127c63c0987bc674e2d25f7d24ead017853326c1e43d07706fec46091904418",
66
"assets/default-project/en/images/cloud3.svg": "15de53aa41dea3b0f685292814563f97213a9736c3cec2f8e17b5d9d45b3ae3d",
@@ -125,7 +125,7 @@
125125
"assets/pwa/32x32.png": "4f8f75bfcdb6efbbed1732f49edab4e292274cdeb1841e285ccc8194f4c9d8ac",
126126
"assets/pwa/phoenix.png": "d292bf76d6d61fdece2f97fb4cd71b8b0060d1058e9c1d02c94bfb20da8b7f0d",
127127
"assets/pwa/Square284x284Logo.png": "9887c2967039b4fae1214817925f1fb4f9227cba12d37612457c1c8ee1110c67",
128-
"assets/sample-projects/bootstrap-blog.zip": "0fcf68288bc575750a8c4466fa1d2ce93a3432d0ea8cdaec187630882a0e280f",
128+
"assets/sample-projects/bootstrap-blog.zip": "b33203ee5ed9f99af117e5d27abda973bbefd4c01b59c3a5528cfb6e337e0e4a",
129129
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
130130
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
131131
"assets/sample-projects/bootstrap-blog/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -135,7 +135,7 @@
135135
"assets/sample-projects/bootstrap-blog/blog.rtl.css": "33f49d02bbcb2e78f019b7582408fad2b5a76a2ecf79fe09d5b3c08c6ee3872b",
136136
"assets/sample-projects/bootstrap-blog/index-rtl.html": "c582278884060098ff51b9d350b0739e1a0396debdc76772c62b6ec375b6efcb",
137137
"assets/sample-projects/bootstrap-blog/index.html": "f4716c2affa299a27ab6f8c74c22fe67564f1b1d36ff2f0b322672bf0479d739",
138-
"assets/sample-projects/dashboard.zip": "43f1ccdfd8396b6b557c5307b21e121e6719c42826c25819d1e7801f9c14d597",
138+
"assets/sample-projects/dashboard.zip": "45ca056d89af21ee7c733a4929b47aed3f7e3a627ea97226063c7c9175e4d5ef",
139139
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
140140
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
141141
"assets/sample-projects/dashboard/assets/dist/css/bootstrap.min.css": "fb1763b59f9f5764294b5af9fa5250835ae608282fe6f2f2213a5952aacf1fbf",
@@ -147,7 +147,7 @@
147147
"assets/sample-projects/dashboard/index.html": "1fb0c934f816d728cad85e180f78369679dc9edb1eca2d5c625b9360e6264235",
148148
"assets/sample-projects/dashboard/signin.css": "083bef710a6170a5112ce257c2ecf8580ca97ce19136d770f10460e5b85862de",
149149
"assets/sample-projects/dashboard/signin.html": "8c602e656631aeee624673397c0dc00c339498914ed930ab177478c4662a8d26",
150-
"assets/sample-projects/explore.zip": "fbcc6b4426d6f1e18f89c56362ef3209b467dcc520a5e52c4864d07c76f1f3c0",
150+
"assets/sample-projects/explore.zip": "7028039987360cdf8ab1140bf9085ce7e93d03e7659f51318e7771577744729e",
151151
"assets/sample-projects/explore/A-tribute-page.html": "bd510c60f444058b7fcb71d83841f32b1cb5193c1a39421d7739bd6af9fef248",
152152
"assets/sample-projects/explore/adjustable-fireworks.html": "11e69bb2dd8708ed8fbf1acc62b0aaaf88c7ffec859ee958dc1ae51cd53ddac8",
153153
"assets/sample-projects/explore/ant_colony.html": "bc9435ed1b9868f2fbc7212d526f7532c533a5fdf45da988fa5e575bc5f363b7",
@@ -236,7 +236,7 @@
236236
"assets/sample-projects/explore/watermelon-pixel.html": "765a3fbffb5db97910512fbabaa7c55c0b52dc8eedfcc630811be39d0af98663",
237237
"assets/sample-projects/explore/webmine.html": "6b808f52812dc03db28483411500c04daf8ee0226f535c600a36999d6b7837c0",
238238
"assets/sample-projects/explore/whack-a-mole.html": "25be94a3640553b4801f80edd49998bae3a360988e8a26ff3bdfdc2a76b77191",
239-
"assets/sample-projects/home-pages.zip": "cc84a87bffafff4093f9b9edc41face3ab116b6622d019a00ae734fa66d61f7c",
239+
"assets/sample-projects/home-pages.zip": "9fa2bb0a579d6dfe4bbedf600dc9f63f8a76db50da94feeb1591be506c74da3c",
240240
"assets/sample-projects/home-pages/album/index.html": "e29a1e96644bc17bab1a7e3724e822d65a479e10df182725ee1afa916efbfdc1",
241241
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
242242
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
@@ -248,19 +248,19 @@
248248
"assets/sample-projects/home-pages/carousel/index.html": "235d650043a09f2954f24e4659f64d99ef3988858567fb2221fb1cf34df057e6",
249249
"assets/sample-projects/home-pages/cover/cover.css": "2fbb596077c570cad7ee9e98fb88f5665e0ecfc11e7085c3e04639ad03f7bc10",
250250
"assets/sample-projects/home-pages/cover/index.html": "759214701ff759432711b3421d80aca692c7a2b4c978c516a0bcd0c81a43f381",
251-
"assets/sample-projects/HTML5.zip": "c83f7ec594ccdada5f6e322a2310081ee53244ce537006e73e07a70ee2c798a3",
251+
"assets/sample-projects/HTML5.zip": "d10eb2983ab50405a37b1bdb3e31c431b32e6fe7bb70424046d4ce21580b77b7",
252252
"assets/sample-projects/HTML5/index.html": "2dc94c7d3e33aeeb44ec4f75bc7df86a5fd19f3121f2fd3638636fbf7c476c6a",
253253
"assets/sample-projects/HTML5/script.js": "c49e4b01cded4defbc21f5d5d0102719ce4cccbe1b9cb19f9232c5a05df658da",
254254
"assets/sample-projects/HTML5/styles.css": "744b85a9c31affbb00976694c4b9c9149b31e575ed9efdec386231d062ae93f2",
255255
"assets/sample-projects/new-project-list.json": "be1c907279163610779b000aa9ea6e4b035e07429203f16445a914c7045f2d64",
256256
"assets/sample-projects/zips/bootstrap.zip": "6f10407c00ce5d598e77f890528743dc645bc28014335483992b481e63fd7b97",
257257
"base-config/keyboard.json": "f3380c609a293a95644965958286b31863d733293824d56b7087fa0ce4c2d618",
258258
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
259-
"brackets-min.js": "43013e1c709f46b630abaeb9f6a20d43df40896444338238f319bea18b0988be",
259+
"brackets-min.js": "078c0e4dadb82103955ed49140266fa119df1e87780ca55dc700fcfc2b3cb080",
260260
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
261261
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
262262
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
263-
"cacheManifest.json": "c6e4b5c7b38075527c90ea6fcedba5c648e7479e48dd351696677319b11a8af7",
263+
"cacheManifest.json": "92d023077753ba32b0dc4e63970726d856e01446ce9d0f3a11343331af4fdbde",
264264
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
265265
"command/CommandManager.js": "10181902fc2e55a780981a17b95c7b579427fdfd12c92ed49df35d3b70f64c15",
266266
"command/Commands.js": "1865297506325887a66cf11113c5cef905676fdc4b594b707bee381d968f15b0",
@@ -269,7 +269,7 @@
269269
"command/KeyboardOverlayMode.js": "7170dfcfca59b41252146ef8a5ca4f652c666e33b7a4b411e30e72951bd35b49",
270270
"command/Keys.js": "36545bbbca56d2a909779c5873fa860bf737977588ad61a398acb86f6bcbe4ee",
271271
"command/Menus.js": "b0c5031f13e4ca6efd594e9fcb973f0e591a1af6cc0c0df8ec32024f6bdd0f08",
272-
"config.json": "cba39f15c327c53732e8be0fd459bedd2ab723985a5927d08767e2d03cca867b",
272+
"config.json": "e6bfd25cdc31350ac68d6d51d1a43cc66df8a22fe196e0de4a79c76d22229e80",
273273
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
274274
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
275275
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -284,7 +284,7 @@
284284
"editor/CodeHintList.js": "b0e38b0714484b84ded353074594337ad5a4461907925861b0eab625a6ab6fc3",
285285
"editor/CodeHintManager.js": "4d64a8749d683f8d22e1972490a1f9dceb0481879bf124696ad0eab53c4d47cc",
286286
"editor/CSSInlineEditor.js": "20329138aea67b56f34a8d0772caab6a9a944db6ef7ac491a4be4cd8ed89c4cd",
287-
"editor/Editor.js": "a862e0754bc465f06b8c35e6fb47e9e395b677b4fdc7f5be29a3fb1671eca430",
287+
"editor/Editor.js": "c9885fd517efceda073ea76cf198d1fbb104b00f26edb9aeb5eef0192ee3b90f",
288288
"editor/EditorCommandHandlers.js": "ed92119eb9a36e52a935ffab3b59ead4c15fa22cdbd3a8a930516c180ac4d90b",
289289
"editor/EditorHelper/ChangeHelper.js": "55ec840f95e07846187c67e559df757b0a3f1c77d931fa7c5e72a919327ee371",
290290
"editor/EditorHelper/EditorPreferences.js": "a4d102d4f2bd67ed231dbcd2689b6ca204fc20a912c7b08997cd05f3887f456b",
@@ -516,9 +516,9 @@
516516
"extensions/default/UrlCodeHints/requirejs-config.json": "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
517517
"extensions/default/UrlCodeHints/unittests.js": "c60ecbe81555d435437dc5b7294f4e89b3befb7b34d60c44285c6009807c29c2",
518518
"extensions/dev/README.md": "3fd897e55e0e05e503c898555cfa3b20e820b32946fc7c426ea9bb2afbed449f",
519-
"extensions/registry/popularity.json": "dd3ddb57bd81da634342561612ca85a6f49fb41cf441e628693d98136dac0493",
519+
"extensions/registry/popularity.json": "f57fae9af72dc3af17dda65ae576bc70c361adcb5f7faf771a887ebcd98abad0",
520520
"extensions/registry/registry_version.json": "8b37ddfc93aade27f06d02ca6b539106109bd04442a105c5d03c8a3d6775f48d",
521-
"extensions/registry/registry.json": "50cbd171292b81607c6f91d5cc494596a3b2e86524862cffa6fd7f681913baa9",
521+
"extensions/registry/registry.json": "4f0842009a0d2429726b1fd5f614d7c560f2c5c2c235f0f5e12dcc3cd753e79a",
522522
"extensions/samples/BracketsConfigCentral/htmlContent/Config.html": "6ac3ce03e2fb8913ec5da3e8835c0646894f242600c64d95b77c7d7dc0a156f7",
523523
"extensions/samples/BracketsConfigCentral/htmlContent/logo-sm.png": "006f025fecd24c292e87a1eb0e123ee21178ec9c09517a1f16fe362fe2fbcbb5",
524524
"extensions/samples/BracketsConfigCentral/main.js": "f2c36decadb7d98e2a89cfdb9aff8a74cc130ea8c3ad084b7af62ee21e3a8181",
@@ -542,7 +542,7 @@
542542
"extensions/samples/README.md": "381c6647cc6f90bd8c609b5896cfcdf78bcae2b3a9660c204d8b744a21436df6",
543543
"extensions/samples/TypingSpeedLogger/main.js": "87327584d6ebaa4e69ee7a8b4972951baeb01869f22b7c971736524cecd3137f",
544544
"extensionsIntegrated/appUpdater/main.js": "1d0c06f3bfb951d6293e0a69ea10def6d4f3addec459e8df78f3c88ea0a26fb6",
545-
"extensionsIntegrated/CSSColorPreview/main.js": "5c3bf90e2d5f874d29fea30175630b0f4f49fb8459e84a331a0f96455407c40c",
545+
"extensionsIntegrated/CSSColorPreview/main.js": "b55d2d5826b1af1a12dd1aef1ddc5865d3a9c6d6f768f1b065e0daf69ea115d4",
546546
"extensionsIntegrated/DisplayShortcuts/main.js": "1f03c6526af816a730f4a72d596a8b3db7294de8c8c26756e331aa442b0e91a6",
547547
"extensionsIntegrated/DisplayShortcuts/package.json": "385efa285cafdd7695557c66ac1d7a925aab824362a2a8f6e60dbf195d3239dd",
548548
"extensionsIntegrated/DisplayShortcuts/templates/bottom-panel.html": "1687fe6eb9d71c808d34745a7c68b235d1aa8c948339a17ce0d98aa8654fd280",

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"app_notification_url": "assets/notifications/dev/",
2626
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2727
"linting.enabled_by_default": true,
28-
"build_timestamp": "2024-12-07T06:51:00.172Z",
28+
"build_timestamp": "2024-12-07T13:00:48.975Z",
2929
"googleAnalyticsID": "G-P4HJFPDB76",
3030
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3131
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -37,7 +37,7 @@
3737
"bugsnagEnv": "development"
3838
},
3939
"name": "Phoenix Code",
40-
"version": "3.11.0-20723",
40+
"version": "3.11.0-20724",
4141
"apiVersion": "3.11.0",
4242
"homepage": "https://core.ai",
4343
"issues": {

0 commit comments

Comments
 (0)