Releases: joshburnett/addcopyfighandler
Releases · joshburnett/addcopyfighandler
v3.2.4
- Fix issue when using
Agg
backend, which doesn't support get_window_title().
v3.2.3
v3.2.2
Thanks to @rgw5267 for fixing a bug related to the event handler being registered multiple times.
v3.2.1
- Made backend checks case-insensitive due to undocumented changes in matplotlib 3.9.
2021-03-28
Now with Linux support!
- The figure will be copied to the clipboard as a PNG, regardless of
matplotlib.rcParams['savefig.format']
. - Requires either Qt or GTK libraries for clipboard interaction. Automatically detects which is being used from
matplotlib.get_backend()
.- Qt support requires
PyQt5
orPySide2
. - GTK support requires
pycairo
,PyGObject
andPIL
/pillow
to be installed. - While Qt and GTK are both supported, they each have different requirements. As such, those requirements will not be automatically installed along with the
addcopyfighandler
module.
- Qt support requires
Improved application compatibility on Windows (optionally uses Pillow)
- If Pillow is installed, all non-SVG format specifiers will be overridden and the figure will be copied to the clipboard as a Device-Independant Bitmap.
- If Pillow is not installed, the supported format specifiers are
'png'
,'jpg'
,'jpeg'
and'svg'
. All other format specifiers will be overridden and the figure will be copied to the clipboard as PNG data.
SVG support on Windows
- If
matplotlib.rcParams['savefig.format']
is'svg'
, the figure will be copied to the clipboard as an SVG. - Alas, SVG output is not currently supported on Linux. Pull requests that enable SVG support there would be welcomed.
2018-11-27 (yep, again)
- Fixed an issue where some matplotlib installs will default to TkAgg backend, which this module doesn't support. We now force the backend to switch to Qt5Agg or At4Agg when loading this module, saving the user from having to manually specify one of the Qt backends in every analysis.
2018-11-27
- Improve setup.py: remove need for importing module, add proper installation dependencies
- Change readme from ReST to Markdown