Skip to content

Releases: joshburnett/addcopyfighandler

v3.2.4

06 Sep 19:05
Compare
Choose a tag to compare

v3.2.3

03 Sep 13:46
Compare
Choose a tag to compare

v3.2.2

24 Jun 21:51
0fa6d6b
Compare
Choose a tag to compare

Thanks to @rgw5267 for fixing a bug related to the event handler being registered multiple times.

v3.2.1

13 Jun 09:59
Compare
Choose a tag to compare
  • Made backend checks case-insensitive due to undocumented changes in matplotlib 3.9.

2021-03-28

29 Mar 00:27
Compare
Choose a tag to compare

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 or PySide2.
    • GTK support requires pycairo, PyGObject and PIL/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.

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)

27 Nov 18:53
Compare
Choose a tag to compare
  • 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

27 Nov 17:46
Compare
Choose a tag to compare
  • Improve setup.py: remove need for importing module, add proper installation dependencies
  • Change readme from ReST to Markdown