@jupyterlab/help-extension 4.4.1 → 4.4.2
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 +9 -9
- package/src/index.tsx +2 -2
package/lib/index.js
CHANGED
|
@@ -238,11 +238,11 @@ const resources = {
|
|
|
238
238
|
const resources = [
|
|
239
239
|
{
|
|
240
240
|
text: trans.__('JupyterLab Reference'),
|
|
241
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
241
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
text: trans.__('JupyterLab FAQ'),
|
|
245
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
245
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
text: trans.__('Jupyter Reference'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "JupyterLab - Help Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"watch": "tsc -b --watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@jupyterlab/application": "^4.4.
|
|
41
|
-
"@jupyterlab/apputils": "^4.5.
|
|
42
|
-
"@jupyterlab/coreutils": "^6.4.
|
|
43
|
-
"@jupyterlab/mainmenu": "^4.4.
|
|
44
|
-
"@jupyterlab/services": "^7.4.
|
|
45
|
-
"@jupyterlab/translation": "^4.4.
|
|
46
|
-
"@jupyterlab/ui-components": "^4.4.
|
|
47
|
-
"@lumino/widgets": "^2.7.
|
|
40
|
+
"@jupyterlab/application": "^4.4.2",
|
|
41
|
+
"@jupyterlab/apputils": "^4.5.2",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.4.2",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.4.2",
|
|
44
|
+
"@jupyterlab/services": "^7.4.2",
|
|
45
|
+
"@jupyterlab/translation": "^4.4.2",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.4.2",
|
|
47
|
+
"@lumino/widgets": "^2.7.1",
|
|
48
48
|
"react": "^18.2.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
package/src/index.tsx
CHANGED
|
@@ -344,11 +344,11 @@ const resources: JupyterFrontEndPlugin<void> = {
|
|
|
344
344
|
const resources = [
|
|
345
345
|
{
|
|
346
346
|
text: trans.__('JupyterLab Reference'),
|
|
347
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
347
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/'
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
350
|
text: trans.__('JupyterLab FAQ'),
|
|
351
|
-
url: 'https://jupyterlab.readthedocs.io/en/
|
|
351
|
+
url: 'https://jupyterlab.readthedocs.io/en/stable/getting_started/faq.html'
|
|
352
352
|
},
|
|
353
353
|
{
|
|
354
354
|
text: trans.__('Jupyter Reference'),
|