Skip to content

Releases: pyblish/pyblish-base

1.8.12

04 Jun 07:12
03cda36
Compare
Choose a tag to compare

Add 'context' key to 'result' dict - see #401

1.8.11

23 Feb 07:55
ebf0083
Compare
Choose a tag to compare
  • Fix for inspect.getargspec in Python 3

See #393 for details.

1.8.10

27 Oct 17:27
412b90d
Compare
Choose a tag to compare

Added support for pathlib with Python 3.

import pathlib
path = pathlib.Path(r"c:\my\plugins")

from pyblish import api
api.register_plugin_path(path)

1.8.9

19 Oct 05:55
4bfd6e1
Compare
Choose a tag to compare

Minor addition to unify arguments to Context.create_instance() and Instance().

from pyblish import api
context = api.Context()
instance = context.create_instance("pony", color="blue")
same_instance = api.Instance("pony", color="blue")
context.append(same_instance)

See #372 for details and thanks to @hannesdelbeke for this update!

1.8.8

02 Dec 07:35
aaec8a8
Compare
Choose a tag to compare
  • Added "warning" and "failedOrWarning" as options for Action.on

See #370 for details.

1.8.7

04 Apr 20:16
3290fd5
Compare
Choose a tag to compare

Unicode support for plug-ins, now you can finally use emojis for variables or docstrings, go nuts!

Thanks to @davidlatwe for this feature.

1.8.6

21 Mar 08:24
1431dd5
Compare
Choose a tag to compare

Vendor libraries of Pyblish was added to your global sys.path whenever it was imported, so if you found yourself unable to use your version of e.g. Click because of some older version appearing in its place, then this fix is for you.

  • See #366 for details.

Thanks @buddly27 for the fix!

1.8.5

21 Mar 08:19
010c630
Compare
Choose a tag to compare

Bugfix related to targets, see #364 for details and thanks to @buddly27 for the implementation!

1.8.4

18 Feb 04:23
e2fb91a
Compare
Choose a tag to compare

Bugfix, "published" signal is now only emitted on util.publish, and not util.collect and friends.

  • See #360 for details, and thanks to @jlboisvert007 for this fix!

1.8.3

07 Jan 10:15
8588808
Compare
Choose a tag to compare

Minor fix for data coming in from the command-line interface.