@jupyterlab/help-extension 4.0.2 → 4.0.4
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/lib/index.js +2 -2
- package/package.json +8 -8
- package/src/index.tsx +2 -2
- package/style/index.css +0 -1
package/lib/index.js
CHANGED
|
@@ -131,11 +131,11 @@ const resources = {
|
|
|
131
131
|
const resources = [
|
|
132
132
|
{
|
|
133
133
|
text: trans.__('JupyterLab Reference'),
|
|
134
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
134
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
text: trans.__('JupyterLab FAQ'),
|
|
138
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
138
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
text: trans.__('Jupyter Reference'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "JupyterLab - Help Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"watch": "tsc -b --watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@jupyterlab/application": "^4.0.
|
|
42
|
-
"@jupyterlab/apputils": "^4.1.
|
|
43
|
-
"@jupyterlab/coreutils": "^6.0.
|
|
44
|
-
"@jupyterlab/mainmenu": "^4.0.
|
|
45
|
-
"@jupyterlab/services": "^7.0.
|
|
46
|
-
"@jupyterlab/translation": "^4.0.
|
|
47
|
-
"@jupyterlab/ui-components": "^4.0.
|
|
41
|
+
"@jupyterlab/application": "^4.0.4",
|
|
42
|
+
"@jupyterlab/apputils": "^4.1.4",
|
|
43
|
+
"@jupyterlab/coreutils": "^6.0.4",
|
|
44
|
+
"@jupyterlab/mainmenu": "^4.0.4",
|
|
45
|
+
"@jupyterlab/services": "^7.0.4",
|
|
46
|
+
"@jupyterlab/translation": "^4.0.4",
|
|
47
|
+
"@jupyterlab/ui-components": "^4.0.4",
|
|
48
48
|
"@lumino/coreutils": "^2.1.1",
|
|
49
49
|
"@lumino/signaling": "^2.1.1",
|
|
50
50
|
"@lumino/virtualdom": "^2.0.0",
|
package/src/index.tsx
CHANGED
|
@@ -221,11 +221,11 @@ const resources: JupyterFrontEndPlugin<void> = {
|
|
|
221
221
|
const resources = [
|
|
222
222
|
{
|
|
223
223
|
text: trans.__('JupyterLab Reference'),
|
|
224
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
224
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
225
225
|
},
|
|
226
226
|
{
|
|
227
227
|
text: trans.__('JupyterLab FAQ'),
|
|
228
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
228
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
231
|
text: trans.__('Jupyter Reference'),
|