Skip to content

Releases: pyblish/pyblish-qml

1.8.4

24 Sep 06:26
d89a2f4
Compare
Choose a tag to compare

This release fixed two issues:

  1. eventFilter get removed when main window is minimized.
  2. Comment did not restore back to host context.data after pressing Rest button.

For a bit more detail, see #299

Thanks :)

1.8.3

20 Sep 08:52
11c44c3
Compare
Choose a tag to compare

Now available as PyPI wheel!

Thanks @darkvertex for this features, see #298 for details.

1.8.2

08 Sep 09:27
5d5fc0c
Compare
Choose a tag to compare

Stability and performance improvements.

  • See #297 for details.

Thanks @davidlatwe!

1.8.1

30 Aug 08:20
18843b9
Compare
Choose a tag to compare

Hotfix for 1.8.0.

1.8.0

23 Aug 10:27
5519d3f
Compare
Choose a tag to compare

Thanks to @davidlatwe, we've now got an option to physically parent the QML window to the host process, such as Maya.

import pyblish_qml
pyblish_qml.show(foster=True)

Without this option, the window remains separate but "fakes" being a child by monitoring the active-state. When active, it will remain on top of all windows, which is why it can never be under the Script Editor, like it can with this feature.

Consider this a beta feature, not well tested yet, and possibly not applicable to any platform other than Windows. Feedback is welcome!

1.7.4

11 Jul 16:30
4a388e5
Compare
Choose a tag to compare

Added instance.data["optional"] = False to prevent instances from being toggled/detoggled by the user.

The same feature also exists in Pyblish Lite:

Thanks @darkvertex for this feature!

1.7.3

04 Apr 13:20
af3f494
Compare
Choose a tag to compare

Minor cosmetic update related to Actions and sections.

  • See #286 for details.

Thanks to @davidlatwe for this update!

1.7.2

30 Jan 20:30
927ce40
Compare
Choose a tag to compare

Updated Qt.py to 1.1.0.b10.

1.7.1

18 Dec 12:30
1a35024
Compare
Choose a tag to compare

Minor cosmetic change to checkboxes whilst processing.

  • See #277 for details.

1.7.0

13 Dec 10:51
d9005f2
Compare
Choose a tag to compare

Hide Section

dec 13 2017 11_09 am

This release implements the option to hide sections. Hiding sections can happen interactively or via the settings:

from pyblish_qml import settings
settings.HiddenSections = ["Collect"]

By default the Collect section is hidden to address #189. For further details on the release see #275.

Thanks to @mottosso, @davidlatwe, @BigRoy :)