Ports to release/1.13 for 10/21 (#7879)

* Add (dummy) IPyWidgets Renderer (#7849)

* Updates to package.json to show books on stable (#7836)

* Updates to package.json to show books on stable

* remove notebookQuality context key

* renamed untitiled to unsaved

* fix the wizard opened twice issue #7866 (#7869)

* fix a typo (#7871)
This commit is contained in:
Karl Burtram
2019-10-21 23:07:32 -07:00
committed by GitHub
parent 143b70c6a8
commit 05a53af085
12 changed files with 78 additions and 15 deletions

View File

@@ -155,6 +155,14 @@
"dark": "resources/dark/search_inverse.svg",
"light": "resources/light/search.svg"
}
},
{
"command": "notebook.command.searchUntitledBook",
"title": "%title.searchJupyterBook%",
"icon": {
"dark": "resources/dark/search_inverse.svg",
"light": "resources/light/search.svg"
}
}
],
"languages": [
@@ -235,7 +243,7 @@
},
{
"command": "books.sqlserver2019",
"when": "sqlserver2019 && notebookQuality != stable"
"when": "sqlserver2019"
}
],
"touchBar": [
@@ -270,12 +278,17 @@
"view/item/context": [
{
"command": "notebook.command.searchBook",
"when": "view =~ /^(untitledBookTreeView|bookTreeView)$/ && viewItem =~ /^(untitledBook|savedBook)$/ && notebookQuality != stable",
"when": "view == bookTreeView && viewItem == savedBook",
"group": "inline"
},
{
"command": "notebook.command.searchUntitledBook",
"when": "view == unsavedBookTreeView && viewItem == unsavedBook && unsavedBooks",
"group": "inline"
},
{
"command": "notebook.command.saveBook",
"when": "view == untitledBookTreeView && viewItem == untitledBook && untitledBooks && notebookQuality != stable",
"when": "view == unsavedBookTreeView && viewItem == unsavedBook && unsavedBooks",
"group": "inline"
}
],
@@ -397,8 +410,8 @@
"name": "%title.SavedBooks%"
},
{
"id": "untitledBookTreeView",
"name": "%title.UntitledBooks%"
"id": "unsavedBookTreeView",
"name": "%title.UnsavedBooks%"
}
]
}