Skip to content

Commit 1485fb0

Browse files
committed
deploy: 8a905e4
1 parent e8e9334 commit 1485fb0

File tree

41 files changed

+176
-90
lines changed

Some content is hidden

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

41 files changed

+176
-90
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ window.AppConfig = {
2323
"extension_store_url": "https://store.core.ai/src/",
2424
"app_notification_url": "assets/notifications/dev/",
2525
"linting.enabled_by_default": true,
26-
"build_timestamp": "2024-02-05T15:15:42.560Z",
26+
"build_timestamp": "2024-02-05T17:11:23.104Z",
2727
"googleAnalyticsID": "G-P4HJFPDB76",
2828
"googleAnalyticsIDDesktop": "G-VE5BXWJ0HF",
2929
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
@@ -34,7 +34,7 @@ window.AppConfig = {
3434
"bugsnagEnv": "development"
3535
},
3636
"name": "Phoenix",
37-
"version": "3.2.25-19824",
37+
"version": "3.2.25-19829",
3838
"apiVersion": "3.2.25",
3939
"homepage": "https://core.ai",
4040
"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.

base-config/keyboard.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"Ctrl-`"
1010
],
1111
"file.close_all": [
12-
"Alt-Shift-W"
12+
"Ctrl-Alt-Shift-W"
1313
],
1414
"file.save": [
1515
"Ctrl-S"
@@ -184,7 +184,7 @@
184184
],
185185
"cmd.findAllAndSelect": [
186186
{
187-
"key": "Alt-F3"
187+
"key": "Alt-Shift-F3"
188188
},
189189
{
190190
"key": "Cmd-Ctrl-G",
@@ -193,12 +193,7 @@
193193
],
194194
"cmd.addNextMatch": [
195195
{
196-
"key": "Alt-B"
197-
}
198-
],
199-
"cmd.skipCurrentMatch": [
200-
{
201-
"key": "Alt-Shift-B"
196+
"key": "Alt-F3"
202197
}
203198
],
204199
"cmd.replace": [

brackets-min.js

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8361,6 +8361,7 @@ define("command/DefaultMenus", function (require, exports, module) {
83618361
// In browser open file option is not available, so we assign ctrl-o to open folder in browser
83628362
// open folder has no shortcut in desktop, as this is not a frequently used workflow
83638363
// and only ever used when the user opens a project once in a while.
8364+
const fileCloseAllShortcut = isDesktop ? "Ctrl-Shift-W" : ""; // Ctrl-Alt-Shift-W` universal shortcut is set in keyboard.json
83648365
const openFileShortcut = isDesktop ? "Ctrl-O" : "";
83658366
const openFolderShortcut = isBrowser ? "Ctrl-O" : "";
83668367

@@ -8406,7 +8407,7 @@ define("command/DefaultMenus", function (require, exports, module) {
84068407
}
84078408
menu.addMenuItem(Commands.FILE_OPEN_FOLDER, openFolderShortcut);
84088409
menu.addMenuItem(Commands.FILE_CLOSE, fileCloseShortcut);
8409-
menu.addMenuItem(Commands.FILE_CLOSE_ALL);
8410+
menu.addMenuItem(Commands.FILE_CLOSE_ALL, fileCloseAllShortcut);
84108411
menu.addMenuDivider();
84118412
menu.addMenuItem(Commands.FILE_SAVE);
84128413
menu.addMenuItem(Commands.FILE_SAVE_ALL);
@@ -8466,8 +8467,8 @@ define("command/DefaultMenus", function (require, exports, module) {
84668467
menu.addMenuItem(Commands.CMD_FIND);
84678468
menu.addMenuItem(Commands.CMD_FIND_NEXT);
84688469
menu.addMenuItem(Commands.CMD_FIND_PREVIOUS);
8469-
menu.addMenuItem(Commands.CMD_FIND_ALL_AND_SELECT);
84708470
menu.addMenuItem(Commands.CMD_ADD_NEXT_MATCH);
8471+
menu.addMenuItem(Commands.CMD_FIND_ALL_AND_SELECT);
84718472
menu.addMenuItem(Commands.CMD_SKIP_CURRENT_MATCH);
84728473
menu.addMenuDivider();
84738474
menu.addMenuItem(Commands.CMD_FIND_IN_FILES);
@@ -9366,6 +9367,10 @@ define("command/KeyBindingManager", function (require, exports, module) {
93669367
(keySplit.length ===3 && keySplit[0] === 'Alt' && keySplit[1] === 'Shift' && isSingleCharAZ(keySplit[2]))){
93679368
console.error(`Key binding '${normalized}' for command '${commandID}' may cause issues. The key combinations starting with 'Alt-<letter>' and 'Alt-Shift-<letter>' are reserved. On macOS, they are used for AltGr internationalization, and on Windows/Linux, they are used for menu navigation shortcuts.`);
93689369
}
9370+
// ctrl-alt-<key> events are allowed in all platforms. In windows ctrl-alt-<key> events are treated as altGr
9371+
// and used for international keyboards. But we have special handling for detecting alt gr key press that
9372+
// accounts for this and disables keybinding manager inwindows on detecting altGr key press.
9373+
// See _detectAltGrKeyDown function in this file.
93699374

93709375
// check for duplicate key bindings
93719376
existing = _keyMap[normalized];
@@ -15911,6 +15916,7 @@ define("document/DocumentManager", function (require, exports, module) {
1591115916

1591215917
if (newDoc) {
1591315918
PreferencesManager._setCurrentLanguage(newDoc.getLanguage().getId());
15919+
newDoc.off("languageChanged.DocumentManager");
1591415920
newDoc.on("languageChanged.DocumentManager", function (e, oldLang, newLang) {
1591515921
PreferencesManager._setCurrentLanguage(newLang.getId());
1591615922
exports.trigger("currentDocumentLanguageChanged", [oldLang, newLang]);
@@ -38735,6 +38741,7 @@ define("features/FindReferencesManager", function (require, exports, module) {
3873538741

3873638742
DocumentManager.getDocumentForPath(newFilePath)
3873738743
.done(function (newDoc) {
38744+
newDoc.off("languageChanged.reference-in-files");
3873838745
newDoc.on("languageChanged.reference-in-files", function () {
3873938746
var changedLanguageId = LanguageManager.getLanguageForPath(newDoc.file.fullPath).getId();
3874038747
setMenuItemStateForLanguage(changedLanguageId);
@@ -48067,6 +48074,18 @@ define("language/CodeInspection", function (require, exports, module) {
4806748074
}
4806848075

4806948076
function _editorVieportChangeHandler(_evt, editor, from, to) {
48077+
if(gutterRegistrationInProgress){
48078+
if(editor.gutterViewportChangeTimer){
48079+
clearTimeout(editor.gutterViewportChangeTimer);
48080+
}
48081+
editor.gutterViewportChangeTimer = setTimeout(()=>{
48082+
const vp = editor.getViewport();
48083+
_editorVieportChangeHandler(_evt, editor, vp.from, vp.to);
48084+
clearTimeout(editor.gutterViewportChangeTimer);
48085+
delete editor.gutterViewportChangeTimer;
48086+
});
48087+
return;
48088+
}
4807048089
_populateDummyGutterElements(editor, from, to);
4807148090
}
4807248091

@@ -48262,6 +48281,8 @@ define("language/CodeInspection", function (require, exports, module) {
4826248281
}
4826348282
}
4826448283

48284+
let gutterRegistrationInProgress = false;
48285+
4826548286
/**
4826648287
* The provider is passed the text of the file and its fullPath. Providers should not assume
4826748288
* that the file is open (i.e. DocumentManager.getOpenDocumentForPath() may return null) or
@@ -48300,7 +48321,9 @@ define("language/CodeInspection", function (require, exports, module) {
4830048321

4830148322
if(!_registeredLanguageIDs.includes(languageId)){
4830248323
_registeredLanguageIDs.push(languageId);
48324+
gutterRegistrationInProgress = true;
4830348325
Editor.unregisterGutter(CODE_INSPECTION_GUTTER);
48326+
gutterRegistrationInProgress = false;
4830448327
Editor.registerGutter(CODE_INSPECTION_GUTTER, CODE_INSPECTION_GUTTER_PRIORITY, _registeredLanguageIDs);
4830548328
}
4830648329

@@ -80071,9 +80094,9 @@ define("nls/root/strings", {
8007180094
"CMD_FIND": "Find",
8007280095
"CMD_FIND_NEXT": "Find Next",
8007380096
"CMD_FIND_PREVIOUS": "Find Previous",
80074-
"CMD_FIND_ALL_AND_SELECT": "Find All and Select",
80075-
"CMD_ADD_NEXT_MATCH": "Add Next Match to Selection",
80076-
"CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Match",
80097+
"CMD_FIND_ALL_AND_SELECT": "Select All Occurrences",
80098+
"CMD_ADD_NEXT_MATCH": "Add Next Occurrence",
80099+
"CMD_SKIP_CURRENT_MATCH": "Skip and Add Next Occurrence",
8007780100
"CMD_FIND_IN_FILES": "Find in Files",
8007880101
"CMD_FIND_IN_SUBTREE": "Find in\u2026",
8007980102
"CMD_REPLACE": "Replace",
@@ -126584,6 +126607,7 @@ define("search/QuickOpen", function (require, exports, module) {
126584126607

126585126608
DocumentManager.getDocumentForPath(newFilePath)
126586126609
.done(function (newDoc) {
126610+
newDoc.off("languageChanged.quickFindDefinition");
126587126611
newDoc.on("languageChanged.quickFindDefinition", function () {
126588126612
var changedLanguageId = LanguageManager.getLanguageForPath(newDoc.file.fullPath).getId();
126589126613
_setMenuItemStateForLanguage(changedLanguageId);
@@ -139255,7 +139279,7 @@ define("view/MainViewManager", function (require, exports, module) {
139255139279

139256139280
// Listen to key Alt-W to toggle between panes
139257139281
CommandManager.register(Strings.CMD_SWITCH_PANE_FOCUS, Commands.CMD_SWITCH_PANE_FOCUS, switchPaneFocus);
139258-
KeyBindingManager.addBinding(Commands.CMD_SWITCH_PANE_FOCUS, {key: 'Alt-P'});
139282+
// no shortcut for switch panes by default as its taken care of by double ctrl click workflow.
139259139283
}
139260139284

139261139285
/**

cacheManifest.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"appConfig.js": "ba0ccde534cf42354452adeefb295130",
3-
"assets/default-project/en.zip": "7288523f15db9a374e16daefb9d267a7",
2+
"appConfig.js": "f07ae9ca49853207ec2cf42e6e621a21",
3+
"assets/default-project/en.zip": "a00e0741f603995bbef6642258ff4dd9",
44
"assets/default-project/en/images/cloud1.svg": "aca7bba84a2237f1c1988caea54a67a9",
55
"assets/default-project/en/images/cloud2.svg": "02880216ac461f1578ac8a18f158ce28",
66
"assets/default-project/en/images/cloud3.svg": "7a78bb29bd895ead8c171001244d9b7d",
@@ -120,7 +120,7 @@
120120
"assets/phoenix-splash/live-preview-error.html": "98b11e5ae0c9341ab1450e029065ac7b",
121121
"assets/phoenix-splash/no-preview.html": "2c51d14109552b59976145fe9ac33236",
122122
"assets/phoenix-splash/styles.css": "6809a039001526eeec64eeef1f0ad807",
123-
"assets/sample-projects/bootstrap-blog.zip": "c5ccb4e922861b7444786e4b80ef7de7",
123+
"assets/sample-projects/bootstrap-blog.zip": "62851245252dd73304d7fb238db3faba",
124124
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo-white.svg": "2e642df55357162ad28519305c8fd4fe",
125125
"assets/sample-projects/bootstrap-blog/assets/brand/bootstrap-logo.svg": "88eef7f3c2bcf988457a0e6d123c3f1d",
126126
"assets/sample-projects/bootstrap-blog/assets/dist/css/bootstrap.min.css": "6d9c6fda1e7087224431cc8068bb998f",
@@ -130,7 +130,7 @@
130130
"assets/sample-projects/bootstrap-blog/blog.rtl.css": "c6c275bf0b804d3dec264ec7fb3d7677",
131131
"assets/sample-projects/bootstrap-blog/index-rtl.html": "506e2d3fd1c4bb3651377144a62d5e82",
132132
"assets/sample-projects/bootstrap-blog/index.html": "dd8824ad3c9520dc0a825176d20eb694",
133-
"assets/sample-projects/dashboard.zip": "c993cdc5c8c2baadc43753df3641b544",
133+
"assets/sample-projects/dashboard.zip": "497c37491c0d560a5f07fe2c610f7bbb",
134134
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo-white.svg": "2e642df55357162ad28519305c8fd4fe",
135135
"assets/sample-projects/dashboard/assets/brand/bootstrap-logo.svg": "88eef7f3c2bcf988457a0e6d123c3f1d",
136136
"assets/sample-projects/dashboard/assets/dist/css/bootstrap.min.css": "6d9c6fda1e7087224431cc8068bb998f",
@@ -142,7 +142,7 @@
142142
"assets/sample-projects/dashboard/index.html": "ddfda6ea9dfc8e12a8dcbbf065c804de",
143143
"assets/sample-projects/dashboard/signin.css": "a71ff2b493f230e0d6585793c2115809",
144144
"assets/sample-projects/dashboard/signin.html": "b108c183dfa7e2da3d88ec79bee79509",
145-
"assets/sample-projects/explore.zip": "f7491d383977bef8576e03fab0322f3a",
145+
"assets/sample-projects/explore.zip": "53e01e9877328cb4a6069c8881320444",
146146
"assets/sample-projects/explore/A-tribute-page.html": "007699e85177db3d1cd87d0d47440b36",
147147
"assets/sample-projects/explore/adjustable-fireworks.html": "706a0995d00d8ae009b5426cf7ee69be",
148148
"assets/sample-projects/explore/ant_colony.html": "d0885229e57caecc83049b50ee98560c",
@@ -232,7 +232,7 @@
232232
"assets/sample-projects/explore/watermelon-pixel.html": "6f6754e8073436bb823807a10a0446ea",
233233
"assets/sample-projects/explore/webmine.html": "9879458a48c757dc6671d408e940da4d",
234234
"assets/sample-projects/explore/whack-a-mole.html": "827f15c53657350b9c898fa27ecf15ac",
235-
"assets/sample-projects/home-pages.zip": "73d4a692cac2ff5dd3a7235e6671b962",
235+
"assets/sample-projects/home-pages.zip": "d4717e75e68146c70e2faa10dfed4e3b",
236236
"assets/sample-projects/home-pages/album/index.html": "df20e4a479659463ab9d3f6b4ca4dbd1",
237237
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo-white.svg": "2e642df55357162ad28519305c8fd4fe",
238238
"assets/sample-projects/home-pages/assets/brand/bootstrap-logo.svg": "88eef7f3c2bcf988457a0e6d123c3f1d",
@@ -244,32 +244,32 @@
244244
"assets/sample-projects/home-pages/carousel/index.html": "fc5bf7b2d8640a2c393f465294210e7c",
245245
"assets/sample-projects/home-pages/cover/cover.css": "3738586a82dd90263617020e7f1db82e",
246246
"assets/sample-projects/home-pages/cover/index.html": "a0ae1a11224672532b3466df93ce0821",
247-
"assets/sample-projects/HTML5.zip": "708675def4932246007018fdfd7c7e74",
247+
"assets/sample-projects/HTML5.zip": "052697989ae930098ac4b7cd64a831fc",
248248
"assets/sample-projects/HTML5/index.html": "ca318e370d63b3e083d3bd63052b8252",
249249
"assets/sample-projects/HTML5/script.js": "47de56d88cd6d866c4f77027128c0dd7",
250250
"assets/sample-projects/HTML5/styles.css": "8c798c8b3bba7e4d49dfe99b4deccd47",
251251
"assets/sample-projects/new-project-list.json": "52493b6373285d18a51a7e0319d812c2",
252252
"assets/sample-projects/zips/bootstrap.zip": "47b3132b5dbf324d6396188cf68ecae1",
253-
"base-config/keyboard.json": "e94cfd0fd5c713e95cb4ceac14157a4d",
254-
"brackets-min.js": "84973401c6ca9d1dc512643e3db812b3",
253+
"base-config/keyboard.json": "397585f99c96c29c2cc45018a517e02e",
254+
"brackets-min.js": "bf6a5763271c8801d356f5281b7b0fd1",
255255
"brackets.config.dist.json": "65a7ad178b006a23115433cead0e3dc4",
256256
"brackets.config.staging.json": "64d4ae88ab3bf0a0841ee76ef036991d",
257257
"brackets.js": "8ba8fe05c48bf1a8eee453a8a0de6227",
258-
"cacheManifest.json": "dd7908a8fa5db9939b8bf8c2c6798505",
258+
"cacheManifest.json": "8513f7a409457af11f3374d6da5ce0cb",
259259
"command/CommandManager.js": "8763fce16883bbef252604330ac3bf49",
260260
"command/Commands.js": "ac838faf36a65270212a0c9d5963f7a5",
261-
"command/DefaultMenus.js": "95ac6ecc14fc1a5f5681d8535df92964",
262-
"command/KeyBindingManager.js": "f29fa18944e26ffd7011db59a7c737e9",
261+
"command/DefaultMenus.js": "8d5db84d57bb18290389b383981e0fc6",
262+
"command/KeyBindingManager.js": "4fb414a7d0297ddf39ae277a15896fdc",
263263
"command/KeyboardOverlayMode.js": "8eb29a228b69fe9e299e88af31a0d541",
264264
"command/Keys.js": "1197df29f8ffa01c62cd2700df9ad216",
265265
"command/Menus.js": "51b23b7a688eb3c99c79976fcef5c5df",
266-
"config.json": "198bae40c1bbdc6b56e1577088b8801f",
266+
"config.json": "19c4ed1bcaabdce9a2473c2bd2c3d16f",
267267
"desktop-metrics.html": "3ce2284286d6de344ebf9834f0957ba6",
268268
"devEnable.html": "5c494d5e246bdb4260557c03b73eea32",
269269
"document/ChangedDocumentTracker.js": "8763dbbd784b9e8a3614a8ee723d5273",
270270
"document/Document.js": "eb760e79fc98a767f350cea658935803",
271271
"document/DocumentCommandHandlers.js": "370c9ec6360764dc0918dc8f91241d0f",
272-
"document/DocumentManager.js": "f69ee9d1b65bc075441fb752814767ab",
272+
"document/DocumentManager.js": "a6183ec6a19f146cd2068071f25b5d85",
273273
"document/InMemoryFile.js": "34c461337dea2e4b5886586a4f929e6e",
274274
"document/TextRange.js": "12463434e5dbacabd457911259a26c52",
275275
"editor/CodeHintList.js": "3f3d0385266adccb7cb6cc7fd0c39e75",
@@ -540,7 +540,7 @@
540540
"extensionsIntegrated/NavigationAndHistory/FileRecovery.js": "83751cc6e14f61805ab699b54ac83c29",
541541
"extensionsIntegrated/NavigationAndHistory/html/recentfiles-template.html": "4df0261347a193464eac1d06dda03c16",
542542
"extensionsIntegrated/NavigationAndHistory/html/recovery-template.html": "2562ccde737ac05007594e4a09315a53",
543-
"extensionsIntegrated/NavigationAndHistory/keyboard.json": "294e56b46381f5e31d70d54ef3a86bca",
543+
"extensionsIntegrated/NavigationAndHistory/keyboard.json": "6f84525d0cbfd72096391fb8afeb4f34",
544544
"extensionsIntegrated/NavigationAndHistory/main.js": "2306ba76857f5c319a16526c745b255c",
545545
"extensionsIntegrated/NavigationAndHistory/NavigationProvider.js": "865ed5e1b397d55b2deb390ec5d2b85b",
546546
"extensionsIntegrated/NoDistractions/main.js": "7a7d3b2cc37edc1971c3f5ee9b7c67d9",
@@ -573,7 +573,7 @@
573573
"extensionsIntegrated/RecentProjects/main.js": "ba3e6fa1f0fed9031867c1b30e3ead17",
574574
"extensionsIntegrated/RemoteFileAdapter/main.js": "2f1d017ea5dfe1c7d03dec1de535814f",
575575
"features/BeautificationManager.js": "7366f431435de92374808f6bcda15403",
576-
"features/FindReferencesManager.js": "f3d8e8833736a3a978956e54c6df8a8f",
576+
"features/FindReferencesManager.js": "456d1d8f84230b432a631ce49ea7abc2",
577577
"features/JumpToDefManager.js": "e58357b95d67c8893b51a3c1d8c8290c",
578578
"features/NewFileContentManager.js": "bf0494d2b4f44670b340dbdbad2388a4",
579579
"features/ParameterHintsManager.js": "f884165c7245e20b8325974fb84e99c3",
@@ -626,7 +626,7 @@
626626
"JSUtils/Session.js": "5687c64fe45b7922a522c6bc0f13ee5f",
627627
"JSUtils/worker/tern-main.js": "e82f8e655622482c2cacdb38135f479a",
628628
"JSUtils/worker/testTern.js": "92963da9a0575a7a4d8d899290745155",
629-
"language/CodeInspection.js": "3350091d511b1820c31838cbcbcbb35b",
629+
"language/CodeInspection.js": "85bde43be1917a27dad42ee9dba87e7c",
630630
"language/CSSUtils.js": "f0b9b32893dbfb3ba0d3429bc7303ce8",
631631
"language/HTMLDOMDiff.js": "9c8e1355180369aa9c7e8e61e6bc61fc",
632632
"language/HTMLSimpleDOM.js": "159c1a993827fece6264201b23585c4c",
@@ -803,7 +803,7 @@
803803
"nls/ro/lastTranslatedLocale.json": "9f7bb7e5e89d123404116fd1c3afb7ab",
804804
"nls/ro/strings.js": "88c8d18031a480f33391134f9ea366f7",
805805
"nls/root/strings-app.js": "37fb6ea3db612dd5260ce00202d7c364",
806-
"nls/root/strings.js": "3d80ed0e7126215191ed71bf3ae01f1a",
806+
"nls/root/strings.js": "cb8df9e63b40cfaf5072fd8f097ef292",
807807
"nls/root/urls.js": "2c5e2a12c3412c1efe22c686aa78bce0",
808808
"nls/ru/expertTranslations.json": "89cf849840b48e07ca9397092df1d15e",
809809
"nls/ru/lastTranslated.json": "aad19dd7b5d206b7f3851563cf0cd832",
@@ -885,7 +885,7 @@
885885
"search/FindInFilesUI.js": "3613ea8e6ec1a87627134552addf445e",
886886
"search/FindReplace.js": "524e9faeb730c8e9c8da6945f3d771c0",
887887
"search/FindUtils.js": "61e6b34e129f3dceeb2fedc2611fa438",
888-
"search/QuickOpen.js": "f3a5409c971c4a5062959a966753ea31",
888+
"search/QuickOpen.js": "fbfcd632fc25348ca460edf5f5de5b62",
889889
"search/QuickOpenHelper.js": "6119685fb25bd5147bf5b712b1f3c0ca",
890890
"search/QuickSearchField.js": "b95dda90513356c4d7374ede53dfd924",
891891
"search/ScrollTrackMarkers.js": "4a5769562eae936b746543622914ef4c",
@@ -1716,7 +1716,7 @@
17161716
"verify-dependencies-loaded.js": "dd3cbd2c5249fd731b831a4207b48730",
17171717
"view/fontrules/font-based-rules.less": "1d2465f334b6afa88b77b64b651f124b",
17181718
"view/MainViewFactory.js": "a8c9ac715cde0b1267384d59d8f1bb83",
1719-
"view/MainViewManager.js": "f975528d26bb8936bb2e24953c5408a2",
1719+
"view/MainViewManager.js": "203f6c4b9c320837cff972f3b0a6f068",
17201720
"view/Pane.js": "44f2392da0fbbe9cae658449be1cbcd6",
17211721
"view/PanelView.js": "04314eb88e13719a1f5c014849aeb19b",
17221722
"view/PluginPanelView.js": "cb846bcef9aa336762f6c004a32fc095",

0 commit comments

Comments
 (0)