Skip to content

1.0.15

Compare
Choose a tag to compare
@mottosso mottosso released this 07 Apr 09:47
· 540 commits to master since this release

Primarily and addition of the .id attribute on instances and plug-ins to uniquely identify them. Currently defaults to their name so as to not break backwards compatibility, but opens up doors for more unique identifiers should the need occur.

Example

>>> import pyblish.api
>>> instance = pyblish.api.Instance("MyInstance")
>>> instance.id
MyInstance
>>> plugin = pyblish.api.discover()[0]
>>> plugin.id
NameOfPlugin

Version 1.0.15

  • API: Plugin.repair_* documented and implemented by default
  • API: Added lib.where()
  • API: Added .id attribute to instances and plug-ins