Skip to content

Commit f1ebda1

Browse files
committed
deploy: 606b7d0
1 parent eca2f7f commit f1ebda1

Some content is hidden

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

66 files changed

+361
-211
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-28T11:42:44.761Z",
29+
"build_timestamp": "2024-12-30T05:18:56.807Z",
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-20768",
41+
"version": "3.11.0-20770",
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: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16296,27 +16296,36 @@ define("document/DocumentCommandHandlers", function (require, exports, module) {
1629616296
if (entry) {
1629716297
brackets.app.openPathInFileBrowser(entry.fullPath)
1629816298
.catch(err=>console.error("Error showing '" + entry.fullPath + "' in OS folder:", err));
16299+
} else {
16300+
brackets.app.openPathInFileBrowser(ProjectManager.getProjectRoot().fullPath)
16301+
.catch(err=>console.error("Error showing '" + ProjectManager.getProjectRoot().fullPath + "' in OS folder:", err));
1629916302
}
1630016303
}
1630116304

1630216305
function openDefaultTerminal() {
1630316306
const entry = ProjectManager.getSelectedItem();
1630416307
if (entry && entry.fullPath) {
1630516308
NodeUtils.openNativeTerminal(entry.fullPath);
16309+
} else {
16310+
NodeUtils.openNativeTerminal(ProjectManager.getProjectRoot().fullPath);
1630616311
}
1630716312
}
1630816313

1630916314
function openPowerShell() {
1631016315
const entry = ProjectManager.getSelectedItem();
1631116316
if (entry && entry.fullPath) {
1631216317
NodeUtils.openNativeTerminal(entry.fullPath, true);
16318+
} else {
16319+
NodeUtils.openNativeTerminal(ProjectManager.getProjectRoot().fullPath, true);
1631316320
}
1631416321
}
1631516322

1631616323
function openDefaultApp() {
1631716324
const entry = ProjectManager.getSelectedItem();
1631816325
if (entry && entry.fullPath) {
16319-
NodeUtils.openInDefaultApp(entry.fullPath, true);
16326+
NodeUtils.openInDefaultApp(entry.fullPath);
16327+
} else {
16328+
NodeUtils.openInDefaultApp(ProjectManager.getProjectRoot().fullPath);
1632016329
}
1632116330
}
1632216331

@@ -147661,28 +147670,31 @@ define("utils/LocalizationUtils", function (require, exports, module) {
147661147670
* @param {Date} [date] - The date to compare with the current date and time. If not given, defaults to now.
147662147671
* @param {string} [lang] - Optional language code to use for formatting (e.g., 'en', 'fr').
147663147672
* If not provided, defaults to the application locale or 'en'.
147673+
* @param {Date} [fromDate] - Optional date to use instead of now to compute the relative dateTime from.
147664147674
* @returns {string} - A human-readable relative time string (e.g., "2 days ago", "in 3 hours").
147665147675
*/
147666-
function dateTimeFromNow(date, lang) {
147676+
function dateTimeFromNow(date, lang, fromDate) {
147667147677
date = date || new Date();
147668-
const now = new Date();
147669-
const diffInSeconds = Math.floor((date - now) / 1000);
147678+
fromDate = fromDate || new Date();
147679+
const diffInSeconds = Math.floor((date - fromDate) / 1000);
147670147680

147671147681
const rtf = new Intl.RelativeTimeFormat([lang || brackets.getLocale() || "en", "en"],
147672147682
{ numeric: 'auto' });
147673-
147674-
if (Math.abs(diffInSeconds) < 60) {
147683+
if (Math.abs(diffInSeconds) < 3) {
147684+
// we consider diffs less than 3 seconds to be always 'now', for better UX and for unit tests stability.
147685+
return rtf.format(0, 'second');
147686+
} else if (Math.abs(diffInSeconds) < 60) {
147675147687
return rtf.format(diffInSeconds, 'second');
147676147688
} else if (Math.abs(diffInSeconds) < 3600) {
147677-
return rtf.format(Math.floor(diffInSeconds / 60), 'minute');
147689+
return rtf.format(Math.trunc(diffInSeconds / 60), 'minute');
147678147690
} else if (Math.abs(diffInSeconds) < 86400) {
147679-
return rtf.format(Math.floor(diffInSeconds / 3600), 'hour');
147691+
return rtf.format(Math.trunc(diffInSeconds / 3600), 'hour');
147680147692
} else if (Math.abs(diffInSeconds) < 2592000) {
147681-
return rtf.format(Math.floor(diffInSeconds / 86400), 'day');
147693+
return rtf.format(Math.trunc(diffInSeconds / 86400), 'day');
147682147694
} else if (Math.abs(diffInSeconds) < 31536000) {
147683-
return rtf.format(Math.floor(diffInSeconds / 2592000), 'month');
147695+
return rtf.format(Math.trunc(diffInSeconds / 2592000), 'month');
147684147696
} else {
147685-
return rtf.format(Math.floor(diffInSeconds / 31536000), 'year');
147697+
return rtf.format(Math.trunc(diffInSeconds / 31536000), 'year');
147686147698
}
147687147699
}
147688147700

@@ -147699,7 +147711,7 @@ define("utils/LocalizationUtils", function (require, exports, module) {
147699147711
function dateTimeFromNowFriendly(date, lang) {
147700147712
const now = new Date();
147701147713
const diffInMilliseconds = date - now;
147702-
const diffInDays = Math.floor(diffInMilliseconds / (1000 * 60 * 60 * 24));
147714+
const diffInDays = Math.trunc(diffInMilliseconds / (1000 * 60 * 60 * 24));
147703147715

147704147716
// If within the last 30 days or the future, use relative time
147705147717
if (Math.abs(diffInDays) <= 30) {

cacheManifest.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "4937bef670c9b85e211e48ead999391a8b6f5575d2a8c1b32422cf5552e06a8f",
3-
"assets/default-project/en.zip": "bc1d7654d3e1d997b08fabd292ad901bd55560aa3df7e55f406475e152b53286",
2+
"appConfig.js": "ca32062ec9a3437ab61a887bea6f12a7bc76acf5936d7fd46a4c467ff6bc0374",
3+
"assets/default-project/en.zip": "1b50b0351d867840bb56afb73cf282161d861d59c57ba4adda2357da9f8c0f48",
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": "f1d9f4f3890b393e0158b0a71e143f5e377d78e2c9544b5863dc65860e2ae1dd",
128+
"assets/sample-projects/bootstrap-blog.zip": "e136153666dcdae2d828da962ea2824df48c30dd631a2b511c2f247ea688d1e8",
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": "f90e34dccd765c4ace875b0c19a1148a0d4406a588fc8881739b3ac207ab21e6",
138+
"assets/sample-projects/dashboard.zip": "4c3582cadd45bafae2a4b57c7128f0e29551ccd0602ffe5f7740977ac456cd36",
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": "674ea83d45889b72369275daf36242c219649d4f5e218368667a662a512396ab",
150+
"assets/sample-projects/explore.zip": "b1c934be4ea35425deb2f24b0eb5a5e210fde05516edc9450efc5b608db10b16",
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": "9f1d75ee8d199827ba21a9f46da4eeb0879e4ce32150349fe5fb57e4e630d896",
239+
"assets/sample-projects/home-pages.zip": "1a4ddec9a714d2ebfe55b60955bf2a253c308f0f8f509a1339ba07b57a95ef22",
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": "ff3bedefd1a5adcab09ebaaab259f9d43cf26a114bcb2c69d5b5e97e11f7eb30",
251+
"assets/sample-projects/HTML5.zip": "d815d93c4664a64c1fce25026c9f8d99ba3db8f9ee8886116723e18414f44d8c",
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": "4b75806ab1d82b4d2340e5d233bef80748390c77eb87694802a2a61eb84778dc",
259+
"brackets-min.js": "00c210d65f5fede06f70283a14a067ca7d631a9696df0c89808c0d0a27ba24d6",
260260
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
261261
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
262262
"brackets.js": "6dee2717d91f84c60a3afa8e6427a96fbcdba0363fbcd0a8d8baea74f13f20bc",
263-
"cacheManifest.json": "7aa7856d85408f8dfe51ae5c7f9e3d16864a8401deb1cf0a588040625d281345",
263+
"cacheManifest.json": "969605b43660a6fa0cd73905449c985e0763de6eb9c6645beb09ee538ed5f1b5",
264264
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
265265
"command/CommandManager.js": "10181902fc2e55a780981a17b95c7b579427fdfd12c92ed49df35d3b70f64c15",
266266
"command/Commands.js": "5c9cf28a050af9c156d6cc2e22fdbba6cec1b6e2a2fc5db53799b3fc8bb61b84",
@@ -269,12 +269,12 @@
269269
"command/KeyboardOverlayMode.js": "7170dfcfca59b41252146ef8a5ca4f652c666e33b7a4b411e30e72951bd35b49",
270270
"command/Keys.js": "36545bbbca56d2a909779c5873fa860bf737977588ad61a398acb86f6bcbe4ee",
271271
"command/Menus.js": "b0c5031f13e4ca6efd594e9fcb973f0e591a1af6cc0c0df8ec32024f6bdd0f08",
272-
"config.json": "697640fa53d5f32e02c6fe237ae5aa06d4f418e43e319a8e0fa319837498edf3",
272+
"config.json": "1614f10f5bcd8e5e3eee81670692baf8a0a4f37db3ae91c5fea0b8bb519cc3da",
273273
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
274274
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
275275
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
276276
"document/Document.js": "9346e56932b754453e50188d21f2b303fa335dfa67bd9aac3ab8a68eaa2cbea0",
277-
"document/DocumentCommandHandlers.js": "4a9ada47e3baad76d86ab7f9830c83bc4dd02dea9956e45bc6351e52b08b3db5",
277+
"document/DocumentCommandHandlers.js": "3ee5f16ee136a087cadb6943282d2550a3767a852753ec9e740915ba0435c9da",
278278
"document/DocumentManager.js": "6fd53aa8a8e9dc8c38785277a7ec1b54fb8b5edd821a25dc15e09438d91bf8aa",
279279
"document/InMemoryFile.js": "7ae9dbae506e8cfd8d6db74c3c65bf07e93779e8a5a503cb0031841209c15fda",
280280
"document/TextRange.js": "20e56c4d767547db824b0b753b8fa11ef8a1a15f30e4ee11e4416de0b365cbed",
@@ -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": "7a7557587ece631637a415ee32427c0c93f8133dae53ffd2d58a37a491640ed0",
519+
"extensions/registry/popularity.json": "cbf1edeec12c713ad02e549c6538795c3f7f922cb722da726d5bebdac9656dd6",
520520
"extensions/registry/registry_version.json": "72ef9a328e30caad4c812165c45e4077eea32b273603603ba6784bc336873679",
521-
"extensions/registry/registry.json": "62a25836401073e9f410fa444e9dda1e640f8b332543e7ea2bec1950aa81ea80",
521+
"extensions/registry/registry.json": "f39e6c9e2bf368610ff32e557b054fc32bdc0b177616ed588a8cd8fd6fc9fc37",
522522
"extensions/samples/BracketsConfigCentral/htmlContent/Config.html": "6ac3ce03e2fb8913ec5da3e8835c0646894f242600c64d95b77c7d7dc0a156f7",
523523
"extensions/samples/BracketsConfigCentral/htmlContent/logo-sm.png": "006f025fecd24c292e87a1eb0e123ee21178ec9c09517a1f16fe362fe2fbcbb5",
524524
"extensions/samples/BracketsConfigCentral/main.js": "f2c36decadb7d98e2a89cfdb9aff8a74cc130ea8c3ad084b7af62ee21e3a8181",
@@ -968,15 +968,15 @@
968968
"styles/bootstrap/variables.less": "3b5e55f199902872616f9ddda45ea8df5fe4603addb385269806accc50d7b6e3",
969969
"styles/bootstrap/wells.less": "3fb041192fe9f8d0ffc41b20d5f5e25bfeab77322764fef8272d1ff5030ff553",
970970
"styles/brackets_codemirror_override.less": "fb65303b9dddb475379495b5295ae259eeced0f06c4e7fc382ae77fd7c6f683a",
971-
"styles/brackets_core_ui_variables.less": "615a7a74aaba002e8817832c57bbc908c051c2a86023b567c38ae3fcfe544cf1",
971+
"styles/brackets_core_ui_variables.less": "c523127450f33854aca483ddef7a3b448c433613f7f9fe5b10233c1514ef0b0b",
972972
"styles/brackets_fonts.less": "6962e4b4db7b5e9ebd4e82cb83b52c694244afa66bf144cf53166efdf6e84e9e",
973973
"styles/brackets_mixins.less": "616207770f941144699055b9ec6fb38d053987e7e93c8e2f6c1e021ab0a3b25d",
974974
"styles/brackets_patterns_override.less": "dab8734173b7ebf034ead5e277bd9feeb6eba86f1aa290e080c0271aa54ed776",
975975
"styles/brackets_scrollbars.less": "12caf84e6a1087b24393c3d3af8e2ec3853a3f5527bc14cda908199d6e14b740",
976976
"styles/brackets_shared.less": "6f342e7e04388844390ec57640188104081c8ffab7e96fef936af3d261a4a3c1",
977977
"styles/brackets_theme_default.less": "b7074dbfceb66c7d62d326142388022a27d558c78af359e050d619a3b5e12fa8",
978978
"styles/brackets_variables.less": "93ee66174d37d368f3acfc4c8b826a45d73da852618c7dcdc599e531d9293c98",
979-
"styles/brackets-all.css": "1906ea6b22dbb2884f6b30a1ccd0a8cb4d3d4ca59e9f5cfc785a293e4ef00448",
979+
"styles/brackets-all.css": "3c5d9afffea69ff55e5ee0af561d05ca4962ade8ef54fb0f79ac6306db0d134c",
980980
"styles/brackets.less": "d4aeceedf3b4af539361a47d39c06b9048126c2c65c0f573c93b74c6bd4a27be",
981981
"styles/Extn-CSSColorPreview.less": "11dd008da2df43769234224bdbfe1447a1ce68e31ace27b17c478c05ae2d2619",
982982
"styles/Extn-DisplayShortcuts.less": "a6fdde88033a9d71759b95fe1031a878f2070db5e91a03497cd29d068bf4531a",
@@ -1747,7 +1747,7 @@
17471747
"utils/FeatureGate.js": "5dd72e889df733efc992a2236c5d09dd7587203244712266318ed7e4521dc29c",
17481748
"utils/Global.js": "5eaa3f2022b20668b0c2a37b201f5db8cfb3c692ecb3079d9ebffdb1306fbd18",
17491749
"utils/KeyEvent.js": "701155ac32f5bf05f7d2ad24f825ae3a6d4313a387ae4bb01cf8aff6bd3e616f",
1750-
"utils/LocalizationUtils.js": "41bd7fb7da71d07e782c21bec7ff29ee8157fba83ae7ac65e7de763b8fff3293",
1750+
"utils/LocalizationUtils.js": "3a98432d0f6b3321a97eb1252c34b698c77a3c214fbdbc69d32fce26b191932e",
17511751
"utils/Metrics.js": "7954e37700796acff0ee78235776ca650a91b9ae13c07fdd7a50b27636836c56",
17521752
"utils/NativeApp.js": "2e26094168aaba67ce86fb90cfc57bb69957e0e08582ac34a1f4506c64cdfee6",
17531753
"utils/NodeConnection.js": "e57de9190f6ffa6941224df69bd1fa45d6d98756c609704fd9d2f250c2576306",

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-28T11:42:44.761Z",
28+
"build_timestamp": "2024-12-30T05:18:56.807Z",
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-20768",
40+
"version": "3.11.0-20770",
4141
"apiVersion": "3.11.0",
4242
"homepage": "https://core.ai",
4343
"issues": {

0 commit comments

Comments
 (0)