@jupyterlab/help-extension 4.5.0 → 4.5.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
|
@@ -288,11 +288,11 @@ const resources = {
|
|
|
288
288
|
const resources = [
|
|
289
289
|
{
|
|
290
290
|
text: trans.__('JupyterLab Reference'),
|
|
291
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
291
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
294
|
text: trans.__('JupyterLab FAQ'),
|
|
295
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
295
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
text: trans.__('Jupyter Reference'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.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.5.
|
|
41
|
-
"@jupyterlab/apputils": "^4.6.
|
|
42
|
-
"@jupyterlab/coreutils": "^6.5.
|
|
43
|
-
"@jupyterlab/mainmenu": "^4.5.
|
|
44
|
-
"@jupyterlab/services": "^7.5.
|
|
45
|
-
"@jupyterlab/translation": "^4.5.
|
|
46
|
-
"@jupyterlab/ui-components": "^4.5.
|
|
40
|
+
"@jupyterlab/application": "^4.5.1",
|
|
41
|
+
"@jupyterlab/apputils": "^4.6.1",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.5.1",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.5.1",
|
|
44
|
+
"@jupyterlab/services": "^7.5.1",
|
|
45
|
+
"@jupyterlab/translation": "^4.5.1",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.5.1",
|
|
47
47
|
"@lumino/widgets": "^2.7.2",
|
|
48
48
|
"react": "^18.2.0"
|
|
49
49
|
},
|
package/src/index.tsx
CHANGED
|
@@ -394,11 +394,11 @@ const resources: JupyterFrontEndPlugin<void> = {
|
|
|
394
394
|
const resources = [
|
|
395
395
|
{
|
|
396
396
|
text: trans.__('JupyterLab Reference'),
|
|
397
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
397
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
text: trans.__('JupyterLab FAQ'),
|
|
401
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
401
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
text: trans.__('Jupyter Reference'),
|