dsh-better-workspace 0.4.3 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dsh.plugin.json +1 -1
- package/package.json +1 -1
- package/src/client.js +5 -2
package/dsh.plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "dsh-external/dsh-better-workspace",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"description": "侧边栏工作区层级树:名称中的 / 即虚拟分组(web/前端 · web/后端),添加工作区的目录流附所属分组弹窗,重命名即时重排层级,可新建空分组。Hierarchy tree for the DSH sidebar workspace list.",
|
|
6
6
|
"engines": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-better-workspace",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "DSH web plugin: a hierarchical workspace tree for the sidebar. Workspace titles containing \"/\" group into virtual folders (web/前端 · web/后端); the add-workspace directory flow gains a parent-group popup; renames re-derive the tree; a new-folder button creates empty levels.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
package/src/client.js
CHANGED
|
@@ -2000,14 +2000,17 @@ window.__ModuleLoader__.load({
|
|
|
2000
2000
|
}
|
|
2001
2001
|
|
|
2002
2002
|
// 1+2. the two directory-flow holes (hero picker, shipped sidebar browser).
|
|
2003
|
+
// Since dsh 0.1.2-alpha.1 the shell's own directory picker occupies each
|
|
2004
|
+
// hole at priority 0, so shadow at -1 (ascending, lowest renders) exactly
|
|
2005
|
+
// like the sidebar.workspaces browser below.
|
|
2003
2006
|
slots.inject('conversation.hero.workspace.directoryFlow', guarded(
|
|
2004
2007
|
'conversation.hero.workspace.directoryFlow',
|
|
2005
|
-
{ name: 'conversation.hero.workspace.directoryFlow', inject: flowInjected('conversation.hero.workspace.directoryFlow'), locale: NS },
|
|
2008
|
+
{ name: 'conversation.hero.workspace.directoryFlow', inject: flowInjected('conversation.hero.workspace.directoryFlow'), locale: NS, priority: -1 },
|
|
2006
2009
|
BetterFlow,
|
|
2007
2010
|
))
|
|
2008
2011
|
slots.inject('sidebar.workspaces.directoryFlow', guarded(
|
|
2009
2012
|
'sidebar.workspaces.directoryFlow',
|
|
2010
|
-
{ name: 'sidebar.workspaces.directoryFlow', inject: flowInjected('sidebar.workspaces.directoryFlow'), locale: NS },
|
|
2013
|
+
{ name: 'sidebar.workspaces.directoryFlow', inject: flowInjected('sidebar.workspaces.directoryFlow'), locale: NS, priority: -1 },
|
|
2011
2014
|
BetterFlow,
|
|
2012
2015
|
))
|
|
2013
2016
|
|