Releases: pyblish/pyblish-base
Releases · pyblish/pyblish-base
1.8.12
04 Jun 07:12
Compare
Sorry, something went wrong.
No results found
Add 'context' key to 'result' dict - see #401
1.8.11
23 Feb 07:55
Compare
Sorry, something went wrong.
No results found
Fix for inspect.getargspec in Python 3
See #393 for details.
1.8.10
27 Oct 17:27
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
Added "warning" and "failedOrWarning" as options for Action.on
See #370 for details.
1.8.7
04 Apr 20:16
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
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.
Thanks @buddly27 for the fix!
1.8.5
21 Mar 08:19
Compare
Sorry, something went wrong.
No results found
1.8.4
18 Feb 04:23
Compare
Sorry, something went wrong.
No results found
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
Compare
Sorry, something went wrong.
No results found
Minor fix for data coming in from the command-line interface.