Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9133153
Release 0.3.1
SylvainCorlay Jul 4, 2019
61e796a
Make use of CSS variables
SylvainCorlay Jul 4, 2019
6a46a63
Merge pull request #114 from SylvainCorlay/update-ipywidgets-7.5
SylvainCorlay Jul 4, 2019
8c052b8
Release 0.3.2
SylvainCorlay Jul 4, 2019
bbd66f4
Fix rubberband on Firefox
martinRenou Jul 5, 2019
e715219
Merge pull request #120 from martinRenou/fix_rubberband_firefox
SylvainCorlay Jul 5, 2019
cc54ca4
Fixup jlab layout
SylvainCorlay Jul 5, 2019
8b15366
Merge pull request #122 from SylvainCorlay/fixup-jlab-layout
martinRenou Jul 5, 2019
089e820
Release 0.3.3
martinRenou Jul 5, 2019
6208f88
Bump lodash from 4.17.11 to 4.17.13 in /js
dependabot[bot] Oct 21, 2019
d6995ee
Bump mixin-deep from 1.3.1 to 1.3.2 in /js
dependabot[bot] Oct 21, 2019
81a4916
Prevent the context menu from opening on right click.
kboone Oct 24, 2019
bd36db0
Rate limit text updates
kboone Oct 24, 2019
cf92ea9
Merge pull request #146 from kboone/rate_limit_text_update
SylvainCorlay Oct 24, 2019
9a6a93f
Merge pull request #145 from kboone/fix-right-click
SylvainCorlay Oct 24, 2019
aac46a7
Change to "notebook"-like behavior
kboone Oct 25, 2019
18157b0
Sync the widget layout interface with matplotlib
kboone Oct 30, 2019
a688ece
Only allow resizes after the original matplotlib figure has been
kboone Oct 30, 2019
28e3bf0
Change the rate limiting to 60 fps.
kboone Oct 30, 2019
5f613f8
Merge pull request #149 from kboone/rate_limit_text_update
SylvainCorlay Oct 30, 2019
778a747
Merge branch 'master' of github.com:matplotlib/jupyter-matplotlib int…
kboone Oct 30, 2019
5eeca95
Merge pull request #147 from kboone/fix-full-width
SylvainCorlay Dec 16, 2019
ed88756
Merge pull request #141 from matplotlib/dependabot/npm_and_yarn/js/lo…
SylvainCorlay Dec 16, 2019
2c81666
Merge pull request #142 from matplotlib/dependabot/npm_and_yarn/js/mi…
SylvainCorlay Dec 17, 2019
1615e84
Release 0.4.0
SylvainCorlay Dec 17, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ channels:
dependencies:
- numpy
- matplotlib-base>=2.2.2
- ipympl=0.3.0
- ipympl=0.4.0
2 changes: 1 addition & 1 deletion ipympl/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 3, 0)
version_info = (0, 4, 0)
__version__ = '.'.join(map(str, version_info))
201 changes: 97 additions & 104 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-matplotlib",
"version": "0.3.0",
"version": "0.5.0",
"description": "Matplotlib Jupyter Interactive Widget",
"author": "Matplotlib Development team",
"license": "BSD-3-Clause",
Expand All @@ -27,7 +27,7 @@
"webpack": "^3.5.5"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.0 || ^2.0.0",
"@jupyter-widgets/base": "^2.0.0",
"css-loader": "^3.0.0",
"lodash": "^4.17.4",
"style-loader": "^0.23.1"
Expand Down
Loading