OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@Common.AppProvider", | 4 "type": "@Common.AppProvider", |
5 "className": "Main.SimpleAppProvider", | 5 "className": "Main.SimpleAppProvider", |
6 "order": 10 | 6 "order": 10 |
7 }, | 7 }, |
8 { | 8 { |
9 "type": "@UI.ContextMenu.Provider", | 9 "type": "@UI.ContextMenu.Provider", |
10 "contextTypes": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw
orkRequest"], | 10 "contextTypes": ["Workspace.UISourceCode", "SDK.Resource", "SDK.Netw
orkRequest"], |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 ] | 258 ] |
259 }, | 259 }, |
260 { | 260 { |
261 "type": "setting", | 261 "type": "setting", |
262 "category": "Appearance", | 262 "category": "Appearance", |
263 "title": "Theme:", | 263 "title": "Theme:", |
264 "settingName": "uiTheme", | 264 "settingName": "uiTheme", |
265 "settingType": "enum", | 265 "settingType": "enum", |
266 "defaultValue": "default", | 266 "defaultValue": "default", |
267 "options": [ | 267 "options": [ |
268 { "title": "Switch to default theme", "text": "Default", "value"
: "default" }, | 268 { "title": "Switch to light theme", "text": "Light", "value": "d
efault" }, |
269 { "title": "Switch to dark theme", "text": "Dark", "value": "dar
k" } | 269 { "title": "Switch to dark theme", "text": "Dark", "value": "dar
k" } |
270 ] | 270 ], |
| 271 "tags": "dark, light" |
271 }, | 272 }, |
272 { | 273 { |
273 "type": "setting", | 274 "type": "setting", |
274 "category": "Appearance", | 275 "category": "Appearance", |
275 "title": "Panel layout:", | 276 "title": "Panel layout:", |
276 "settingName": "sidebarPosition", | 277 "settingName": "sidebarPosition", |
277 "settingType": "enum", | 278 "settingType": "enum", |
278 "defaultValue": "auto", | 279 "defaultValue": "auto", |
279 "options": [ | 280 "options": [ |
280 { "title": "Use horizontal panel layout", "text": "horizontal",
"value": "bottom" }, | 281 { "title": "Use horizontal panel layout", "text": "horizontal",
"value": "bottom" }, |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 "OverlayController.js", | 366 "OverlayController.js", |
366 "Main.js" | 367 "Main.js" |
367 ], | 368 ], |
368 "resources": [ | 369 "resources": [ |
369 "errorWarningCounter.css", | 370 "errorWarningCounter.css", |
370 "remoteDebuggingTerminatedScreen.css", | 371 "remoteDebuggingTerminatedScreen.css", |
371 "renderingOptions.css", | 372 "renderingOptions.css", |
372 "targetCrashedScreen.css" | 373 "targetCrashedScreen.css" |
373 ] | 374 ] |
374 } | 375 } |
OLD | NEW |