Skip to content

Commit c1ea158

Browse files
committed
deploy: 606b7d0
1 parent 7605c6e commit c1ea158

File tree

49 files changed

+400
-128
lines changed

Some content is hidden

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

49 files changed

+400
-128
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-19T09:42:02.349Z",
29+
"build_timestamp": "2024-10-20T06:18:09.339Z",
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-20626",
41+
"version": "3.10.0-20628",
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: 42 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11240,10 +11240,30 @@ define("command/Menus", function (require, exports, module) {
1124011240
SPLITVIEW_MENU: "splitview-menu"
1124111241
};
1124211242

11243-
const EVENT_BEFORE_CONTEXT_MENU_OPEN = "beforeContextMenuOpen",
11244-
EVENT_BEFORE_CONTEXT_MENU_CLOSE = "beforeContextMenuClose",
11245-
EVENT_BEFORE_SUB_MENU_OPEN = "beforeSubMenuOpen",
11246-
EVENT_BEFORE_SUB_MENU_CLOSE = "beforeSubMenuClose";
11243+
/**
11244+
* Event triggered before the context menu opens.
11245+
* @event EVENT_BEFORE_CONTEXT_MENU_OPEN
11246+
*/
11247+
const EVENT_BEFORE_CONTEXT_MENU_OPEN = "beforeContextMenuOpen";
11248+
11249+
/**
11250+
* Event triggered before the context menu closes.
11251+
* @event EVENT_BEFORE_CONTEXT_MENU_CLOSE
11252+
*/
11253+
const EVENT_BEFORE_CONTEXT_MENU_CLOSE = "beforeContextMenuClose";
11254+
11255+
/**
11256+
* Event triggered before a sub-menu opens.
11257+
* @event EVENT_BEFORE_SUB_MENU_OPEN
11258+
*/
11259+
const EVENT_BEFORE_SUB_MENU_OPEN = "beforeSubMenuOpen";
11260+
11261+
/**
11262+
* Event triggered before a sub-menu closes.
11263+
* @event EVENT_BEFORE_SUB_MENU_CLOSE
11264+
*/
11265+
const EVENT_BEFORE_SUB_MENU_CLOSE = "beforeSubMenuClose";
11266+
1124711267

1124811268
/**
1124911269
* Brackets Application Menu Section Constants
@@ -11255,6 +11275,8 @@ define("command/Menus", function (require, exports, module) {
1125511275
* specify a position of FIRST_IN_SECTION or LAST_IN_SECTION.
1125611276
*
1125711277
* Menu sections are denoted by dividers or the beginning/end of a menu
11278+
*
11279+
* @enum {string}
1125811280
*/
1125911281
let MenuSection = {
1126011282
// Menu Section Command ID to mark the section
@@ -11294,7 +11316,7 @@ define("command/Menus", function (require, exports, module) {
1129411316
* specify the relative position of a newly created menu object
1129511317
* @enum {string}
1129611318
*/
11297-
let BEFORE = "before",
11319+
const BEFORE = "before",
1129811320
AFTER = "after",
1129911321
FIRST = "first",
1130011322
LAST = "last",
@@ -11311,27 +11333,31 @@ define("command/Menus", function (require, exports, module) {
1131111333
* Maps menuID's to Menu objects
1131211334
* @type {Object} menuMap
1131311335
* @property {Object.<string, Menu>} menuID - A map of Menu IDs to Menu objects.
11336+
* @private
1131411337
*/
1131511338
let menuMap = {};
1131611339

1131711340
/**
1131811341
* Maps contextMenuID's to ContextMenu objects
1131911342
* @type {Object} contextMenuMap
1132011343
* @property {Object.<string, ContextMenu>} contextMenuID - A map of ContextMenu IDs to ContextMenu objects.
11344+
* @private
1132111345
*/
1132211346
let contextMenuMap = {};
1132311347

1132411348
/**
1132511349
* Maps menuItemID's to MenuItem object
1132611350
* @type {Object} menuItemMap
1132711351
* @property {Object.<string, MenuItem>} menuItemID - A map of MenuItem IDs to MenuItem objects.
11352+
* @private
1132811353
*/
1132911354
let menuItemMap = {};
1133011355

1133111356
/**
1133211357
* Maps menuItemID's to ContextMenu objects
1133311358
* @type {Object} subMenuItemMap
1133411359
* @property {Object.<string, ContextMenu>} menuItemId - A map of MenuItem IDs to ContextMenu objects.
11360+
* @private
1133511361
*/
1133611362
let subMenuItemMap = {};
1133711363

@@ -11481,7 +11507,6 @@ define("command/Menus", function (require, exports, module) {
1148111507
* name, enabled, and checked state of a MenuItem. The MenuItem will update automatically
1148211508
*
1148311509
* @constructor
11484-
* @private
1148511510
*
1148611511
* @param {string} id
1148711512
* @param {string|Command} command - the Command this MenuItem will reflect.
@@ -11523,7 +11548,6 @@ define("command/Menus", function (require, exports, module) {
1152311548
* the Menu API to query and modify menus.
1152411549
*
1152511550
* @constructor
11526-
* @private
1152711551
*
1152811552
* @param {string} id
1152911553
*/
@@ -11539,6 +11563,7 @@ define("command/Menus", function (require, exports, module) {
1153911563
* Determine MenuItem in this Menu, that has the specified command
1154011564
*
1154111565
* @param {Command} command - the command to search for.
11566+
* @private
1154211567
* @return {?HTMLLIElement} menu item list element
1154311568
*/
1154411569
Menu.prototype._getMenuItemForCommand = function (command) {
@@ -11558,6 +11583,7 @@ define("command/Menus", function (require, exports, module) {
1155811583
* @param {?string} relativeID - id of command (future: sub-menu).
1155911584
* @param {?string} position - only needed when relativeID is a MenuSection
1156011585
* @return {?HTMLLIElement} menu item list element
11586+
* @private
1156111587
*/
1156211588
Menu.prototype._getRelativeMenuItem = function (relativeID, position) {
1156311589
let $relativeElement;
@@ -12115,6 +12141,7 @@ define("command/Menus", function (require, exports, module) {
1211512141

1211612142
/**
1211712143
* Synchronizes MenuItem checked state with underlying Command checked state
12144+
* @private
1211812145
*/
1211912146
MenuItem.prototype._checkedChanged = function () {
1212012147
let checked = !!this._command.getChecked();
@@ -12133,6 +12160,7 @@ define("command/Menus", function (require, exports, module) {
1213312160

1213412161
/**
1213512162
* Synchronizes MenuItem enabled state with underlying Command enabled state
12163+
* @private
1213612164
*/
1213712165
MenuItem.prototype._enabledChanged = function () {
1213812166
if (this.isNative) {
@@ -12154,6 +12182,7 @@ define("command/Menus", function (require, exports, module) {
1215412182

1215512183
/**
1215612184
* Synchronizes MenuItem name with underlying Command name
12185+
* @private
1215712186
*/
1215812187
MenuItem.prototype._nameChanged = function () {
1215912188
if (this.isNative) {
@@ -12233,6 +12262,11 @@ define("command/Menus", function (require, exports, module) {
1223312262
}
1223412263
}
1223512264

12265+
/**
12266+
* Opens a menu with the given id
12267+
* @param id
12268+
* @returns {null}
12269+
*/
1223612270
function openMenu(id) {
1223712271
if (!id) {
1223812272
id = lastOpenedMenuID;
@@ -36046,7 +36080,7 @@ define("extensionsIntegrated/Phoenix/guided-tour", function (require, exports, m
3604636080

3604736081
// All popup notifications will show immediately on boot, we don't want to interrupt user amidst his work
3604836082
// by showing it at a later point in time.
36049-
const GENERAL_SURVEY_TIME = 600000, // 10 min
36083+
const GENERAL_SURVEY_TIME = 1200000, // 20 min
3605036084
POWER_USER_SURVEY_TIME = 10000, // 10 seconds to allow the survey to preload, but not
3605136085
// enough time to break user workflow
3605236086
ONE_MONTH_IN_DAYS = 30,

cacheManifest.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "9057cc0073098dabaa40f154301bff52b2c6090e323ace5add05761bed56b865",
3-
"assets/default-project/en.zip": "f34a7b8a6249eddca114ac45fbfc93e4ee582b7566e2e952127d334cb894b990",
2+
"appConfig.js": "33887bcd543bb3dbd2a4aa4bc6bac4602b2773245ba763543898ba426648ef26",
3+
"assets/default-project/en.zip": "03ec04690c2657566f8467998ae11d9a075fa36a1eec940f3f2fb9e60860af7c",
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": "0ef1d35df539ec2ea93dfa3ed85da3931baba8570941c9d79befa77e04f9034c",
128+
"assets/sample-projects/bootstrap-blog.zip": "30ef0b0d7b60c6b7f2aff102035be74e450475aa7cf43e4f0f6414fd8dcb0193",
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": "e3ade101bbad576d77e2c5674ce90a22b89786cdf250f818f70dd5478192a828",
138+
"assets/sample-projects/dashboard.zip": "e9f92e31663fcc94e63da77c370d8b43071278f4b06ca79b315b63e06d718147",
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": "4a5cf21e4b0419b4e0a6a60aa43bd59faaef473ebcc48ff5a53f8fbb1b3dab2b",
150+
"assets/sample-projects/explore.zip": "dbd6a62f3f031159e521d4faf7629f5f4f669f2219905a7c9dc0090ae6fecb09",
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": "8c73b2b047f51d3780163b3568d11c2211153c66e6c736a55014701f98c504d2",
240+
"assets/sample-projects/home-pages.zip": "1d9206a3fcde16f2f0d8e4765c9702f7e71a768d519d709036f37d8d8a035a82",
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,28 +249,28 @@
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": "a42ec31d1110ede63338eeb2bc5c84c0b8c25c6c9d4a985cb8873e455cf49fd7",
252+
"assets/sample-projects/HTML5.zip": "06329b0ebaace4b2ffb24dc59e9fe8f472bb5785010c868a9a6ddd75ca452b04",
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": "73e664f184cd34403b7801beed584170e1bc97c6e6a746b46c1939fd21b67857",
260+
"brackets-min.js": "316d3ce03cd4a7872c946f0d2e21f62c4644a9452cdd4db9e53927cd8b34487e",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
264-
"cacheManifest.json": "ee7f35a3d771d288176ffc5d084f49fd6dbe25d5e23a5f6c17131b959172837b",
264+
"cacheManifest.json": "632ff96f46304aaf52648c3f5ae91918c88b794ab9a23ddd48ada20abba6a165",
265265
"command/ChangeShortcutTemplate.html": "345d682d8bde29380822824778cf09acc79affae6e82b9db00c6205b2b3dd2ee",
266266
"command/CommandManager.js": "ecd5ccb7ffacb8fa24b6c284f5a19576e774f204746dbef75872992becbe5fb0",
267267
"command/Commands.js": "99fa4895ba13713db0bf8c3d14ba57969ffbfe236ea29bebb309c5e367524d7d",
268268
"command/DefaultMenus.js": "da42224e03af44ca2f76efd8fb4e5d6a339b36a0dd31e98a7dd2054aa50d17f1",
269269
"command/KeyBindingManager.js": "619663554ae638ce6c4d0c07460c690a296cd6ca1b658c0c055e003fef1d62ab",
270270
"command/KeyboardOverlayMode.js": "8ed49bc8728a109e3850d8ad2df374b51021f24a65811ac826210a1adcdbbb56",
271271
"command/Keys.js": "31cd87a01ce41de28e56ccbdd4fa14866cccc2b7bcde61c5134095adaa5cb674",
272-
"command/Menus.js": "1663a900f0008422c03d48fd4609732a81060bc39a4c28f13a9e2c626361bb42",
273-
"config.json": "0a9b2c0abaec0f4b025dee52bf0737f787d8829c2af9968f144c49abcc58d179",
272+
"command/Menus.js": "729fd0ba4969590acafbfee188101244f7c2113b49c3617985f1d12544cee52e",
273+
"config.json": "13bbff56f5cf1e175060fb1cc69c405821664f08e673cdc3d11dafaeefc6108b",
274274
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -577,7 +577,7 @@
577577
"extensionsIntegrated/Phoenix-live-preview/trust-project.html": "c7edf3725ebf82b175be0427d9c8aaeea1c48ae5fc060ae936d3b2b3e7b92386",
578578
"extensionsIntegrated/Phoenix-live-preview/utils.js": "534b6ab5845aabbd7c06d264ac6ae8bd2f648c492df53bce37b9728cf72a0746",
579579
"extensionsIntegrated/Phoenix/default-projects.js": "58b6498b218f860a796ac17f712e6193d804ef8bd39d34a448c520f1439d13ac",
580-
"extensionsIntegrated/Phoenix/guided-tour.js": "91c8f5be15c248491fa9ae9b0b0c21fdcd151eda595886e9845378655ee6434a",
580+
"extensionsIntegrated/Phoenix/guided-tour.js": "7670cc05568f420544524db0f938c96f7e5e86fbe97a61382560347e9b2d97cc",
581581
"extensionsIntegrated/Phoenix/html/create-project-dialogue.html": "50e472f6b1bbff15b4955a1ae1cc22871a066286a7b4e44dd5f0254a1c7bdc8e",
582582
"extensionsIntegrated/Phoenix/html/new-project-template.html": "ac209fe036ba840162b36919992b3372b22694900da462b9e692a7e722a1dbb0",
583583
"extensionsIntegrated/Phoenix/html/replace-keep-project-dialogue.html": "b0f79fe730c01ea926d514ba79fb1e004bc62c2c547d384fa28143d55f04d766",

0 commit comments

Comments
 (0)