Skip to content

Releases: pyblish/pyblish-lite

0.8.3

13 Sep 07:44
0892cc4
Compare
Choose a tag to compare

Now also available as a PyPI wheel!

$ pip install pyblish-lite

Thanks to @darkvertex for this feature.

  • See #105 for details

0.8.2

29 Aug 19:02
d068cde
Compare
Choose a tag to compare

Update Qt.py to support PySide2 5.11.1

Fixes #103, thanks @timlehr for reporting!

0.8.0

18 Mar 21:58
65823b4
Compare
Choose a tag to compare

Internationalisation

Added support for internationalisation. If your system locale is Chinese, you should now find messages in Pyblish Lite appear in your native language. Thanks to @NateScarlet for this feature!


Creating your own translation

The .ts file is generated by pyside-lupdate pysite_lite.pro. The line numbers are just reference for translation, will be removed in .qm file. Qt matches translation with context(class name), not line number.

The .qm file is generated by lrealese <.ts file> .

Add another language by doing follow, tools can be found in PySide package folder:

  1. Add <Locale name>.ts to TRANSLATIONS line of pyblish_lite.pro, seperate by space.
    Locale name is return value of PySide.QtCore.QLocale.system().name() on you target machine.
  2. Run pyside-lupdate pyblish_lite.pro
  3. Open .ts file with linguist
  4. Translate all items in linguist.
  5. Release by lingust -> File menu -> release, or use lrealese <.ts file>

Reference

0.7.5

07 Mar 07:32
18bd9b2
Compare
Choose a tag to compare
  • Python 2.6 compatibility, thanks to @GreenGoseWithFunnyHat
  • Unicode support, thanks to @NateScarlet
  • Customise Window Size on startup, thanks to @tokejepsen

Window Size

from pyblish_lite import settings, show
settings.WindowSize = (800, 600)
show()

Unicode

0.7.4

14 Jan 11:26
Compare
Choose a tag to compare

This release addresses the bug specified in #82.

See #83 for details.

0.7.3

14 Jan 10:26
Compare
Choose a tag to compare

This release fixes #87.

See #88 for details.

0.7.2

07 Jan 11:47
Compare
Choose a tag to compare

Plug-ins without any relevant instances are now hidden from view.

Before, a plug-in would appear even if no compatible instance was collected, resulting in a bloated list of plug-ins along with some plug-ins appearing to never get run.

This version implements a filter that discards any plug-in that won't get run given the instances currently collected.

See #85 for details.

0.7.1

22 Nov 08:19
Compare
Choose a tag to compare

This is a bug release that fixes; #78 and #74.

The problem was that the instances are first added to the model after collection. This results in that we can't access instances during collection.
The account for reordering of the instances in context during collection, we are rebuilding the model after collection.

See PR for details.

0.7.0

18 Nov 14:25
Compare
Choose a tag to compare

UseLabel Setting

This introduces a new setting UseLabel.

For usage please see README.

0.6.4

18 Nov 10:32
Compare
Choose a tag to compare

Maintenance release, fixes #60 and #61.