Skip to content

Commit 249358e

Browse files
committed
deploy: 606b7d0
1 parent 66b78a8 commit 249358e

File tree

71 files changed

+1109
-287
lines changed

Some content is hidden

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

71 files changed

+1109
-287
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ window.AppConfig = {
2424
"app_notification_url": "assets/notifications/dev/",
2525
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2626
"linting.enabled_by_default": true,
27-
"build_timestamp": "2024-04-15T06:10:23.939Z",
27+
"build_timestamp": "2024-04-15T17:55:18.194Z",
2828
"googleAnalyticsID": "G-P4HJFPDB76",
2929
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
3030
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -36,7 +36,7 @@ window.AppConfig = {
3636
"bugsnagEnv": "development"
3737
},
3838
"name": "Phoenix Code",
39-
"version": "3.6.1-20137",
39+
"version": "3.6.1-20150",
4040
"apiVersion": "3.6.1",
4141
"homepage": "https://core.ai",
4242
"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: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37633,7 +37633,7 @@ table tr{background-color:#fff;border-top:1px solid #c6cbd1}table tr:nth-child(2
3763337633
// we tag all externally opened urls with query string parameter phcodeLivePreview="true" to address
3763437634
// #LIVE_PREVIEW_TAB_NAVIGATION_RACE_FIX
3763537635
openURL.searchParams.set(PHCODE_LIVE_PREVIEW_QUERY_PARAM, "true");
37636-
if(utils.isHTMLFile(openURL.pathname) && url.startsWith(_staticServerInstance.getBaseUrl())){
37636+
if(_staticServerInstance && utils.isHTMLFile(openURL.pathname) && url.startsWith(_staticServerInstance.getBaseUrl())){
3763737637
// this is a live preview html with in built navigation, so we can sever it as is.
3763837638
return openURL.href;
3763937639
}
@@ -37655,7 +37655,7 @@ table tr{background-color:#fff;border-top:1px solid #c6cbd1}table tr:nth-child(2
3765537655
try {
3765637656
const currentDocument = DocumentManager.getCurrentDocument();
3765737657
const currentFile = currentDocument? currentDocument.file : ProjectManager.getSelectedItem();
37658-
if(!currentFile || !_staticServerInstance || !_staticServerInstance.getBaseUrl()){
37658+
if(!currentFile){
3765937659
resolve({
3766037660
URL: getNoPreviewURL(),
3766137661
isNoPreview: true
@@ -37692,6 +37692,12 @@ table tr{background-color:#fff;border-top:1px solid #c6cbd1}table tr:nth-child(2
3769237692
serverSupportsHotReload: LivePreviewSettings.serverSupportsHotReload()
3769337693
});
3769437694
return;
37695+
} else if(!_staticServerInstance || !_staticServerInstance.getBaseUrl()){
37696+
resolve({
37697+
URL: getNoPreviewURL(),
37698+
isNoPreview: true
37699+
});
37700+
return;
3769537701
} else if(utils.isPreviewableFile(fullPath)){
3769637702
const relativeFilePath = httpFilePath || path.relative(projectRoot, fullPath);
3769737703
let URL = httpFilePath || decodeURI(_staticServerInstance.pathToUrl(fullPath));
@@ -38061,6 +38067,13 @@ define("extensionsIntegrated/Phoenix-live-preview/main", function (require, expo
3806138067
</iframe>
3806238068
`;
3806338069

38070+
if(Phoenix.isTestWindow) {
38071+
// for integ tests
38072+
window._livePreviewIntegTest = {
38073+
urlLoadCount: 0
38074+
};
38075+
}
38076+
3806438077
// jQuery objects
3806538078
let $icon,
3806638079
$settingsIcon,
@@ -38460,13 +38473,22 @@ define("extensionsIntegrated/Phoenix-live-preview/main", function (require, expo
3846038473
// a third party domain once its redirected.
3846138474
$iframe.attr('data-original-src', currentLivePreviewURL);
3846238475
$iframe.attr('data-original-path', currentPreviewFile);
38476+
if(Phoenix.isTestWindow) {
38477+
window._livePreviewIntegTest.currentLivePreviewURL = currentLivePreviewURL;
38478+
window._livePreviewIntegTest.urlLoadCount++;
38479+
}
3846338480
} else {
3846438481
$iframe.attr('srcdoc', _getTrustProjectPage());
3846538482
}
3846638483
}
3846738484
Metrics.countEvent(Metrics.EVENT_TYPE.LIVE_PREVIEW, "render",
3846838485
utils.getExtension(previewDetails.fullPath));
3846938486
StaticServer.redirectAllTabs(currentLivePreviewURL, force);
38487+
if(Phoenix.isTestWindow) {
38488+
// for integ tests
38489+
window._livePreviewIntegTest.redirectURL = currentLivePreviewURL;
38490+
window._livePreviewIntegTest.redirectURLforce = force;
38491+
}
3847038492
}
3847138493

3847238494
async function _projectFileChanges(evt, changedFile) {
@@ -39245,8 +39267,6 @@ define("extensionsIntegrated/RecentProjects/main", function (require, exports, m
3924539267

3924639268
ExtensionInterface.registerExtensionInterface(RECENT_PROJECTS_INTERFACE, exports);
3924739269
const RECENT_PROJECT_STATE = "recentProjects";
39248-
PreferencesManager.stateManager.definePreference(RECENT_PROJECT_STATE, 'array', [])
39249-
.watchExternalChanges();
3925039270

3925139271
/** @const {string} Recent Projects commands ID */
3925239272
let TOGGLE_DROPDOWN = "recentProjects.toggle";
@@ -39736,6 +39756,8 @@ define("extensionsIntegrated/RecentProjects/main", function (require, exports, m
3973639756

3973739757
// Initialize extension
3973839758
AppInit.appReady(function () {
39759+
PreferencesManager.stateManager.definePreference(RECENT_PROJECT_STATE, 'array', [])
39760+
.watchExternalChanges();
3973939761
ProjectManager.on("projectOpen", add);
3974039762
ProjectManager.on("beforeProjectClose", add);
3974139763
// add the current project at startup.
@@ -85053,7 +85075,7 @@ define("nls/root/strings", {
8505385075
"LIVE_DEV_OPEN_FIREFOX": "Open In Firefox\u2026",
8505485076
"LIVE_DEV_OPEN_ERROR_TITLE": "Error Opening Live Preview in {0}",
8505585077
"LIVE_DEV_OPEN_ERROR_MESSAGE": "Make sure that {0} browser is installed and try again.",
85056-
"LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin on Unpin Preview Page",
85078+
"LIVE_DEV_CLICK_TO_PIN_UNPIN": "Pin or Unpin Preview Page",
8505785079
"LIVE_DEV_STATUS_TIP_SYNC_ERROR": "Live Preview (not updating due to syntax error)",
8505885080
"LIVE_DEV_SETTINGS": "Live Preview Settings\u2026",
8505985081
"LIVE_DEV_SETTINGS_TITLE": "Live Preview Settings",

cacheManifest.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "f839a3b7383e36b2c5ec948fce61da02496f543987a694080cf765f33abae750",
3-
"assets/default-project/en.zip": "a1d8004e2f9cf4453c53b845a3aeea930535a699e638fb3a0a0d02cd40aeb3eb",
2+
"appConfig.js": "c40804e3733c2ed04f1d905ac4ccb4e6a1d1b770683ba15121e7db38980bb680",
3+
"assets/default-project/en.zip": "3b27370601cab27bb74c6c3d1851319ec7ee65a2571b3443c63af3e9ac33e13f",
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": "ed9255bca6cce642c4e3122542118135c4b33f9fd96bc7239ed766c408fbcdea",
128+
"assets/sample-projects/bootstrap-blog.zip": "afa940b73db1166b19f1ff994dbc70572601704f86565ad98e697b3bf5520a53",
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": "4bd3751c79041762f55439de11d0b2e86e8a79a35f54116ff35a790dfe940386",
138+
"assets/sample-projects/dashboard.zip": "7823073e0237988b81d79513cccadbd8da191590b94750b032c75c18c182845d",
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": "5f124d91cec6fca964c13a27ae492f5de3071be5955d6af05ce97af824d437c4",
150+
"assets/sample-projects/explore.zip": "768c3202f6dad69bf46ca8ee0866842a3bfe3e61ae8542e892a7a013c08b0f44",
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": "d3e947b3ba08c0b302484de0e670f1e6d9c6884cf76d13ffd8194f531ac3fbfc",
240+
"assets/sample-projects/home-pages.zip": "bf8613bb79a5c618e2c2d530eee4626966dc5d872a5368972abddccb1f235ce8",
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": "0ed32b48dc717243c169ae6e1a8f573a52c9899ba42f78392a4096ed0d7d0278",
252+
"assets/sample-projects/HTML5.zip": "15f409e31ac1131213e956867b2f08ce272deb72b287e41c963d2f6cd26275fe",
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": "fc032682675e1f7d576374b080b97aaaa48a69ab47f15dab1c7f112853024f3d",
259259
"base-config/readme-keyboard.md": "27e98128176dbd060e93b1f321a4ddcd609571b7b8eb8c9112588f4767d08a03",
260-
"brackets-min.js": "3f7bbf4b3f5cb9e5fc6bcc195c8eaf15da6b4874938ac6ddc5d3253140808222",
260+
"brackets-min.js": "d89d7a5ee22181c532267794700e50ac4eceb1c7543e22346108b3dbef1995fa",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "99c6af562437e2e3afa91901dd40b9fbcccb4425a9765b3dac5dd2cfec984e20",
264-
"cacheManifest.json": "6478bd825ba03542d1342d430508cd43bdf70c457f706fb6098d2b2168ac0eba",
264+
"cacheManifest.json": "344432147f657e4cafa15648d4284fad86604cd993791cd094be606f92a3284e",
265265
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
266266
"command/CommandManager.js": "0600518322584495bbbfae76ed2bb39e416de3735ee65b12c63a2b3e6b3423ca",
267267
"command/Commands.js": "008f1272f46500c042fc574ba7686f0fa35b4c2885f40b05e27e828aee291eea",
@@ -270,7 +270,7 @@
270270
"command/KeyboardOverlayMode.js": "46a9aee18e36a7861fd0f0ae46d765cb30b079a6a5f00b21fbf1e3acd91dacee",
271271
"command/Keys.js": "31cd87a01ce41de28e56ccbdd4fa14866cccc2b7bcde61c5134095adaa5cb674",
272272
"command/Menus.js": "c31266bdd68f4c83e2aed71a6a89551d51bc63b3ed66e67dec94e1d9ae77859f",
273-
"config.json": "d90a4c6c58b52fa328596bdfafcd22f4333840ecbdf7d1b491a501887541f8d6",
273+
"config.json": "271fa0e54c678bd5ff53af7487b3eae7acf55ad972c9d57ef856bad8cbefddb8",
274274
"desktop-metrics.html": "ca46d36aec85f715746d1b90af09664c98e17b8262e5b141eee69bdb9d2b1c89",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -562,9 +562,9 @@
562562
"extensionsIntegrated/Phoenix-live-preview/live-preview.css": "1ab53e2209ee05e95288442d752b659172130238c6f12e9b6fee924b3723fb9a",
563563
"extensionsIntegrated/Phoenix-live-preview/livePreviewSettings.html": "8e3c3af2a03a629364e18af143be46978a1b504192a4da99e321f09d85e93afb",
564564
"extensionsIntegrated/Phoenix-live-preview/LivePreviewSettings.js": "6be0d647df30c30e449a5f7074287ab0bc8448bdab25c8ac3df4f0599eb967d3",
565-
"extensionsIntegrated/Phoenix-live-preview/main.js": "255d372e44096bf2157e04e3295a2763d35a516bd920af970ddc4d7359ad0b03",
565+
"extensionsIntegrated/Phoenix-live-preview/main.js": "ba1ee7d6597cc0a0040ac62289955211325b05d181b4896b268e1d50a1052c27",
566566
"extensionsIntegrated/Phoenix-live-preview/markdown.html": "cdd4a33b150f1426c44401eebac8965cd7168a022db71a30428e6e549d45c10d",
567-
"extensionsIntegrated/Phoenix-live-preview/NodeStaticServer.js": "e2e0a236ca8b5aa64d9cb4ddbaffce576df3bf6e136488db5d7dacd47bead881",
567+
"extensionsIntegrated/Phoenix-live-preview/NodeStaticServer.js": "fc71b3abdd3cda4d41da26ff85017b7c77d83ede107587dca305d43995ba7a44",
568568
"extensionsIntegrated/Phoenix-live-preview/panel.html": "7822f5fbba843e4c7bb1eeba3847ed2158f65427c2d99864aa8e33af6c5def90",
569569
"extensionsIntegrated/Phoenix-live-preview/redirectPage.html": "91369e54f3ca895a15c1a1ffcd5ca5e9a62be1f48ed75cf055ed40d1be297f69",
570570
"extensionsIntegrated/Phoenix-live-preview/trust-project.html": "c7edf3725ebf82b175be0427d9c8aaeea1c48ae5fc060ae936d3b2b3e7b92386",
@@ -585,7 +585,7 @@
585585
"extensionsIntegrated/QuickOpen/javascript.js": "37ea108eca5ede776ad9b47472a4af46425918b49cef42624f540dc2edceb0d6",
586586
"extensionsIntegrated/QuickOpen/main.js": "c8970d4746cf8c31d0c401e57a2b126ebf7b2686e8b8d64114d26955382cf55e",
587587
"extensionsIntegrated/RecentProjects/htmlContent/projects-menu.html": "cf1c7fd68f8c58d416e885eb0465771ba59df20539e83ce3e991504fc1d13cf8",
588-
"extensionsIntegrated/RecentProjects/main.js": "6d11fe6c9844a0e5289fe4d94f4e2eaa0be5cc142c8a93bd0384c7536120d28f",
588+
"extensionsIntegrated/RecentProjects/main.js": "0016320fdaab762815678409fb21eabc766a584c1b4e676e26cd3183323e505b",
589589
"extensionsIntegrated/RemoteFileAdapter/main.js": "57bde1bb90c4b039329b543f16aa9c8d14f57b94d0f213514d3d676dff605fb1",
590590
"features/BeautificationManager.js": "9507f86d43533262a2b838c29790cccedcab8792c6f0752448bcecc847b0aa61",
591591
"features/FindReferencesManager.js": "27f0c652cf1b089c9e158a2fb2123baa2a143ec7bdb3a97261371f35659ba068",
@@ -816,7 +816,7 @@
816816
"nls/ro/lastTranslatedLocale.json": "23c013649ec59bad22a264cf61bcaa97173bca32dbf40cf1ffd799993df3413a",
817817
"nls/ro/strings.js": "bb78035c253b3eb54b36884d2187d7787f9bc68742b82e09608d668b2e6de5eb",
818818
"nls/root/strings-app.js": "e82c0a855a2f6abc77063465c89c64974f1204146fbc629bd54fef2ae11a81bb",
819-
"nls/root/strings.js": "85a3c84708f4d4ddc55c43c8ee82cf9cbbe91245a3536be325ce6f02f0b2146f",
819+
"nls/root/strings.js": "5d517e6dc3e5af6abf222e1c1f3812536084f0c2f97f09d0498d8f77f44ceb1a",
820820
"nls/root/urls.js": "0e8522a0a58bb321a1de2d5fd72277089d558809a7c20af8922f1ea61ed4097e",
821821
"nls/ru/expertTranslations.json": "240db3c4d40756e39654a4e76e4acb65d0370ea499ab23bfdc0bff0e8969a4fb",
822822
"nls/ru/lastTranslated.json": "51e7f74737b247b9da086d2112fabd38fd08f37a80bb447d34cf2ac235c36ed8",
@@ -864,7 +864,7 @@
864864
"nls/zh-tw/lastTranslatedLocale.json": "9fa9e27c58b8ee7f225a82a546a9711c29cca6c34f986cb382ed4820a8b7f0f9",
865865
"nls/zh-tw/strings.js": "31180c6fc644fd756cd8ac04b826b58662af428219c4c357788080f9474ba612",
866866
"nls/zh-tw/urls.js": "6905307d90e88384d06a3713c9b58dae30007392feebe29a67bf79fe75e68649",
867-
"node-loader.js": "b292e1654651e3bc0bb2fe86cdb40df9ee57296332504b7d839f091b8eea0910",
867+
"node-loader.js": "6ac3cb69e42d653442160860970930b5138d851100adb2fcf0903a858dd50668",
868868
"NodeConnector.js": "5132078a5fe6dd1944e1364384fb506c8bdf6844ecaaa27f3ce4c9a902f89b75",
869869
"phoenix/errno.js": "f5c78c9b88f0a7c74c9d6a4b0f3a1bc5c3901452abddddb7e3f9b8c707a31b0e",
870870
"phoenix/init_vfs.js": "a5081efd686a58e197487d79a3bccc766d7c9da562e47ca264a95793cea3fe01",
@@ -907,7 +907,7 @@
907907
"search/SearchResultsView.js": "82c0b38b6913beec1d5aae185a3c34472b13dd4a2833838c867c23bba989d2b1",
908908
"search/worker/search.js": "00d7411e197d8efe7bda77df31e2a141f7c7e5b4d4ab325c24a7a958ef100af1",
909909
"sitemap-phcode.xml": "9a4c5fa804a34fa09075f8d817eb861f7794466fa81c323d2532560466adb60a",
910-
"storage.js": "980f39b4a7ffb772205629feb0c356fb9d962459f367d2b0db4ecd9bf912b7fd",
910+
"storage.js": "c2a78bf877af4b3cd3cfc4a039155049cd3e00587dcb44b2e09f9f9481847a47",
911911
"strings.js": "cfd950f720d6b65c4125f98432f323a2ce42b2d73158ac54dbc009ca96f7a3b4",
912912
"styles/bootstrap/accordion.less": "3a6c3293afe861b75fd205f7c7a22e4e1607a15f63b9b2ef1cec1de2192a15f9",
913913
"styles/bootstrap/alerts.less": "442aaad5a5787ed301f82f86442cc86cf2e7fc74777e7cdb282f7a72fb6d3eea",

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"app_notification_url": "assets/notifications/dev/",
2424
"app_update_url": "https://updates.phcode.io/tauri/update-latest-experimental-build.json",
2525
"linting.enabled_by_default": true,
26-
"build_timestamp": "2024-04-15T06:10:23.939Z",
26+
"build_timestamp": "2024-04-15T17:55:18.194Z",
2727
"googleAnalyticsID": "G-P4HJFPDB76",
2828
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
2929
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -35,7 +35,7 @@
3535
"bugsnagEnv": "development"
3636
},
3737
"name": "Phoenix Code",
38-
"version": "3.6.1-20137",
38+
"version": "3.6.1-20150",
3939
"apiVersion": "3.6.1",
4040
"homepage": "https://core.ai",
4141
"issues": {

0 commit comments

Comments
 (0)