Skip to content

Releases: mottosso/Qt.py

1.3.8

13 Feb 07:31
4a9abae

Choose a tag to compare

  • #382 Fixed translate argument for pyside2-uic
  • #371 Added Chadrik's auto-completion

1.3.7

26 May 19:07
90a93ae

Choose a tag to compare

Update .travis.yml

1.3.6

24 Aug 10:58
54cbcbf

Choose a tag to compare

  • Add QSound to QtMultimedia
  • See #287 and #361 for details
  • Thanks to @tzaumiaan for this fix!

1.3.5

16 Jul 15:19
69e4f35

Choose a tag to compare

Fix of a fix of #346, see #359 for details and thanks to @friedererdmann for the swift correction!

1.3.4

08 Jul 10:28
60fc345

Choose a tag to compare

Fixes #346, see #357 for details. Thanks to @friedererdmann for this fix!

1.3.3

24 Jan 10:08
64e8162

Choose a tag to compare

  • Vendoring improvements for QtCompat
  • See #355 for details and thanks to @AWhetter for this fix

1.3.2

03 Oct 09:47
8a8953b

Choose a tag to compare

Improved error messaging on missing DLLs when importing Qt.py.

# Before
Qt.py [warning]: ImportError: DLL load failed: The specified module could not be found.

# After
Qt.py [warning]: ImportError(QtXmlPatterns): DLL load failed: The specified module could not be found.

1.3.1

20 Sep 13:54
6ea602a

Choose a tag to compare

This release fixes #344

1.3.0

06 Sep 09:03
3539a90

Choose a tag to compare

Updated QtCompat.wrapInstance to closer mimic the behavior of sip.wrapInstance when used with shiboken, in that it'll find the closest superclass rather than always resort to QObject.

This may, but shouldn't, affect the behavior of your code. One edgecase that comes to mind is if you've used type(myobject) == QObject rather than isinstance(myobject, QObject) in which case your test may now break. Hence I've updated the minor rather than the patch version of this release. If you spot anything else, feel free to raise an issue or submit a PR with a fix.

1.2.6

30 Jul 08:11
cfd1b1d

Choose a tag to compare

Improved error reporting (see #342) in the ongoing effort of making even more errors more apparent and easy to debug (see #343). Thanks @justinfx for this fix!