Skip to content

Commit 0679e36

Browse files
committed
deploy: 606b7d0
1 parent 870b97a commit 0679e36

Some content is hidden

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

57 files changed

+360
-136
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-26T06:24:33.122Z",
29+
"build_timestamp": "2024-10-29T05:03:50.288Z",
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-20632",
41+
"version": "3.10.0-20633",
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: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47328,19 +47328,22 @@ define("filesystem/Directory", function (require, exports, module) {
4732847328

4732947329
/**
4733047330
* The contents of this directory. This "private" property is used by FileSystem.
47331+
* @private
4733147332
* @type {Array<FileSystemEntry>}
4733247333
*/
4733347334
Directory.prototype._contents = null;
4733447335

4733547336
/**
4733647337
* The stats for the contents of this directory, such that this._contentsStats[i]
4733747338
* corresponds to this._contents[i].
47339+
* @private
4733847340
* @type {Array.<FileSystemStats>}
4733947341
*/
4734047342
Directory.prototype._contentsStats = null;
4734147343

4734247344
/**
4734347345
* The stats errors for the contents of this directory.
47346+
* @private
4734447347
* @type {Object.<string, string>} Full paths are mapped to FileSystemError strings.
4734547348
*/
4734647349
Directory.prototype._contentsStatsErrors = null;
@@ -47933,7 +47936,7 @@ define("filesystem/FileIndex", function (require, exports, module) {
4793347936

4793447937
/**
4793547938
* Master index
47936-
*
47939+
* @private
4793747940
* @type {Object.<string, File|Directory>} Maps a fullPath to a File or Directory object
4793847941
*/
4793947942
FileIndex.prototype._index = null;
@@ -48229,6 +48232,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4822948232
}
4823048233

4823148234
/**
48235+
* @private
4823248236
* @param {string} protocol ex: "https:"|"http:"|"ftp:"|"file:"
4823348237
* @param {string} filePath fullPath of the file
4823448238
* @return adapter adapter wrapper over file implementation
@@ -48251,6 +48255,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4825148255

4825248256
/**
4825348257
* The FileSystem is not usable until init() signals its callback.
48258+
* @private
4825448259
* @constructor
4825548260
*/
4825648261
function FileSystem() {
@@ -48271,11 +48276,13 @@ define("filesystem/FileSystem", function (require, exports, module) {
4827148276
/**
4827248277
* The low-level file system implementation used by this object.
4827348278
* This is set in the init() function and cannot be changed.
48279+
* @private
4827448280
*/
4827548281
FileSystem.prototype._impl = null;
4827648282

4827748283
/**
4827848284
* The FileIndex used by this object. This is initialized in the constructor.
48285+
* @private
4827948286
*/
4828048287
FileSystem.prototype._index = null;
4828148288

@@ -48285,6 +48292,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4828548292
* until after index fixups, operation-specific callbacks, and internal change
4828648293
* events are complete. (This is important for distinguishing rename from
4828748294
* an unrelated delete-add pair).
48295+
* @private
4828848296
* @type {number}
4828948297
*/
4829048298
FileSystem.prototype._activeChangeCount = 0;
@@ -48297,11 +48305,15 @@ define("filesystem/FileSystem", function (require, exports, module) {
4829748305
/**
4829848306
* Queue of arguments with which to invoke _handleExternalChanges(); triggered
4829948307
* once _activeChangeCount drops to zero.
48308+
* @private
4830048309
* @type {!{path:?string, stat:FileSystemStats}}
4830148310
*/
4830248311
FileSystem.prototype._externalChanges = null;
4830348312

48304-
/** Process all queued watcher results, by calling _handleExternalChange() on each */
48313+
/**
48314+
* Process all queued watcher results, by calling _handleExternalChange() on each
48315+
* @private
48316+
*/
4830548317
FileSystem.prototype._triggerExternalChangesNow = function () {
4830648318
this._externalChanges.forEach(function (info) {
4830748319
this._handleExternalChange(info.path, info.stat);
@@ -48313,6 +48325,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4831348325
* Receives a result from the impl's watcher callback, and either processes it
4831448326
* immediately (if _activeChangeCount is 0) or otherwise stores it for later
4831548327
* processing.
48328+
* @private
4831648329
* @param {?string} path The fullPath of the changed entry
4831748330
* @param {FileSystemStats=} stat An optional stat object for the changed entry
4831848331
*/
@@ -48326,12 +48339,14 @@ define("filesystem/FileSystem", function (require, exports, module) {
4832648339

4832748340
/**
4832848341
* The queue of pending watch/unwatch requests.
48342+
* @private
4832948343
* @type {{fn: function(), cb: function()}} Array
4833048344
*/
4833148345
FileSystem.prototype._watchRequests = null;
4833248346

4833348347
/**
4833448348
* Dequeue and process all pending watch/unwatch requests
48349+
* @private
4833548350
*/
4833648351
FileSystem.prototype._dequeueWatchRequest = function () {
4833748352
if (this._watchRequests.length > 0) {
@@ -48353,7 +48368,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4835348368

4835448369
/**
4835548370
* Enqueue a new watch/unwatch request.
48356-
*
48371+
* @private
4835748372
* @param {function()} fn - The watch/unwatch request function.
4835848373
* @param {callback()} cb - The callback for the provided watch/unwatch
4835948374
* request function.
@@ -48372,15 +48387,15 @@ define("filesystem/FileSystem", function (require, exports, module) {
4837248387
* The set of watched roots, encoded as a mapping from full paths to WatchedRoot
4837348388
* objects which contain a file entry, filter function, and an indication of
4837448389
* whether the watched root is inactive, starting up or fully active.
48375-
*
48390+
* @private
4837648391
* @type {Object.<string, WatchedRoot>}
4837748392
*/
4837848393
FileSystem.prototype._watchedRoots = null;
4837948394

4838048395
/**
4838148396
* Finds a parent watched root for a given path, or returns null if a parent
4838248397
* watched root does not exist.
48383-
*
48398+
* @private
4838448399
* @param {string} fullPath The child path for which a parent watched root is to be found.
4838548400
* @return {?{entry: FileSystemEntry, filter: function(string): boolean}} The parent
4838648401
* watched root, if it exists, or null.
@@ -48515,6 +48530,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4851548530
*
4851648531
* All operations that mutate the file system MUST begin with a call to
4851748532
* _beginChange and must end with a call to _endChange.
48533+
* @private
4851848534
*/
4851948535
FileSystem.prototype._beginChange = function () {
4852048536
this._activeChangeCount++;
@@ -48524,6 +48540,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4852448540
/**
4852548541
* Indicates that a filesystem-mutating operation has completed. See
4852648542
* FileSystem._beginChange above.
48543+
* @private
4852748544
*/
4852848545
FileSystem.prototype._endChange = function () {
4852948546
this._activeChangeCount--;
@@ -48557,6 +48574,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4855748574
/**
4855848575
* Returns a canonical version of the path: no duplicated "/"es, no ".."s,
4855948576
* and directories guaranteed to end in a trailing "/"
48577+
* @private
4856048578
* @param {!string} path Absolute path, using "/" as path separator
4856148579
* @param {boolean=} isDirectory
4856248580
* @return {!string}
@@ -48903,7 +48921,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4890348921

4890448922
/**
4890548923
* Fire a rename event. Clients listen for these events using FileSystem.on.
48906-
*
48924+
* @private
4890748925
* @param {string} oldPath The entry's previous fullPath
4890848926
* @param {string} newPath The entry's current fullPath
4890948927
*/
@@ -48913,7 +48931,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4891348931

4891448932
/**
4891548933
* Fire a change event. Clients listen for these events using FileSystem.on.
48916-
*
48934+
* @private
4891748935
* @param {File|Directory} entry The entry that has changed
4891848936
* @param {Array<File|Directory>=} added If the entry is a directory, this
4891948937
* is a set of new entries in the directory.
@@ -48943,7 +48961,7 @@ define("filesystem/FileSystem", function (require, exports, module) {
4894348961
* removed entries. Mutating FileSystemEntry operations should call this method before
4894448962
* applying the operation's callback, and pass along the resulting change sets in the
4894548963
* internal change event.
48946-
*
48964+
* @private
4894748965
* @param {Directory} directory The directory that has changed.
4894848966
* @param {function(Array<File|Directory>=, Array<File|Directory>=)} callback
4894948967
* The callback that will be applied to a set of added and a set of removed
@@ -49449,60 +49467,70 @@ define("filesystem/FileSystemEntry", function (require, exports, module) {
4944949467

4945049468
/**
4945149469
* Cached stat object for this file.
49470+
* @private
4945249471
* @type {?FileSystemStats}
4945349472
*/
4945449473
FileSystemEntry.prototype._stat = null;
4945549474

4945649475
/**
4945749476
* Parent file system.
49477+
* @private
4945849478
* @type {!FileSystem}
4945949479
*/
4946049480
FileSystemEntry.prototype._fileSystem = null;
4946149481

4946249482
/**
4946349483
* The path of this entry.
49484+
* @private
4946449485
* @type {string}
4946549486
*/
4946649487
FileSystemEntry.prototype._path = null;
4946749488

4946849489
/**
4946949490
* The name of this entry.
49491+
* @private
4947049492
* @type {string}
4947149493
*/
4947249494
FileSystemEntry.prototype._name = null;
4947349495

4947449496
/**
4947549497
* The parent of this entry.
49498+
* @private
4947649499
* @type {string}
4947749500
*/
4947849501
FileSystemEntry.prototype._parentPath = null;
4947949502

4948049503
/**
4948149504
* Whether or not the entry is a file
49505+
* @private
4948249506
* @type {boolean}
4948349507
*/
4948449508
FileSystemEntry.prototype._isFile = false;
4948549509

4948649510
/**
4948749511
* Whether or not the entry is a directory
49512+
* @private
4948849513
* @type {boolean}
4948949514
*/
4949049515
FileSystemEntry.prototype._isDirectory = false;
4949149516

4949249517
/**
4949349518
* Cached copy of this entry's watched root.
49519+
* @private
4949449520
* @type {{entry: (File|Directory), filter: function(FileSystemEntry): boolean, active: boolean}}
4949549521
*/
4949649522
FileSystemEntry.prototype._watchedRoot = undefined;
4949749523

4949849524
/**
4949949525
* Cached result of _watchedRoot.filter(this.name, this.parentPath).
49526+
* @private
4950049527
* @type {boolean}
4950149528
*/
4950249529
FileSystemEntry.prototype._watchedRootFilterResult = undefined;
4950349530

4950449531
/**
4950549532
* Determines whether or not the entry is watched.
49533+
* @private
4950649534
* @param {boolean=} relaxed If falsey, the method will only return true if
4950749535
* the watched root is fully active. If true, the method will return
4950849536
* true if the watched root is either starting up or fully active.

cacheManifest.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "dfd373294ee7d06c9bb9729fa6c830f0e0305661e740273315121675384bf3e3",
3-
"assets/default-project/en.zip": "a966d23aba392bde6dcf7d461e59f6854a2d86fc246ec9fb65b4740cad881b5e",
2+
"appConfig.js": "8398ab49a96ddc1a8b4b1e43deaf70bdb083b96f3ec0d3463185afab9dd91dc1",
3+
"assets/default-project/en.zip": "94ce357eb0ae7db38cfca6c66daa7dad4267bc827e63dbd5c850a37593c1b59d",
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": "757d44d80de6e3e2f883fc423f3473ded8b2d587d29904efb88f697876ba5685",
128+
"assets/sample-projects/bootstrap-blog.zip": "dd776943481ebcd5db5885fbd4ea4f9436f4659c27e1a2d3140536de78060233",
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": "ecb993c48a07a44d59532cb7ab5ded3d321108f77b3bfae0fbf14be33ca2e18f",
138+
"assets/sample-projects/dashboard.zip": "f96184a5a5d599eaf4bd15232bf0d2c3b20d2d9d76a043bf653a11cab64f4991",
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": "e8e82449ec0d784943555de9d0f639148a7ea893be7779f8fbfc9b7b6d8f9635",
150+
"assets/sample-projects/explore.zip": "b6a22e2ed9294994d87a528f25bccfaee77696d8fbc7c52f94db616b9347b713",
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": "51eb3768eb37366f52cdeb81f1ae1b0462f019ffcc70c54842932eb2184c3734",
240+
"assets/sample-projects/home-pages.zip": "eb7bf7c9f99773631e05ecb30f227af03904e55b7161a9f76c139b1b9df2308b",
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": "0f68adee83545f1a4a7877a430de604f79544d95c539ef92a608fe1744bdd9c1",
252+
"assets/sample-projects/HTML5.zip": "e0145565f6ad7cff89351c9363c8f0c0bada34eba4fb1f09253b0a6c6bb821fc",
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": "7d74b1fe59c959a8d9c0ed23922d0f9a6d4d1587218a51636e771c2f924a336a",
260+
"brackets-min.js": "30a58612ef7476293640d4b1e7ee3787eed9902f54ad6b3e1a8b8d6820df6a23",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
264-
"cacheManifest.json": "a5ed3042c37b3cad6ad927327e812b9aef7b4e3a273ea47b6fb497e30763bc55",
264+
"cacheManifest.json": "a8cc3f026f23751b24368037d93ff7fa33edce03040dbe9df552a5258b266f5c",
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": "fefaa53e6396ae50d4d12eaf16b3bd7e6d9693f3d2c6f85211c3e68812d29add",
273+
"config.json": "30562b584aac76a427d2f41ea3a3f098ebd54404d05f8bf16eae34f1fa0218e4",
274274
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -604,11 +604,11 @@
604604
"features/SelectionViewManager.js": "d142f3e5f6ac781ce889e71576e1cb852405f15527d4140ba60601e0243bea89",
605605
"features/TaskManager.js": "70b50e0fe8a67c8f156c01ead5de598e62fcbda95be1d1b957892af9a7a059b2",
606606
"file/FileUtils.js": "806b462f73f547eee83ea7e13b819bd326e64a0f644192afe20b270d82a63278",
607-
"filesystem/Directory.js": "53f05d1dc53669c2174be466fbcdc85083f77a7970d6bf39a6730a72bf0804cc",
607+
"filesystem/Directory.js": "32036204e416a852d3c3ef21140519368e541b914a50ebc63e0d846fd799c2da",
608608
"filesystem/File.js": "a2035b760b8ceb01bba55a4f671375fdab8346702434a011bfdd97e2e44ab119",
609-
"filesystem/FileIndex.js": "867a177c2152f8b9a221ea549144682b8ac2e6a7a6b7fa519fc5f35eff77328b",
610-
"filesystem/FileSystem.js": "a3fa241819f86dae4882961a717122ed3484cd36ed0a9410df2eed257659e21f",
611-
"filesystem/FileSystemEntry.js": "149c010843e9c66e8075f4e30617a66f484df30e61b03b23218669923caa2bfa",
609+
"filesystem/FileIndex.js": "549446b789beeae58851d09b786fd2a61a0d16bbaaf854e9aa6f81fd1d3d5a23",
610+
"filesystem/FileSystem.js": "83968187cc051907e068ef962015a3bc101398af5606831876b7cfcee9ea6dd5",
611+
"filesystem/FileSystemEntry.js": "b3cd95d77c32becce325fdf9155f63d4d8c1b8a18fe24f966f2c17495576e88b",
612612
"filesystem/FileSystemError.js": "25cfb3d4238a5117c19c8c49ca52f3e61763b6df915f9e210f1948e7fb97ffa7",
613613
"filesystem/FileSystemStats.js": "722a1a441321caaebc04e428a6072f4e89001f85abb533e4d8df0b5966c3688b",
614614
"filesystem/impls/appshell/AppshellFileSystem.js": "93528b7e7abe6a50576d85f5125d62d5d94c41cfc633ff876571658d82f49079",

0 commit comments

Comments
 (0)