@jupyterlab/help-extension 4.6.3 → 4.6.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 +1 -1
- package/package.json +8 -8
- package/src/index.tsx +1 -1
package/lib/index.js
CHANGED
|
@@ -133,7 +133,7 @@ const about = {
|
|
|
133
133
|
const externalLinks = (React.createElement("span", { className: "jp-About-externalLinks" },
|
|
134
134
|
React.createElement("a", { href: contributorsURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('CONTRIBUTOR LIST')),
|
|
135
135
|
React.createElement("a", { href: jupyterURL, target: "_blank", rel: "noopener noreferrer", className: "jp-Button-flat" }, trans.__('ABOUT PROJECT JUPYTER'))));
|
|
136
|
-
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© %1-%2 Project Jupyter Contributors', 2015,
|
|
136
|
+
const copyright = (React.createElement("span", { className: "jp-About-copyright" }, trans.__('© %1-%2 Project Jupyter Contributors', 2015, 2026)));
|
|
137
137
|
const body = (React.createElement("div", { className: "jp-About-body" },
|
|
138
138
|
externalLinks,
|
|
139
139
|
copyright));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/help-extension",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.4",
|
|
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.4",
|
|
41
|
+
"@jupyterlab/apputils": "^4.7.4",
|
|
42
|
+
"@jupyterlab/coreutils": "^6.6.4",
|
|
43
|
+
"@jupyterlab/mainmenu": "^4.6.4",
|
|
44
|
+
"@jupyterlab/services": "^7.6.4",
|
|
45
|
+
"@jupyterlab/translation": "^4.6.4",
|
|
46
|
+
"@jupyterlab/ui-components": "^4.6.4",
|
|
47
47
|
"@lumino/widgets": "^2.8.0",
|
|
48
48
|
"react": "^18.2.0"
|
|
49
49
|
},
|
package/src/index.tsx
CHANGED
|
@@ -205,7 +205,7 @@ const about: JupyterFrontEndPlugin<void> = {
|
|
|
205
205
|
);
|
|
206
206
|
const copyright = (
|
|
207
207
|
<span className="jp-About-copyright">
|
|
208
|
-
{trans.__('© %1-%2 Project Jupyter Contributors', 2015,
|
|
208
|
+
{trans.__('© %1-%2 Project Jupyter Contributors', 2015, 2026)}
|
|
209
209
|
</span>
|
|
210
210
|
);
|
|
211
211
|
const body = (
|