@jupyterlab/help-extension 4.6.0-rc.1 → 4.6.1
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/lib/index.js
CHANGED
|
@@ -304,11 +304,11 @@ const resources = {
|
|
|
304
304
|
const resources = [
|
|
305
305
|
{
|
|
306
306
|
text: trans.__('JupyterLab Reference'),
|
|
307
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
307
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
text: trans.__('JupyterLab FAQ'),
|
|
311
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
311
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
text: trans.__('Jupyter Reference'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "JupyterLab - Help Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/application": "^4.6.
|
|
41
|
-
"@jupyterlab/apputils": "^4.7.
|
|
42
|
-
"@jupyterlab/coreutils": "^6.6.
|
|
43
|
-
"@jupyterlab/mainmenu": "^4.6.
|
|
44
|
-
"@jupyterlab/services": "^7.6.
|
|
45
|
-
"@jupyterlab/translation": "^4.6.
|
|
46
|
-
"@jupyterlab/ui-components": "^4.6.
|
|
40
|
+
"@jupyterlab/application": "^4.6.1",
|
|
41
|
+
"@jupyterlab/apputils": "^4.7.1",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.6.1",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.6.1",
|
|
44
|
+
"@jupyterlab/services": "^7.6.1",
|
|
45
|
+
"@jupyterlab/translation": "^4.6.1",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.6.1",
|
|
47
47
|
"@lumino/widgets": "^2.8.0",
|
|
48
48
|
"react": "^18.2.0"
|
|
49
49
|
},
|
package/src/index.tsx
CHANGED
|
@@ -410,11 +410,11 @@ const resources: JupyterFrontEndPlugin<void> = {
|
|
|
410
410
|
const resources = [
|
|
411
411
|
{
|
|
412
412
|
text: trans.__('JupyterLab Reference'),
|
|
413
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
413
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
text: trans.__('JupyterLab FAQ'),
|
|
417
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
417
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
418
418
|
},
|
|
419
419
|
{
|
|
420
420
|
text: trans.__('Jupyter Reference'),
|