aboutsummaryrefslogtreecommitdiffstats
path: root/doc/changelogs/changes-6.3.2
blob: c2a40a8548bf6af61061cfd45129f678f9d1b7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Qt for Python 6.3.2 is a bug-fix release.

For more details, refer to the online documentation included in this
distribution. The documentation is also available online:

https://doc.qt.io/qtforpython/

Some of the changes listed in this file include issue tracking numbers
corresponding to tasks in the Qt Bug Tracker:

https://bugreports.qt.io/

Each of these identifiers can be entered in the bug tracker to obtain more
information about a particular change.

****************************************************************************
*                                  PySide6                                 *
****************************************************************************

 - [PYSIDE-841]  New examples have been added (SpinBoxDelegate,
                 Bluetooth heart rate).
 - [PYSIDE-1312] QFormLayout::takeRow() has been added.
 - [PYSIDE-1735] The duplication of enum values into the enclosing scope,
                 allowing to write Qt.AlignLeft instead of Qt.Alignment.AlignLeft,
                 is now implemented differently and no longer advertized in PYI
                 files or line completion.
 - [PYSIDE-1735] The new Python enums are made as compatible to the old ones
                 as possible. It is again allowed to use Qt.Alignment()
                 instead of Qt.AlignmentFlag(0), and a default of 0 is
                 always allowed but also not advertized.
                 Qt.Modifiers/Qt.KeyboardModifierflags can also still be used
                 interchangeably.
 - [PYSIDE-1735] Most former IntEnum/IntFlag are replaced by pure Enum/Flag
                 classes in a generally compatible way to other implementations.
 - [PYSIDE-1735] PyEnum handles QKeyCombination correctly with "|" or (deprecated)
                 "+" operators, without falling back to using IntEnum.
 - [PYSIDE-1735] Python Enums use the newest implementation for Python (3.10)
                 for compatibility and speed.
 - [PYSIDE-1735] A weird build problem on macOS and other platforms was fixed.
 - [PYSide-1735] The cleanup calls by were sped up by using PyName for
                 staticMetaObject.
 - [PYSIDE-1984] The code snippets in the modelview tutorial have been
                 improved.
 - [PYSIDE-1930] Returning enums from QAbstractItemModel.flags() and
                 QAbstractItemModel.data() has been fixed.
 - [PYSIDE-1934] The type hinting for the return value of
                 QListWidget.selected_indexes() has been fixed.
 - [PYSIDE-1960] Initial support for Python 3.11 has been added.
 - [PYSIDE-1968] The signature of QPixmap.save() has been fixed.
 - [PYSIDE-1978] The signal
                 QAbstractItemModel.layoutAboutToBeChanged(QList<QPersistentModelIndex>)
                 has been fixed.
                 Also, the error message about using the wrong signal overload
                 has been improved.
 - [PYSIDE-2030] The converter tools for Python code snippets for the
                 documentation has been improved.
 - [PYSIDE-2019] Crashes related to QtDataVisualization'QValue3DAxisFormatter
                 have been fixed.
 - [PYSIDE-2034] The static functions of QMessageBox have been fixed to not
                 block threads.
 - [PYSIDE-2039] A regression affecting setting override cursors without
                 context manager has been fixed.


****************************************************************************
*                                  Shiboken6                               *
****************************************************************************

 - [PYSIDE-1964] The error message about mistakenly using keyword arguments
                 has been improved.
 - [PYSIDE-1988] Fixed a mistaken PySequence_Check() type check to be
                 PyTuple_Check(), which only showed in Python 3.11.