| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "console", | 6 "id": "console", |
| 7 "title": "Console", | 7 "title": "Console", |
| 8 "order": 20, | 8 "order": 20, |
| 9 "className": "Console.ConsolePanel" | 9 "className": "Console.ConsolePanel" |
| 10 }, | 10 }, |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "type": "setting", | 99 "type": "setting", |
| 100 "category": "Console", | 100 "category": "Console", |
| 101 "title": "Log XMLHttpRequests", | 101 "title": "Log XMLHttpRequests", |
| 102 "settingName": "monitoringXHREnabled", | 102 "settingName": "monitoringXHREnabled", |
| 103 "settingType": "boolean", | 103 "settingType": "boolean", |
| 104 "defaultValue": false | 104 "defaultValue": false |
| 105 }, | 105 }, |
| 106 { | 106 { |
| 107 "type": "setting", | 107 "type": "setting", |
| 108 "category": "Console", | 108 "category": "Console", |
| 109 "title": "Show timestamps", | 109 "title": "Timestamps:", |
| 110 "settingName": "consoleTimestampsEnabled", | 110 "settingName": "consoleTimestampFormat", |
| 111 "settingType": "boolean", | 111 "settingType": "enum", |
| 112 "defaultValue": false, | 112 "defaultValue": "none", |
| 113 "options": [ | 113 "options": [ |
| 114 { | 114 { |
| 115 "value": true, | 115 "title": "Hide timestamps", |
| 116 "title": "Show timestamps" | 116 "text": "None", |
| 117 "value": "none" |
| 117 }, | 118 }, |
| 118 { | 119 { |
| 119 "value": false, | 120 "title": "Full (yyyy-MM-dd HH:mm:ss.fff)", |
| 120 "title": "Hide timestamps" | 121 "text": "Full", |
| 122 "value": "full" |
| 123 }, |
| 124 { |
| 125 "title": "Short (HH:mm:ss.fff)", |
| 126 "text": "Short", |
| 127 "value": "short" |
| 121 } | 128 } |
| 122 ] | 129 ] |
| 123 }, | 130 }, |
| 124 { | 131 { |
| 125 "type": "setting", | 132 "type": "setting", |
| 126 "category": "Console", | 133 "category": "Console", |
| 127 "title": "Autocomplete from history", | 134 "title": "Autocomplete from history", |
| 128 "settingName": "consoleHistoryAutocomplete", | 135 "settingName": "consoleHistoryAutocomplete", |
| 129 "settingType": "boolean", | 136 "settingType": "boolean", |
| 130 "defaultValue": true, | 137 "defaultValue": true, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 149 "ConsoleViewport.js", | 156 "ConsoleViewport.js", |
| 150 "ConsoleViewMessage.js", | 157 "ConsoleViewMessage.js", |
| 151 "ConsolePrompt.js", | 158 "ConsolePrompt.js", |
| 152 "ConsoleView.js", | 159 "ConsoleView.js", |
| 153 "ConsolePanel.js" | 160 "ConsolePanel.js" |
| 154 ], | 161 ], |
| 155 "resources": [ | 162 "resources": [ |
| 156 "consoleView.css" | 163 "consoleView.css" |
| 157 ] | 164 ] |
| 158 } | 165 } |
| OLD | NEW |