File tree Expand file tree Collapse file tree
electron/mapi/manager/window Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33- 修复:插件管理左侧溢出样式异常问题
44- 优化:插件发布错误提醒增加错误码
5+ - 优化:打开开发者调试默认为激活状态
56
67## v0.2.0
78
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ export const ManagerWindow = {
282282 } else {
283283 mainWindowView . webContents . openDevTools ( {
284284 mode : 'detach' ,
285- activate : false ,
285+ activate : true ,
286286 title : `MainPluginView` ,
287287 } )
288288 }
@@ -494,7 +494,7 @@ export const ManagerWindow = {
494494 async openDetachPluginDevTools ( view : BrowserView , option ?: { } ) {
495495 view . webContents . openDevTools ( {
496496 mode : 'detach' ,
497- activate : false ,
497+ activate : true ,
498498 title : `DetachView.${ view . _plugin . name } ` ,
499499 } )
500500 }
Original file line number Diff line number Diff line change 240240 },
241241 "keepCodeDevTools" : {
242242 "type" : " boolean" ,
243- "description" : " 是否在code执行完成后保留开发者窗口(便于调试) "
243+ "description" : " 插件是否在code执行完成后保留开发者窗口 "
244244 },
245245 "showFastPanelDevTools" : {
246246 "type" : " boolean" ,
247- "description" : " 是否在view中显示开发者窗口(便于调试) "
247+ "description" : " 是否在快捷面板渲染view时显示开发者窗口 "
248248 }
249249 }
250250 },
You can’t perform that action at this time.
0 commit comments