You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,33 @@ readthedocs stuff gets all the shiny link goodness. Thanks!
18
18
Unreleased (aka. GitHub master)
19
19
-------------------------------
20
20
21
-
This is where each new PR to the project should add a summary of its changes,
22
-
which makes it much easier to fill in each release's changelog :)
21
+
0.6.0
22
+
-----
23
+
- Fix CI
24
+
- Add license.txt in setup.cfg#
25
+
- Fix Readme
26
+
27
+
0.5.3
28
+
-----
29
+
30
+
- Replace `template_path` with `extra_template_paths`[#1532](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1532). Nbconvert 6.0 replaced `template_path` with `extra_template_paths` (see https://nbconvert.readthedocs.io/en/latest/changelog.html#significant-changes). This change in Nbconvert 6.0 causes errors in jupyter_latex_envs and in jupyter_contrib_nbextensions (see [#1529](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1529).
31
+
- Update `install_requires` list in `setup.py` with 'nbconvert >=6.0'
32
+
- Drop support for python < 3.6
33
+
-[toc2] fix for disappearing sidebar in static html_toc export [#1548](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1548)
34
+
- Fix Extensions Not Loading for Large Notebooks [#1499](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1499)
35
+
- Support non-live notebook such as nbconvert output [#1535](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1535)
36
+
37
+
0.5.1
38
+
-----
39
+
40
+
- Fix for navigation hotkeys [#1378](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1378)
41
+
-`gist_it` Making github endpoint configurable to support publishing gists to Github Enterprise [#1364](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1364)
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
3
3
We are super happy that you intend to contribute to the nbextensions! You can discuss improvements in issues and implement them in pull requests.
4
4
5
+
Because this is a volunteer effort, we cannot provide support for all of the extensions.
6
+
So if you contribute a new extension, please stick around and help others using it.
7
+
5
8
## Create an issue
6
9
7
10
Do not hesitate to open up an issue, you can discuss bugs, improvements or new extensions in them. Creating an issue is a good starting point for code contributions. The community can support you with experience of similar extensions, pros and cons, what to look for etc.
Copy file name to clipboardExpand all lines: README.md
+17-7Lines changed: 17 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
Jupyter notebook extensions
2
-
===========================
2
+
=============================
3
3
4
4
[](https://gitter.im/ipython-contrib/jupyter_contrib_nbextensions?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -209,7 +216,10 @@ configuration options are presented.
209
216
For complex or customized installation scenarios, please look at the
210
217
documentation for installing notebook extensions, server extensions, nbconvert
211
218
pre/postprocessors and templates on the [Jupyter homepage](https://jupyter.org).
212
-
Most nbextensions here should work fine with jupyterhub (because jupyterhub spawns regular notebook servers for each individual user), but won't work with jupyterlab (because the jupyterlab javascript framework is different to notebook's, and still rapidly changing under active development).
219
+
Most nbextensions here should work fine with JupyterHub (because JupyterHub spawns
220
+
regular notebook servers for each individual user), but won't work with JupyterLab
221
+
(because the Javascript framework of JupyterLab is different from the notebook's, and
222
+
is still rapidly changing under active development).
213
223
214
224
See also [installing Jupyter](https://jupyter.readthedocs.io/en/latest/install.html)
0 commit comments