Skip to content

Commit 9e50c36

Browse files
committed
deploy: 606b7d0
1 parent d614604 commit 9e50c36

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

+696
-200
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-30T02:45:16.010Z",
29+
"build_timestamp": "2024-10-30T03:06:54.929Z",
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-20644",
41+
"version": "3.10.0-20647",
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: 78 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -121441,9 +121441,6 @@ $3132870559d60e53$require$initFsLib($8adf1cfaed2eb5b1$exports);
121441121441
/*global appshell */
121442121442
/*unittests: Preferences Base */
121443121443

121444-
// @INCLUDE_IN_API_DOCS
121445-
121446-
121447121444
/**
121448121445
* Infrastructure for the preferences system.
121449121446
*
@@ -121550,6 +121547,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
121550121547
* Error type for problems parsing preference files.
121551121548
*
121552121549
* @constructor
121550+
* @private
121553121551
* @param {string} message Error message
121554121552
*/
121555121553
function ParsingError(message) {
@@ -122441,7 +122439,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122441122439

122442122440
/**
122443122441
* Represents a single, known Preference.
122444-
*
122442+
* @private
122445122443
* @constructor
122446122444
* @param {Object} properties Information about the Preference that is stored on this object
122447122445
*/
@@ -122456,6 +122454,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122456122454
* Utility for PreferencesSystem & PrefixedPreferencesSystem -- attach EventDispatcher's on()/off()
122457122455
* implementation as private _on_internal()/_off_internal() methods, so the custom on()/off() APIs
122458122456
* these classes use can leverage EventDispatcher code internally. Also attach the regular public trigger().
122457+
* @private
122459122458
*/
122460122459
function _addEventDispatcherImpl(proto) {
122461122460
var temp = {};
@@ -122468,7 +122467,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122468122467
/**
122469122468
* Provides a subset of the PreferencesSystem functionality with preference
122470122469
* access always occurring with the given prefix.
122471-
*
122470+
* @private
122472122471
* @constructor
122473122472
* @param {PreferencesSystem} base The real PreferencesSystem that is backing this one
122474122473
* @param {string} prefix Prefix that is used for preferences lookup. Any separator characters should already be added.
@@ -122482,7 +122481,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122482122481
PrefixedPreferencesSystem.prototype = {
122483122482
/**
122484122483
* Defines a new (prefixed) preference.
122485-
*
122484+
* @private
122486122485
* @param {string} id unprefixed identifier of the preference. Generally a dotted name.
122487122486
* @param {string} type Data type for the preference (generally, string, boolean, number)
122488122487
* @param {Object} initial Default value for the preference
@@ -122503,7 +122502,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122503122502

122504122503
/**
122505122504
* Get the prefixed preference object
122506-
*
122505+
* @private
122507122506
* @param {string} id ID of the pref to retrieve.
122508122507
*/
122509122508
getPreference: function (id) {
@@ -122512,7 +122511,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122512122511

122513122512
/**
122514122513
* Gets the prefixed preference
122515-
*
122514+
* @private
122516122515
* @param {string} id Name of the preference for which the value should be retrieved
122517122516
* @param {Object=} context Optional context object to change the preference lookup
122518122517
*/
@@ -122523,7 +122522,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122523122522

122524122523
/**
122525122524
* Gets the location in which the value of a prefixed preference has been set.
122526-
*
122525+
* @private
122527122526
* @param {string} id Name of the preference for which the value should be retrieved
122528122527
* @param {Object=} context Optional context object to change the preference lookup
122529122528
* @return {{scope: string, layer: ?string, layerID: ?object}} Object describing where the preferences came from
@@ -122534,7 +122533,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122534122533

122535122534
/**
122536122535
* Sets the prefixed preference.
122537-
*
122536+
* @private
122538122537
* @param {string} id - The identifier of the preference to set.
122539122538
* @param {Object} value - The new value for the preference.
122540122539
* @param {{location: ?Object, context: ?Object}=} options - Specific location to set the value or context for the operation.
@@ -122587,7 +122586,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122587122586
/**
122588122587
* Sets up a listener for events for this PrefixedPreferencesSystem. Only prefixed events
122589122588
* will notify. Optionally, you can set up a listener for a specific preference.
122590-
*
122589+
* @private
122591122590
* @param {string} event Name of the event to listen for
122592122591
* @param {string|Function} preferenceID Name of a specific preference or the handler function
122593122592
* @param {?Function} handler Handler for the event
@@ -122610,7 +122609,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122610122609
/**
122611122610
* Turns off the event handlers for a given event, optionally for a specific preference
122612122611
* or a specific handler function.
122613-
*
122612+
* @private
122614122613
* @param {string} event Name of the event for which to turn off listening
122615122614
* @param {string|Function} preferenceID Name of a specific preference or the handler function
122616122615
* @param {?Function} handler Specific handler which should stop being notified
@@ -122632,7 +122631,7 @@ define("preferences/PreferencesBase", function (require, exports, module) {
122632122631
/**
122633122632
* Saves the preferences. If a save is already in progress, a Promise is returned for
122634122633
* that save operation.
122635-
*
122634+
* @private
122636122635
* @return {Promise} Resolved when the preferences are done saving.
122637122636
*/
122638122637
save: function () {
@@ -123396,9 +123395,6 @@ define("preferences/PreferencesBase", function (require, exports, module) {
123396123395
*
123397123396
*/
123398123397

123399-
// @INCLUDE_IN_API_DOCS
123400-
123401-
123402123398
/**
123403123399
* PreferencesDialogs
123404123400
*
@@ -123434,6 +123430,7 @@ define("preferences/PreferencesDialogs", function (require, exports, module) {
123434123430

123435123431
/**
123436123432
* Validate that text string is a valid base url which should map to a server folder
123433+
* @private
123437123434
* @param {string} url
123438123435
* @return {string} Empty string if valid, otherwise error string
123439123436
*/
@@ -123545,6 +123542,8 @@ define("preferences/PreferencesDialogs", function (require, exports, module) {
123545123542
*
123546123543
*/
123547123544

123545+
// @INCLUDE_IN_API_DOCS
123546+
123548123547
/*global define, console */
123549123548
/*unittests: Preferences Manager */
123550123549

@@ -123646,6 +123645,7 @@ define("preferences/PreferencesManager", function (require, exports, module) {
123646123645

123647123646
/**
123648123647
* Context to look up preferences in the current project.
123648+
*
123649123649
* @type {Object}
123650123650
*/
123651123651
var CURRENT_PROJECT = {};
@@ -123746,6 +123746,7 @@ define("preferences/PreferencesManager", function (require, exports, module) {
123746123746

123747123747
/**
123748123748
* @private
123749+
*
123749123750
* This function is used internally to set the current language of the document.
123750123751
* Both at the moment of opening the file and when the language is manually
123751123752
* overriden.
@@ -123839,9 +123840,33 @@ define("preferences/PreferencesManager", function (require, exports, module) {
123839123840

123840123841
// Context names for preference lookups
123841123842
exports.CURRENT_PROJECT = CURRENT_PROJECT;
123843+
123844+
/**
123845+
* State project context
123846+
*
123847+
* @type {string}
123848+
*/
123842123849
exports.STATE_PROJECT_CONTEXT = StateManager.PROJECT_CONTEXT;
123850+
123851+
/**
123852+
* State global context
123853+
*
123854+
* @type {string}
123855+
*/
123843123856
exports.STATE_GLOBAL_CONTEXT = StateManager.GLOBAL_CONTEXT;
123857+
123858+
/**
123859+
* Project then global context
123860+
*
123861+
* @type {string}
123862+
*/
123844123863
exports.STATE_PROJECT_THEN_GLOBAL_CONTEXT = StateManager.PROJECT_THEN_GLOBAL_CONTEXT;
123864+
123865+
/**
123866+
* Project scope
123867+
*
123868+
* @type {Object}
123869+
*/
123845123870
exports.PROJECT_SCOPE = { location: { scope: "project" } };
123846123871

123847123872
exports.ready = PreferencesImpl.managerReady;
@@ -123900,9 +123925,27 @@ define("preferences/StateManager", function (require, exports, module) {
123900123925
EventDispatcher = require("utils/EventDispatcher"),
123901123926
ProjectManager = require("project/ProjectManager");
123902123927

123928+
/**
123929+
* Project specific context
123930+
* @const
123931+
* @type {string}
123932+
*/
123903123933
const PROJECT_CONTEXT = "project";
123934+
123935+
/**
123936+
* Global context
123937+
* @const
123938+
* @type {string}
123939+
*/
123904123940
const GLOBAL_CONTEXT = "global";
123941+
123942+
/**
123943+
* Project or global context
123944+
* @const
123945+
* @type {string}
123946+
*/
123905123947
const PROJECT_THEN_GLOBAL_CONTEXT = "any";
123948+
123906123949
const PHSTORE_STATEMANAGER_PREFIX = "STATE_";
123907123950
const transformDotsInID = {};
123908123951

@@ -124052,6 +124095,12 @@ define("preferences/StateManager", function (require, exports, module) {
124052124095
return preference;
124053124096
}
124054124097

124098+
/**
124099+
* Get the preference instance for the given ID.
124100+
*
124101+
* @param {string} id
124102+
* @returns {{}}
124103+
*/
124055124104
function getPreferenceInternal(id) {
124056124105
if(!definedPreferences[id]){
124057124106
throw new Error("getPreference " + id + " no such preference defined.");
@@ -124060,6 +124109,19 @@ define("preferences/StateManager", function (require, exports, module) {
124060124109
}
124061124110

124062124111
const knownExtensions = {};
124112+
124113+
/**
124114+
* create a state manager for an extension.
124115+
* ensure that the IDs are unique.
124116+
*
124117+
* @param {string} extensionID
124118+
* @returns {object} Object with methods to manage the extension's state and preferences.
124119+
* - `get(id, context)`: Get the value from the extension's state.
124120+
* - `set(id, value, context)`: Set the value in the extension's state.
124121+
* - `definePreference(id, type, initial, options)`: define a preference for the extension.
124122+
* - `getPreference(id)`: retrieve a defined preference.
124123+
* - `PROJECT_CONTEXT`, `GLOBAL_CONTEXT`, `PROJECT_THEN_GLOBAL_CONTEXT`: constant for context management.
124124+
*/
124063124125
function createExtensionStateManager(extensionID) {
124064124126
let i=0;
124065124127
if(extensionID.includes(".")){

cacheManifest.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "5db2d979c9402b23dcf69e12648763979581d52ce725e06431ec5b727a46b80a",
3-
"assets/default-project/en.zip": "9a2727a3d5e08e66212ff521c1ddd1fb48e19bde25904d5a64c821b4b5906e24",
2+
"appConfig.js": "146e21cf4727878821d040dd990350095774a31eb34652c1e58e20c6ef52aaea",
3+
"assets/default-project/en.zip": "4f3b4123918d0f49ab76db630b241e46afc77e502e5e997da009c382a7db7870",
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": "2c7a7ebd27f15ca2c51cafd3f4cb19f0860e6728a2d5331afe424c6799799b4b",
128+
"assets/sample-projects/bootstrap-blog.zip": "009462d74cceff4c9f103caa8b900d5101934f8160273708cbf20d9a7149e3b9",
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": "989c2ac87af204430ffd1351b53d20536b1aa8d71404e315a96332a5bd443e51",
138+
"assets/sample-projects/dashboard.zip": "16532029272cd47957da6547501caf6ddee5aae6ac03c417c42284ef8196834a",
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": "84a8ac7bc9954117b7a0921b72a592672ce453362b698417d9b400cb8b5c2e4d",
150+
"assets/sample-projects/explore.zip": "f95a0630f929b1bf152f5a78534c3664a2b6dc30fbe84d5927924d9e976045cf",
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": "c702a3e1e6a576d9833baeada0b93ca6f9036643d053be3578d5bfab6e49843e",
240+
"assets/sample-projects/home-pages.zip": "b9085fe7b6269c643fce2cca69d1dd12a6904856dfeb321acfa5da6328a152c2",
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": "dbf1376ca8d7d5fb2e928d428b307edb4d7237545dba9e02e9abfaa10ea1601c",
252+
"assets/sample-projects/HTML5.zip": "19955d68c7c11cf76913a321f3b7a64956708d7d45e438705e2e1d99accda388",
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": "2bbbf421ef9523fbc576e40f4a9a4efd7e9ba52256191a3c5bc53fe7d0573a00",
260+
"brackets-min.js": "39eb1963a3f83306e5ddb5d1e7ed2dec8c975c18f0f6fa667b581fe270314b2a",
261261
"brackets.config.dist.json": "8faa5c0a82bb4f49784e93d1225dbd5e1fd8ec6ab07b95f5f874c7c7bd7bb234",
262262
"brackets.config.staging.json": "c0e1f22c772c80f4f5756ab947e40538bcaf7fb7f8925834cfd4ef57c55e477a",
263263
"brackets.js": "f7a3164510e76e012591c9758acb47f2445526642503180c57209d30faa24d69",
264-
"cacheManifest.json": "22eeadd5fd35f0cf63de77a605acd3f07b95eb6330efbb6ecad2715c88708b8d",
264+
"cacheManifest.json": "1786cc176233ab349967d0605c4389f23bf055c44b39b1980d6f8cbfde37e366",
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": "e838453ba0c06c0204a1ccc5b5f55cdb09051adf2618cd16fc224fe6d6ad1b63",
273+
"config.json": "3cafd44d0bbb69371d89e687980ef5ad83acf006d35c6a072a1486fbf323fee4",
274274
"desktop-metrics.html": "66f87550ddf04f284a6c1e81567b7dfbefb2b8007f48f0bad7d8f7aacdb11bac",
275275
"devEnable.html": "44aa1a496a8be413299f651e6b0c3e62ac50cd5d40126ad1bb6b70b9b2b818c4",
276276
"document/ChangedDocumentTracker.js": "03b0eaf0995fee6d27c782a8028a1314f61214e383f5f5e198320b2faac4cf40",
@@ -898,11 +898,11 @@
898898
"phoenix/virtualServer/mime-db.js": "4b193f3a166948bb03dd4ab156059cf57c69653a06e0db7fef039adf77e9dc89",
899899
"phoenix/virtualServer/mime-types.js": "8fa9e16b751b6d317b98967b38ab755a2cafd485f29f7788c4c1dff4116c5697",
900900
"phoenix/virtualServer/webserver.js": "c60f24bac6dbde4280f7d2f15e5147e2e7b322820e152b6b32a979e1ee874c05",
901-
"preferences/PreferencesBase.js": "2d248641cec1489301cd2129ff04544f1c456bb321330a72afdc246a2ee463e3",
902-
"preferences/PreferencesDialogs.js": "9ee6e66a548510e77e2f65a5a1565a085dc00066bf29208c39d8a8e0b542d889",
901+
"preferences/PreferencesBase.js": "45ed10217ef447b8febc59621b94eeaf12f78765c9b181a68d265dc1d4ac9556",
902+
"preferences/PreferencesDialogs.js": "76eb7eed9eaf1c9fb9042562549702b59cb0b9b31a0f0aa7c42b2842aadaa930",
903903
"preferences/PreferencesImpl.js": "acab275b54cc024a5ca8d69fce2a213ce0ed2669304f9c738f2da29b747b31e6",
904-
"preferences/PreferencesManager.js": "50ad9cf6973c2d1f174e07fbe31e92aa551fd48d9c0bf3a259b25ca2c82542a5",
905-
"preferences/StateManager.js": "b23d7e9805e34bdf859256b434be84b72f6528354018a2a8bcba0165089c68ae",
904+
"preferences/PreferencesManager.js": "f456087102f3bc9b60a33ef423a48e2c63a2bf544dd4e7e6f8cff1d4b6b791e4",
905+
"preferences/StateManager.js": "77277d2d9f7b47b362e550ba021162fa94ba4e590f89e9350f0382b1e3f1a835",
906906
"project/FileSyncManager.js": "19d04e99be6b50b987a3c3c05cdb1b8343c2c331da6050ed55d35dac153675d6",
907907
"project/FileTreeView.js": "d2f5cdd8e26b3bcf84fa0ca34fd2bb7d97e10ba20352edba084e5e3e3af2ab11",
908908
"project/FileTreeViewModel.js": "53aa4c3c9786850890c7c784aefafd6b14a002565bceb1e072f89f93adcdc705",

0 commit comments

Comments
 (0)