Skip to content

Commit c0724ad

Browse files
committed
deploy: 606b7d0
1 parent c1ea158 commit c0724ad

Some content is hidden

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

65 files changed

+416
-216
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-10-20T06:18:09.339Z",
29+
"build_timestamp": "2024-10-22T13:47:16.754Z",
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.10.0-20628",
41+
"version": "3.10.0-20629",
4242
"apiVersion": "3.10.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: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25823,6 +25823,7 @@ define("editor/EditorStatusBar", function (require, exports, module) {
2582325823
encodingSelect, // this is a DropdownButton instance
2582425824
tasksSelect, // this is a DropdownButton instance
2582525825
$cursorInfo,
25826+
$statusInfo,
2582625827
$fileInfo,
2582725828
$indentType,
2582825829
$indentAuto,
@@ -25871,13 +25872,17 @@ define("editor/EditorStatusBar", function (require, exports, module) {
2587125872
encodingSelect.$button.text(doc.file._encoding);
2587225873
}
2587325874

25875+
function _getLineCountStr(editor) {
25876+
const lines = editor.lineCount();
25877+
return _formatCountable(lines, Strings.STATUSBAR_LINE_COUNT_SINGULAR, Strings.STATUSBAR_LINE_COUNT_PLURAL);
25878+
}
25879+
2587425880
/**
2587525881
* Update file information
2587625882
* @param {Editor} editor Current editor
2587725883
*/
2587825884
function _updateFileInfo(editor) {
25879-
var lines = editor.lineCount();
25880-
$fileInfo.text(_formatCountable(lines, Strings.STATUSBAR_LINE_COUNT_SINGULAR, Strings.STATUSBAR_LINE_COUNT_PLURAL));
25885+
$fileInfo.text(_getLineCountStr(editor));
2588125886
}
2588225887

2588325888
/**
@@ -25950,12 +25955,15 @@ define("editor/EditorStatusBar", function (require, exports, module) {
2595025955
editor = editor || EditorManager.getActiveEditor();
2595125956

2595225957
// compute columns, account for tab size
25953-
var cursor = editor.getCursorPos(true);
25958+
const cursor = editor.getCursorPos(true);
2595425959

25955-
var cursorStr = StringUtils.format(Strings.STATUSBAR_CURSOR_POSITION, cursor.line + 1, cursor.ch + 1);
25960+
let cursorStr = StringUtils.format(Strings.STATUSBAR_CURSOR_POSITION, cursor.line + 1, cursor.ch + 1);
25961+
let cursorStrShort = StringUtils.format(
25962+
Strings.STATUSBAR_CURSOR_POSITION_SHORT, cursor.line + 1, cursor.ch + 1);
2595625963

25957-
var sels = editor.getSelections(),
25958-
selStr = "";
25964+
let sels = editor.getSelections(),
25965+
selStr = "",
25966+
shortSelStr = "";
2595925967

2596025968
if (sels.length > 1) {
2596125969
//Send analytics data for multicursor use
@@ -25965,20 +25973,28 @@ define("editor/EditorStatusBar", function (require, exports, module) {
2596525973
"usage"
2596625974
);
2596725975
selStr = StringUtils.format(Strings.STATUSBAR_SELECTION_MULTIPLE, sels.length);
25976+
shortSelStr = StringUtils.format(Strings.STATUSBAR_SELECTION_MULTIPLE_SHORT, sels.length);
2596825977
} else if (editor.hasSelection()) {
25969-
var sel = sels[0];
25978+
const sel = sels[0];
2597025979
if (sel.start.line !== sel.end.line) {
25971-
var lines = sel.end.line - sel.start.line + 1;
25980+
let lines = sel.end.line - sel.start.line + 1;
2597225981
if (sel.end.ch === 0) {
2597325982
lines--; // end line is exclusive if ch is 0, inclusive otherwise
2597425983
}
25975-
selStr = _formatCountable(lines, Strings.STATUSBAR_SELECTION_LINE_SINGULAR, Strings.STATUSBAR_SELECTION_LINE_PLURAL);
25984+
selStr = _formatCountable(lines, Strings.STATUSBAR_SELECTION_LINE_SINGULAR,
25985+
Strings.STATUSBAR_SELECTION_LINE_PLURAL);
25986+
shortSelStr = StringUtils.format(Strings.STATUSBAR_SELECTION_SHORT, lines);
2597625987
} else {
25977-
var cols = editor.getColOffset(sel.end) - editor.getColOffset(sel.start); // end ch is exclusive always
25978-
selStr = _formatCountable(cols, Strings.STATUSBAR_SELECTION_CH_SINGULAR, Strings.STATUSBAR_SELECTION_CH_PLURAL);
25988+
// end ch is exclusive always
25989+
const cols = editor.getColOffset(sel.end) - editor.getColOffset(sel.start);
25990+
selStr = _formatCountable(cols, Strings.STATUSBAR_SELECTION_CH_SINGULAR,
25991+
Strings.STATUSBAR_SELECTION_CH_PLURAL);
25992+
shortSelStr = StringUtils.format(Strings.STATUSBAR_SELECTION_SHORT, cols);
2597925993
}
2598025994
}
25981-
$cursorInfo.text(cursorStr + selStr);
25995+
$cursorInfo.text(cursorStrShort + shortSelStr);
25996+
$statusInfo.attr("title", cursorStr + selStr + " " + _getLineCountStr(editor)+ "\n" +
25997+
Strings.STATUSBAR_CURSOR_GOTO);
2598225998
}
2598325999

2598426000
/**
@@ -26157,13 +26173,20 @@ define("editor/EditorStatusBar", function (require, exports, module) {
2615726173
function _init() {
2615826174

2615926175
$cursorInfo = $("#status-cursor");
26176+
$statusInfo = $("#status-info");
2616026177
$fileInfo = $("#status-file");
2616126178
$indentType = $("#indent-type");
2616226179
$indentAuto = $("#indent-auto");
2616326180
$indentWidthLabel = $("#indent-width-label");
2616426181
$indentWidthInput = $("#indent-width-input");
2616526182
$statusOverwrite = $("#status-overwrite");
2616626183

26184+
$statusInfo.click((event)=>{
26185+
event.preventDefault();
26186+
event.stopPropagation();
26187+
CommandManager.execute(Commands.NAVIGATE_GOTO_LINE);
26188+
});
26189+
2616726190
languageSelect = new DropdownButton.DropdownButton("", [], function (item, index) {
2616826191
var document = EditorManager.getActiveEditor().document,
2616926192
defaultLang = LanguageManager.getLanguageForPath(document.file.fullPath, true);
@@ -90398,11 +90421,15 @@ define("nls/root/strings", {
9039890421
* StatusBar strings
9039990422
*/
9040090423
"STATUSBAR_CURSOR_POSITION": "Line {0}, Column {1}",
90424+
"STATUSBAR_CURSOR_POSITION_SHORT": "{0} : {1}",
90425+
"STATUSBAR_CURSOR_GOTO": "Click to Go To another :Line",
90426+
"STATUSBAR_SELECTION_SHORT": " \u2014 Sel {0}",
9040190427
"STATUSBAR_SELECTION_CH_SINGULAR": " \u2014 Selected {0} column",
9040290428
"STATUSBAR_SELECTION_CH_PLURAL": " \u2014 Selected {0} columns",
9040390429
"STATUSBAR_SELECTION_LINE_SINGULAR": " \u2014 Selected {0} line",
9040490430
"STATUSBAR_SELECTION_LINE_PLURAL": " \u2014 Selected {0} lines",
90405-
"STATUSBAR_SELECTION_MULTIPLE": " \u2014 {0} selections",
90431+
"STATUSBAR_SELECTION_MULTIPLE": " \u2014 {0} Multi Cursor selections",
90432+
"STATUSBAR_SELECTION_MULTIPLE_SHORT": " \u2014 Mul {0}",
9040690433
"STATUSBAR_INDENT_TOOLTIP_SPACES": "Click to switch indentation to spaces",
9040790434
"STATUSBAR_INDENT_TOOLTIP_TABS": "Click to switch indentation to tabs",
9040890435
"STATUSBAR_INDENT_SIZE_TOOLTIP_SPACES": "Click to change number of spaces used when indenting",

cacheManifest.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "33887bcd543bb3dbd2a4aa4bc6bac4602b2773245ba763543898ba426648ef26",
3-
"assets/default-project/en.zip": "03ec04690c2657566f8467998ae11d9a075fa36a1eec940f3f2fb9e60860af7c",
2+
"appConfig.js": "c0544c07ca46978ca8e198fe4910338f847c97458a186867056687bd3a38b06c",
3+
"assets/default-project/en.zip": "df704a4785ce57c32d8d27e84fe0db1e5e46d6c07db50efc64fec7d12bf3feb7",
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": "30ef0b0d7b60c6b7f2aff102035be74e450475aa7cf43e4f0f6414fd8dcb0193",
128+
"assets/sample-projects/bootstrap-blog.zip": "447abfdec7bfe4180ce3f1f31cab01a8e71ef517866c31e4e0e875e8c5ef0f73",
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": "e9f92e31663fcc94e63da77c370d8b43071278f4b06ca79b315b63e06d718147",
138+
"assets/sample-projects/dashboard.zip": "c9e49b4528685ae52f88f5c286d1937af35547abf0d04930900bb0b315d556b3",
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": "dbd6a62f3f031159e521d4faf7629f5f4f669f2219905a7c9dc0090ae6fecb09",
150+
"assets/sample-projects/explore.zip": "c78290982a03481d404853805a5f69cfb908676cfb2e6faed1da2493394b9180",
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",
@@ -237,7 +237,7 @@
237237
"assets/sample-projects/explore/watermelon-pixel.html": "765a3fbffb5db97910512fbabaa7c55c0b52dc8eedfcc630811be39d0af98663",
238238
"assets/sample-projects/explore/webmine.html": "6b808f52812dc03db28483411500c04daf8ee0226f535c600a36999d6b7837c0",
239239
"assets/sample-projects/explore/whack-a-mole.html": "25be94a3640553b4801f80edd49998bae3a360988e8a26ff3bdfdc2a76b77191",
240-
"assets/sample-projects/home-pages.zip": "1d9206a3fcde16f2f0d8e4765c9702f7e71a768d519d709036f37d8d8a035a82",
240+
"assets/sample-projects/home-pages.zip": "dd1b4cfa6e1fbd12b908941d59f95327875d8cb10dccf2f0fcb82be74bf6c132",
241241
"assets/sample-projects/home-pages/album/index.html": "e29a1e96644bc17bab1a7e3724e822d65a479e10df182725ee1afa916efbfdc1",
242242
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo-white.svg": "203d56e7e5e15d8203e596d4a711cec986f6380064591de21850f4563fb840bf",
243243
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo.svg": "df11d37a123e36a768f2a6064973c4c6ab17d1e3c6501c8bf434ca5c0134c9a2",
@@ -249,19 +249,19 @@
249249
"assets/sample-projects/home-pages/carousel/index.html": "235d650043a09f2954f24e4659f64d99ef3988858567fb2221fb1cf34df057e6",
250250
"assets/sample-projects/home-pages/cover/cover.css": "2fbb596077c570cad7ee9e98fb88f5665e0ecfc11e7085c3e04639ad03f7bc10",
251251
"assets/sample-projects/home-pages/cover/index.html": "759214701ff759432711b3421d80aca692c7a2b4c978c516a0bcd0c81a43f381",
252-
"assets/sample-projects/HTML5.zip": "06329b0ebaace4b2ffb24dc59e9fe8f472bb5785010c868a9a6ddd75ca452b04",
252+
"assets/sample-projects/HTML5.zip": "191d39cae1a272bb549ea6ebbb61a7f484f681144bc004bf7c82dbbd69ac7402",
253253
"assets/sample-projects/HTML5/index.html": "2dc94c7d3e33aeeb44ec4f75bc7df86a5fd19f3121f2fd3638636fbf7c476c6a",
254254
"assets/sample-projects/HTML5/script.js": "c49e4b01cded4defbc21f5d5d0102719ce4cccbe1b9cb19f9232c5a05df658da",
255255
"assets/sample-projects/HTML5/styles.css": "744b85a9c31affbb00976694c4b9c9149b31e575ed9efdec386231d062ae93f2",
256256
"assets/sample-projects/new-project-list.json": "be1c907279163610779b000aa9ea6e4b035e07429203f16445a914c7045f2d64",
257257
"assets/sample-projects/zips/bootstrap.zip": "6f10407c00ce5d598e77f890528743dc645bc28014335483992b481e63fd7b97",
258258
"base-config/keyboard.json": "f3380c609a293a95644965958286b31863d733293824d56b7087fa0ce4c2d618",
259259
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
260-
"brackets-min.js": "316d3ce03cd4a7872c946f0d2e21f62c4644a9452cdd4db9e53927cd8b34487e",
260+
"brackets-min.js": "1250f325ca3812da713f20a680169b587616e92ed834753be2882f6a3f2c2534",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
264-
"cacheManifest.json": "632ff96f46304aaf52648c3f5ae91918c88b794ab9a23ddd48ada20abba6a165",
264+
"cacheManifest.json": "83a885277098a1de447a69413d935dda9109f191130d62e7bcc1ff9d6385b53e",
265265
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
266266
"command/CommandManager.js": "ecd5ccb7ffacb8fa24b6c284f5a19576e774f204746dbef75872992becbe5fb0",
267267
"command/Commands.js": "99fa4895ba13713db0bf8c3d14ba57969ffbfe236ea29bebb309c5e367524d7d",
@@ -270,7 +270,7 @@
270270
"command/KeyboardOverlayMode.js": "8ed49bc8728a109e3850d8ad2df374b51021f24a65811ac826210a1adcdbbb56",
271271
"command/Keys.js": "31cd87a01ce41de28e56ccbdd4fa14866cccc2b7bcde61c5134095adaa5cb674",
272272
"command/Menus.js": "729fd0ba4969590acafbfee188101244f7c2113b49c3617985f1d12544cee52e",
273-
"config.json": "13bbff56f5cf1e175060fb1cc69c405821664f08e673cdc3d11dafaeefc6108b",
273+
"config.json": "b59d6b8af9c7e35bd781b28b036d3df8cf1acaa5a1505eba3f875d6d1a90b633",
274274
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -294,7 +294,7 @@
294294
"editor/EditorHelper/InlineWidgetHelper.js": "4f983404b6750ace51e88e0861847170446e20c304cb5af5ec502a75dc968aef",
295295
"editor/EditorManager.js": "c98dc64585556b2cfe31b526736cc78d9858ac63a9e1e4942750c7692ccda805",
296296
"editor/EditorOptionHandlers.js": "b5e6c5ec69173b6c433fa719c21a94b313bd0baebad06a3f0f0e658c023fde7a",
297-
"editor/EditorStatusBar.js": "91cb65e0efd3f088f89f4807e8468f5576e013d87abfb640106db4c1cc7f7ef5",
297+
"editor/EditorStatusBar.js": "53f7798839d6e3c98c4569ff30a86b80e366516ad80103ee98a9644d48dcf9d7",
298298
"editor/ImageViewer.js": "593ea20815739738c3197268aba4643df253b97faf15c64766aaf4979aecef86",
299299
"editor/InlineTextEditor.js": "b4c68d7a8fe67e804200b405de1437d2da2914cbeb7579b4c4c73ab1ba4dae43",
300300
"editor/InlineWidget.js": "b5b811a05983340c22e79d4ccda92ef830bbf142d225c50aa454446d07b2ae6e",
@@ -650,7 +650,7 @@
650650
"images/stars-right.svg": "e99551618310103f31ded47127f5d9830c0e7c3627833faaed0e4c62c81580f7",
651651
"images/vector-bottom-right.png": "0ae23869c0897169f3eefe6ba086dd8c3c010b859ea6443f60a92ce3616f5236",
652652
"images/vector-top-left.png": "b8edc3d19c525a634e13bc0e2a0c44376df9e36211b02da5ed9b90784b59fdeb",
653-
"index.html": "472ced9d1d0f8214e8e1dfb845c2a930823e7f274728493f4660b60b826784cc",
653+
"index.html": "7fa42c2a4b8343f88e26c893ad6211d0c3a2be1b6445936055895e72a8ab5075",
654654
"JSUtils/HintUtils.js": "22066319a80e889b524eb8b102063c0114c06b28a1787e8d87755dd1100e0cfc",
655655
"JSUtils/MessageIds.json": "b6245e8da247f0ad6d29cea3a8564a4d0e8099f5aba3a6999322f5407c6ac210",
656656
"JSUtils/package.json": "43b37b698223d0c641d9d6b4705f08cd5fd8cf007d8bf746578e0f3d70b90c68",
@@ -836,7 +836,7 @@
836836
"nls/ro/lastTranslatedLocale.json": "7a7c2ef3bde24e06a94b4eb9a47df5e546bc6f42c8923b08d777166b0d4c5f02",
837837
"nls/ro/strings.js": "52e24b99dd67500b240db9b6b9f48c3f16d712148da3a19a37375ede33495c15",
838838
"nls/root/strings-app.js": "e82c0a855a2f6abc77063465c89c64974f1204146fbc629bd54fef2ae11a81bb",
839-
"nls/root/strings.js": "0e8b3616d22bfc0d373cc21dfa0bbe5337159438c5c9277ca8a93bdc53e1959e",
839+
"nls/root/strings.js": "c476c448fc65d025144186da55a094276e9d8c5f24d9e29315beade5678616a0",
840840
"nls/root/urls.js": "0e8522a0a58bb321a1de2d5fd72277089d558809a7c20af8922f1ea61ed4097e",
841841
"nls/ru/expertTranslations.json": "3feda049ee9cda78d51bf12678b10ccc1b4f1548eb84eeb8c46e321b4c3eab9b",
842842
"nls/ru/lastTranslated.json": "4fa5537e52a29332993e7253650897a9ad52904b260c547a7a2bba74fcf9b493",
@@ -974,8 +974,8 @@
974974
"styles/brackets_shared.less": "6f342e7e04388844390ec57640188104081c8ffab7e96fef936af3d261a4a3c1",
975975
"styles/brackets_theme_default.less": "4b6427d298bd55b0c8758d3c24179c36ce3ad294cf1b3580c8507d43fe0d111a",
976976
"styles/brackets_variables.less": "4dcfb39e4f677d8bac3d732096b5112c92080bdd67286611de6fd2c461a5c953",
977-
"styles/brackets-all.css": "2a55775bee37b018531096ff8a0949617dc9812f5bf59e442927983b734e67a6",
978-
"styles/brackets.less": "0e494b44472ea0f0258f2e1144e775d321166ad6f1f2cbfa104259c8dfc93823",
977+
"styles/brackets-all.css": "9c704d80b10c521c198f3eead3240f688b15345c522d47af4b183129a587e062",
978+
"styles/brackets.less": "34429f729fb58d86d8aa305a7b591e6347e1936f9affa2d3663a1b746d5536db",
979979
"styles/Extn-DisplayShortcuts.less": "a6fdde88033a9d71759b95fe1031a878f2070db5e91a03497cd29d068bf4531a",
980980
"styles/Extn-NavigationAndHistory.less": "21b46882f8f37f29a2c51f29452e18f0659c30f05a5f4018490b2976944ee367",
981981
"styles/Extn-RecentProjects.less": "945e1f22da64351c0591e874fc1abe9090c30a00f8673add4a10c8f0f4fdc0e4",

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-10-20T06:18:09.339Z",
28+
"build_timestamp": "2024-10-22T13:47:16.754Z",
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.10.0-20628",
40+
"version": "3.10.0-20629",
4141
"apiVersion": "3.10.0",
4242
"homepage": "https://core.ai",
4343
"issues": {

0 commit comments

Comments
 (0)