Skip to content

Releases: pyblish/pyblish-lite

0.8.12

01 Feb 10:37
e94b3ef
Compare
Choose a tag to compare

0.8.11

18 Jan 08:57
f0db29d
Compare
Choose a tag to compare
  • Fix for Pyblish Lite being embedded into another window
  • See #119 for details and thanks to @nebukadhezer for this fix

0.8.10

05 Jan 11:05
ffd8df1
Compare
Choose a tag to compare

Thanks to @makfe for this fix!

0.8.9

02 Dec 07:43
ee44812
Compare
Choose a tag to compare
  • Moved out of 0.8.8 "pre-release", see #113 for details
  • Added "warning" and "failedOrWarning" as options for Action.on, see #116 for details

0.8.8b2

19 Nov 17:16
5bea1c0
Compare
Choose a tag to compare
  • Fix warning color only displayed if last instance has a warning
  • See #115 for details
  • Thanks to @jboisvertrodeofx for this fix
  • Note this is still a pre-release as the previous release still needs more testing

0.8.8b1

13 Nov 08:10
ca89c50
Compare
Choose a tag to compare
0.8.8b1 Pre-release
Pre-release

Beta-release of a fix for a long-standing issue #59 and #113.

This should not - but may - affect the results of publishing, which is why this has been released in "beta" for now. Take it for a spin, keep an eye out and let us know here or in the chat whether there are any issues for you.

To use it, append the --pre flag to your pip install command. Without it, the latest stable release will be installed.

pip install pyblish-lite
# pyblish_lite-0.8.7 installed

pip install pyblish-lite --pre --upgrade
# pyblish_lite-0.8.8b1 installed

0.8.7

13 Nov 07:49
5f8eacf
Compare
Choose a tag to compare

Support for high-resolution screens on Windows. Thanks to @chadmv for this update, and updates to Linux and MacOS are welcome as well!

  • See #112 for details

0.8.6

13 Aug 11:51
7c5d0ee
Compare
Choose a tag to compare

Minor bug fix, courtesy of @cuckon.

  • See #111 for details.

0.8.5

21 Aug 17:09
6a5d93d
Compare
Choose a tag to compare

Colour an item orange if a warning has been logged.

  • See #110 for details, and thanks to @renaudll for the implementation

0.8.4

13 Feb 12:49
Compare
Choose a tag to compare

Added new callbacks.

from pyblish import api
import pyblish_lite

def on_published(context):
    print("Context was %s" % context)

def on_validated(context):
    print("Context was %s" % context)

api.register_callback("validated", on_on_validated)
api.register_callback("published", on_on_published)

pyblish_lite.show()