Releases: pyblish/pyblish-qml
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
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)
- See Pull Request for details.
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
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
1.7.2
Updated Qt.py to 1.1.0.b10.
1.7.1
1.7.0
Hide Section
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 :)