forked from baoboa/pyqt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
9295 lines (7441 loc) · 309 KB
/
ChangeLog
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-07-03 Phil Thompson <[email protected]>
* NEWS:
Released as v5.9.
[307fa2afedd4] [5.9]
2017-07-02 Phil Thompson <[email protected]>
* sphinx/api_details/qjsonarray.rst,
sphinx/api_details/qjsonobject.rst,
sphinx/api_details/qjsonvalue.rst, sphinx/api_metadata.cfg,
sphinx/class_reference.rst, sphinx/conf.py, sphinx/dbus.rst,
sphinx/deploy_commercial.rst, sphinx/deprecations.rst,
sphinx/designer.rst, sphinx/extension_api.rst, sphinx/gotchas.rst,
sphinx/i18n.rst, sphinx/incompatibilities.rst, sphinx/index.rst,
sphinx/installation.rst, sphinx/introduction.rst,
sphinx/metaobjects.rst, sphinx/multiinheritance.rst,
sphinx/opengl.rst, sphinx/pickle.rst, sphinx/platforms.rst,
sphinx/pyqt4_differences.rst, sphinx/pyqt_qsettings.rst,
sphinx/pyqt_qvariant.rst, sphinx/python_shell.rst, sphinx/qml.rst,
sphinx/qt_interfaces.rst, sphinx/qt_properties.rst,
sphinx/resources.rst, sphinx/signals_slots.rst,
sphinx/static/classic.css, sphinx/static/logo.png,
sphinx/static/logo_tn.ico:
Remove the documentation.
[c10072f0b507]
2017-07-01 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated for Qt v5.9.1.
[a19c481d1d26]
2017-06-15 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Removed some assumptions about a slot receiver when it is a method.
[e32538351d89]
2017-06-11 Phil Thompson <[email protected]>
* lib/configure.py:
The .sip files of all public modules are now installed even if the
module has not been built.
[d5785dc95062]
* .hgignore:
Ignore .pyc files.
[e9483645c942]
2017-06-10 Phil Thompson <[email protected]>
* lib/configure.py:
Deal with the incompatibilities introduced in Qt v5.9.0 in the
Windows specs.
[ccaae0890fa8]
* config-tests/cfgtest_QtCore.cpp, config-tests/cfgtest_QtGui.cpp,
config-tests/cfgtest_QtNetwork.cpp, config-
tests/cfgtest_QtPrintSupport.cpp, lib/configure.py:
Refactored the configuration tests so that they properly deal with
the build system incompatibilities introduced in Qt v5.8.0.
[5bff9174bdf5]
2017-06-06 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_event_handlers.cpp,
qpy/QtCore/qpycore_event_handlers.h:
Fixed the QObject monitoring to deal with the argument of the
destroyed() signal.
[e600f5863011]
2017-06-05 Phil Thompson <[email protected]>
* sphinx/conf.py:
Updated the documentation copyright notice.
[307e1590d17a]
2017-06-04 Phil Thompson <[email protected]>
* PyQt5.msp:
Completed the updates for Qt v5.9.0.
[3f8fdcacc41e]
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtWebEngineCore for Qt v5.9.0.
[2a44428921a5]
* PyQt5.msp, lib/SubclassCode/QtWebEngine.versions,
sphinx/api_metadata.cfg:
Updated QtWebEngine for Qt v5.9.0.
[200385c3790c]
* PyQt5.msp, lib/SubclassCode/QtSensors.versions,
sphinx/api_metadata.cfg:
Updated QtSensors for Qt v5.9.0.
[4f978799eaed]
* PyQt5.msp:
Update QtQml, QtQuick and QtWidgets for Qt v5.9.0.
[e4dce2d967dc]
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtNfc and QtPositioning for Qt v5.9.0.
[e96fbd85d316]
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtLocation and QtNetwork for Qt v5.9.0.
[66167aa051e8]
2017-06-03 Phil Thompson <[email protected]>
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtHelp for Qt v5.9.0.
[5ab49587596b]
* PyQt5.msp:
Updated QtGui for Qt v5.9.0.
[8c2adf7c6678]
2017-06-01 Phil Thompson <[email protected]>
* PyQt5.msp, sphinx/api_metadata.cfg:
Completed QtCore for Qt v5.9.0.
[c1647883b06a]
2017-05-31 Phil Thompson <[email protected]>
* PyQt5.msp:
Started work on Qt v5.9.0.
[45fb92dcc67b]
2017-05-30 Phil Thompson <[email protected]>
* lib/LICENSE.commercial, lib/LICENSE.commercial.short,
lib/LICENSE.gpl, lib/LICENSE.gpl.short, lib/LICENSE.internal,
lib/RaspberryPi/configuration.txt:
Merged the 5.8-maint branch with the trunk.
[15759489c83d]
* .hgignore:
Updated .hgignore for the changed build directory.
[5507908d36d4] <5.8-maint>
* lib/README, lib/RaspberryPi/configuration.txt:
Minor tidy ups.
[ce0390f84167] <5.8-maint>
2017-05-27 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_event_handlers.cpp,
qpy/QtCore/qpycore_event_handlers.h,
qpy/QtCore/qpycore_post_init.cpp.in, rb-product:
Added the event handlers to implement detection of the destruction
of QObject instances created by C++.
[3312bc9f9693] <5.8-maint>
2017-05-24 Phil Thompson <[email protected]>
* lib/configure.py:
Improved the reproduceability of builds.
[8c18ae66b8a3] <5.8-maint>
2017-05-23 Phil Thompson <[email protected]>
* lib/configure.py:
Make the output of configure.py easier to read with --verbose.
[ebc3188b638c] <5.8-maint>
* PyQt5.msp:
Fixed QGuiApplication for when there is no session management.
[f01c1372343b] <5.8-maint>
2017-04-27 Phil Thompson <[email protected]>
* test/tests/classes/test_QObject.py:
Fixed the new QObject.inherits() unit test.
[05140ab844bf] <5.8-maint>
* qpy/QtCore/qpycore_qobject_helpers.cpp,
test/tests/classes/test_QObject.py:
Fixed a regression in the qt_metacast() helper.
[412e7be14d1f] <5.8-maint>
* qpy/QtCore/qpycore_chimera.cpp:
Reverted the part of changeset 1281 related to dict and QVariantMap.
[71b9958bad49] <5.8-maint>
2017-04-18 Phil Thompson <[email protected]>
* sphinx/designer.rst:
Corrected the pyuic5 documentation.
[bba9257ee0f6] <5.8-maint>
2017-04-17 Phil Thompson <[email protected]>
* examples/itemviews/interview/images/interview.png,
examples/itemviews/interview/images/services.png,
examples/itemviews/interview/interview.py,
examples/qtdemo/examples.xml:
Added the interview.py example from Hans-Peter Jansen.
[c9fd1cdbc210] <5.8-maint>
* examples/itemviews/frozencolumn/frozencolumn.py,
examples/itemviews/frozencolumn/grades.txt,
examples/qtdemo/examples.xml:
Added the frozencolumn.py example from Hans-Peter Jansen.
[7fb636b504e8] <5.8-maint>
* examples/itemviews/storageview.py, examples/qtdemo/examples.xml:
Added the storageview.py example from Hans-Peter Jansen.
[f98741ba3c82] <5.8-maint>
* examples/itemviews/editabletreemodel/editabletreemodel.py:
Updates to the editabletreemodel.py example from Hans-Peter Jansen.
[76d240529c4c] <5.8-maint>
* examples/itemviews/dirview.py:
Updated the dirview.py example from Hans-Peter Jansen.
[c588f6571970] <5.8-maint>
* examples/itemviews/combowidgetmapper.py:
Fixes for the combowidgetmapper.py example from Hans-Peter Jansen.
[81cbf58f3bcf] <5.8-maint>
* PyQt5.msp:
Implemented __hash__() for QFlags.
[7766a40af0d6] <5.8-maint>
2017-04-05 Phil Thompson <[email protected]>
* examples/itemviews/pixelator/pixelator.py:
Fixes for the pixelator.py example.
[2c3574fb346f] <5.8-maint>
* PyQt5.msp:
Implemented the non-argument overloads of the toSubpathPolygons(),
toFillPolygons() and toFillPolygon() methods of QPainterPath.
[af1fdb5e696d] <5.8-maint>
* examples/itemviews/chart/chart.py:
Fixed issues with the chart.py example.
[86ca9f21d8ee] <5.8-maint>
* examples/itemviews/spinboxdelegate.py:
Updated the spinboxdelegate.py example to match the current C++
version.
[6d27e01c70b5] <5.8-maint>
2017-04-03 Phil Thompson <[email protected]>
* examples/quick/animation/animation_rc.py,
examples/quick/canvas/canvas_rc.py,
examples/quick/models/abstractitemmodel/abstractitemmodel_rc.py,
examples/quick/models/objectlistmodel/objectlistmodel_rc.py,
examples/quick/models/stringlistmodel/stringlistmodel_rc.py,
examples/quick/scenegraph/customgeometry/customgeometry_rc.py,
examples/quick/shared/shared_rc.py:
Updated all the pyrcc output to use v2 where QML files are stored.
[0e09475f02d3] <5.8-maint>
* qpy/pyrcc/rcc.cpp, qpy/pyrcc/rcc.h:
Added support for v2 of the resource file format to pyrcc.
[bc8a379011ca] <5.8-maint>
2017-03-30 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.8.2 for changeset 96c86cda6415
[833d4681ee3d] <5.8-maint>
* NEWS:
Released as v5.8.2.
[96c86cda6415] [5.8.2] <5.8-maint>
2017-03-29 Phil Thompson <[email protected]>
* lib/configure.py:
Fixes for the OpenGL detection needed by the incompatible
configuration changes in Qt v5.8.0.
[bf6caed84fd3] <5.8-maint>
2017-03-27 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_chimera.cpp:
When parsing a Python type map list and dict to QVariantList and
QVariantMap.
[e7158e3e2a31] <5.8-maint>
2017-03-24 Phil Thompson <[email protected]>
* lib/LICENSE.commercial, lib/LICENSE.commercial.short,
lib/LICENSE.gpl, lib/LICENSE.gpl.short, lib/LICENSE.internal:
Remove the license copies that are now part of rb-tools.
[c15cf2c0c055] <5.8-maint>
2017-03-22 Phil Thompson <[email protected]>
* pyuic/uic/uiparser.py:
Fixed the margins of the top layout in a tab by pyuic.
[f5594ddfb6ee] <5.8-maint>
* pyuic/uic/driver.py, pyuic/uic/exceptions.py,
pyuic/uic/properties.py, pyuic/uic/pyuic.py:
Improved the error handling of an unknown C++ class.
[c4dab2a95dc6] <5.8-maint>
2017-03-21 Phil Thompson <[email protected]>
* sphinx/qml.rst:
Added explicit warnings about PyQt's ability to support QML to the
docs.
[e0c7e29a7852] <5.8-maint>
2017-03-16 Phil Thompson <[email protected]>
* PyQt5.msp:
Added a comment about why opengl_types.sip is included twice.
[95518ec3931a] <5.8-maint>
* PyQt5.msp:
Only enable QOpenGLTextureBlitter if OpenGL is supported.
[ef351b9d8f03] <5.8-maint>
* PyQt5.msp:
Avoid a deadlock when using asynchronous image providers in QML.
[33ed4db6949b] <5.8-maint>
2017-03-07 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.8.1 for changeset 7426ab9ba43b
[0ddf209259b4] <5.8-maint>
* NEWS:
Released as v5.8.1.
[7426ab9ba43b] [5.8.1] <5.8-maint>
2017-03-03 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_chimera.cpp:
Special case a QVariant containing std::nullptr_t.
[001ad7fc01fb] <5.8-maint>
2017-02-27 Phil Thompson <[email protected]>
* METADATA.in:
Updated the Requires-Dist meta-data so it includes the values from
the release file.
[2933ac7bf19d] <5.8-maint>
2017-02-24 Phil Thompson <[email protected]>
* lib/configure.py:
Disable desktop OpenGL if OpenGLES v3 or v3.1 is detected.
[4ba0f0b49e2a] <5.8-maint>
* qpy/QtQml/qpyqml_register_type.cpp:
Fixed the handling of properties in Qml because of changes to the
internals in Qt v5.8.0.
[feeab3eb94fa] <5.8-maint>
2017-02-22 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixed QLocale.toString() for Python v2.
[027b070ff19e] <5.8-maint>
* PyQt5.msp:
Anticipate that Qt v5.9.0 will be released before Qt v5.8.1 to avoid
problems building PyQt v5.9 against Qt v5.8.1.
[6022c9537b69] <5.8-maint>
2017-02-21 Phil Thompson <[email protected]>
* qpy/QtPrintSupport/qpyprintsupport_qlist.sip:
The QtPrintSupport mapped types are only included if printers are
supported.
[7b3afef45f92] <5.8-maint>
* sphinx/pyqt_qvariant.rst:
Updated the docs regarding support for QVariant.
[657a7b5e45ce] <5.8-maint>
2017-02-16 Phil Thompson <[email protected]>
* qpy/QtQml/qpyqmlobject.cpp:
Fixed signals in QML registered types that are defined in a Python
sub-class of the registered type.
[e5d27b6ce571] <5.8-maint>
2017-02-15 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.8 for changeset a04bf1746ae4
[f12c11450b7f]
* NEWS:
Released as v5.8.
[a04bf1746ae4] [5.8]
2017-02-13 Phil Thompson <[email protected]>
* PyQt5.msp:
More SSL support fixes.
[f3e90b840b5f]
* PyQt5.msp:
Fixed building without SSL support.
[0c33c8cce200]
* sphinx/installation.rst, sphinx/qml.rst:
Some documentation clarifications.
[79b2d4a5368c]
2017-02-09 Phil Thompson <[email protected]>
* qmlscene/pluginloader.cpp, qmlscene/qmlscene.pro-in:
The qmlscene plugin now loads the Python library with exported
symbols.
[03722ff7eea9]
2017-02-08 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtGui/qpyopengl_api.h, qpy/QtGui/qpyopengl_get.cpp:
Improved the support in the other glGet functions.
[e97a57356d73]
2017-02-07 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtGui/qpyopengl_api.h, qpy/QtGui/qpyopengl_get.cpp,
qpy/QtGui/qpyopengl_init.cpp:
Improved the support for glGetFloatv().
[0e9414c6c2ad]
2017-02-01 Phil Thompson <[email protected]>
* qpy/QtCore/qwineventnotifier.sip:
Hopefully fixed the QWinEventNotifier.activated() signal.
[0c65b46fa231]
* lib/configure.py, sphinx/installation.rst:
On Windows a debug build of Python is needed if --debug is specified
(and vice versa).
[badca59b38be]
2017-01-31 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qhash.sip, qpy/QtCore/qpycore_qlist.sip,
qpy/QtCore/qpycore_qset.sip:
Disable the garbage collector while wrapping multiple C++ instances
in case some of those instances would be destroyed if the garbage
collector was run.
[652a401092f3]
* qpy/QtCore/qsysinfo.sip:
Updated QSysInfo for Qt v5.8.0.
[104d002e3fc0]
2017-01-29 Phil Thompson <[email protected]>
* PyQt5.msp:
Release the GIL in QmlApplicationEngine ctors.
[85a18ee47e51]
* PyQt5.msp:
Updated QtWebSockets, QtWidgets, QtXml and QtXmlPatterns for Qt
v5.8.0.
[8fdb72bca3b5]
2017-01-28 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated QtSensors, QtSerialPort, QtSql, QtSvg, QtTest, QtWebChannel,
QtWebEngine, QtWebEngineCore and QtWebEngineWidgets for Qt v5.8.0.
[cf1faa2c9606]
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtQml, QtQuick and QtQuickWidgets for Qt v5.8.0.
[2459038a6733]
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated QtHelp, QtLocation, QtMultimedia, QtMultimediaWidgets,
QtNetwork, QtNfc, QtOpenGL, QtPositioning and QtPrintSupport for Qt
v5.8.0.
[d0eeb8270f29]
* lib/configure.py:
Updated the configure.py test for QtDesigner to detect the broken Qt
v5.8.0 macOS installer.
[ce70a466f5c9]
2017-01-24 Phil Thompson <[email protected]>
* PyQt5.msp:
Eliminate a compiler warning message in QtCore.
[99d23c39f9ff]
* NEWS, PyQt5.msp, lib/configure.py, sphinx/installation.rst:
Updated QtBluetooth, QtCore, QtDBus, QtDesigner, QtGui and
configure.py for Qt v5.8.0.
[daac5fdeb6ee]
* Makefile, build.py, pyuic/uic/port_v2/invoke.py,
pyuic/uic/port_v2/load_plugin.py, pyuic/uic/port_v3/invoke.py,
pyuic/uic/port_v3/load_plugin.py:
Merged the 5.7-maint branch.
[05971e186d25]
2017-01-20 Phil Thompson <[email protected]>
* NEWS, PyQt5.msp:
Added __fspath__() to QFileInfo.
[6dbc033e73c4] <5.7-maint>
* lib/configure.py:
Updated the configure.py test for qreal to allow for QT_COORD_TYPE.
[05bb9d526a1c] <5.7-maint>
* lib/configure.py, sphinx/installation.rst:
QML debugging is now enabled with a separate --qml-debug option to
configure.py.
[b189f32a6cc7] <5.7-maint>
2017-01-19 Phil Thompson <[email protected]>
* qpy/QtGui/qpyopengl_value_array.cpp:
Fixed a bug in the handling of Arrays.
[f4e8be0593cc] <5.7-maint>
2017-01-17 Phil Thompson <[email protected]>
* lib/configure.py, sphinx/installation.rst:
Added the --link-full-dll option to configure.py to force a link
against the full DLL on Windows.
[a5ebf7ca384c] <5.7-maint>
2017-01-13 Phil Thompson <[email protected]>
* qpy/QtQml/qpyqmlobject.cpp:
Fixed a bug emitting a signal defined in a super-class of a class
registered with QML.
[0e2a24362686] <5.7-maint>
* qpy/QtQml/qpyqmllistproperty.cpp:
Check that the type argument to QQmlListProperty is a QObject sub-
type.
[67543cbe2445] <5.7-maint>
2017-01-10 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtslotproxy.cpp:
Disabled slot proxies will be ignored when checking for unique
connections.
[7d061b0767d5] <5.7-maint>
* PyQt5.msp, lib/configure.py, rb-product, sphinx/installation.rst:
Changes required to fix building for debug builds of Python. The
minimum SIP requirement is now v4.19.1.
[945c725e4eae] <5.7-maint>
2017-01-09 Phil Thompson <[email protected]>
* PyQt5.msp:
Release the GIL on all QQmlComponent ctors that parse QML.
[d9cd45f80515] <5.7-maint>
* PyQt5.msp:
Fixed problems building QtWebEngine against Qt v5.6.
[8d9460a607dd] <5.7-maint>
2016-12-25 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.7.1 for changeset a25b699c3bff
[e6e0f1b22e73] <5.7-maint>
* NEWS:
Released as v5.7.1.
[a25b699c3bff] [5.7.1] <5.7-maint>
2016-12-24 Phil Thompson <[email protected]>
* lib/configure.py:
Link against the correct Python DLL when using the limited API.
[b09fa4890933] <5.7-maint>
2016-12-19 Phil Thompson <[email protected]>
* sphinx/installation.rst:
Updated the pyqtlicense documentation.
[e8d4a7dff111] <5.7-maint>
2016-12-17 Phil Thompson <[email protected]>
* QAxContainer/qaxobject.sip:
Fixed some very old convertor code in QAxContainer.
[1ca987d031ad] <5.7-maint>
2016-12-15 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated for Qt v5.7.1.
[5132c77b8800] <5.7-maint>
2016-12-14 Phil Thompson <[email protected]>
* designer/pluginloader.cpp, designer/pluginloader.h:
The Designer plugin now releases the GIL once all plugins have been
loaded.
[57d8ce89670d] <5.7-maint>
2016-12-04 Phil Thompson <[email protected]>
* pylupdate/pylupdate_main.py:
pylupdate now generates correct relative paths when -ts is used.
[1ba3c08d40e4] <5.7-maint>
* pyuic/uic/uiparser.py:
Fixed a crash when a .ui file doesn't contain a button group when it
should.
[5f3cbec20103] <5.7-maint>
2016-11-25 Phil Thompson <[email protected]>
* sphinx/installation.rst:
Documented the --build-tag command line option to pyqtlicense.
[422623d23a48] <5.7-maint>
2016-11-23 Phil Thompson <[email protected]>
* pyuic/uic/objcreator.py, pyuic/uic/port_v2/invoke.py,
pyuic/uic/port_v2/load_plugin.py, pyuic/uic/port_v3/invoke.py,
pyuic/uic/port_v3/load_plugin.py, pyuic/uic/pyuic.py:
Removed all pyuic code that required Python v2.5 and earlier.
[446394da9951] <5.7-maint>
* sphinx/deploy_commercial.rst, sphinx/extension_api.rst,
sphinx/installation.rst, sphinx/introduction.rst,
sphinx/pyqt4_differences.rst:
All references to the website no wuse https.
[16fd5cc19aab] <5.7-maint>
* qpy/QtQml/qpyqmllistpropertywrapper.cpp:
Fixed the QML support when using the limited API.
[519b2b27c289] <5.7-maint>
2016-11-14 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_types.cpp:
Fixed a regression trawling class hierachies using the limited API.
[4333b8ba87fd] <5.7-maint>
2016-11-12 Phil Thompson <[email protected]>
* sphinx/installation.rst:
Documented the --qt-version option to pyqtlicense.
[d5efc2dd635e] <5.7-maint>
2016-11-10 Phil Thompson <[email protected]>
* PyQt5.msp:
Added a missing /Out/ annotation to
QWebEnginePage.javaScriptPrompt().
[c5886ff2dc94] <5.7-maint>
2016-11-04 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qobject_helpers.cpp:
Fixed a regression in the handling of ReadProperty and WriteProperty
in PyQt v5.6 that broke the chapter5-listproperties.py example.
[5c3d541a12a2] <5.7-maint>
2016-10-26 Phil Thompson <[email protected]>
* PyQt5.msp:
Added QRegion.setRects().
[a7014a7d4259] <5.7-maint>
* pyuic/uic/widget-plugins/qtcharts.py, pyuic/uic/widget-
plugins/qtwebenginewidgets.py:
Added widget plugins for QChartView and QWebEngineView.
[29003cce4a88] <5.7-maint>
* PyQt5.msp:
Added Qt_5_6_2 to the %Timeline and corresponding values for later
versions of Qt v5.6.
[9449a57f8e13] <5.7-maint>
2016-10-25 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtCore/qpycore_qstring.cpp:
Fixed a regression building against Python v2.
[935bb79a7b1c] <5.7-maint>
2016-10-24 Phil Thompson <[email protected]>
* lib/SubclassCode/mksccode.py:
Updated mksccode.py to match the current handling of hidden
namespaces.
[fbddad196e67] <5.7-maint>
2016-10-14 Phil Thompson <[email protected]>
* pylupdate/pylupdate_main.py:
Fixed a bad call in pylupdate.
[9a1caa071647] <5.7-maint>
2016-10-04 Phil Thompson <[email protected]>
* sphinx/api_metadata.cfg:
Added the missing QOpenGLVersionProfile to the documentation.
[ed7f40f61a68] <5.7-maint>
2016-09-23 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtCore/qpycore_qmetaobject.cpp,
qpy/QtGui/qpyopengl_attribute_array.cpp,
qpy/QtGui/qpyopengl_uniform_value_array.cpp,
qpy/QtGui/qpyopengl_value_array.cpp:
Converted all access to the user object to use the new SIP calls.
[71c272511448] <5.7-maint>
* qpy/QtCore/qpycore_chimera.cpp, qpy/QtCore/qpycore_pyqtsignal.cpp,
qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_types.cpp:
Changes needed by the different way of handling plugin generated
data.
[e9490c8f0819] <5.7-maint>
2016-09-21 Phil Thompson <[email protected]>
* PyQt5.msp:
Updates for the latest SIP changes.
[1677ae8bd951] <5.7-maint>
2016-09-19 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixed calls to sipFindType() that were too early.
[f04f4d92ab9b] <5.7-maint>
* PyQt5.msp:
Fixes for the latest SIP changes.
[81eaffffa555] <5.7-maint>
2016-09-15 Phil Thompson <[email protected]>
* PyQt5.msp, lib/configure.py, sphinx/api_metadata.cfg,
sphinx/introduction.rst:
Added the QtWebEngine module.
[8c8d065d8148] <5.7-maint>
2016-09-14 Phil Thompson <[email protected]>
* PyQt5.msp:
The byteArray argume to the QBuffer ctor and setBuffer() method must
be a QByteArray (and not something that can be converted to a
QByteArray) because it needs to outlive the QBuffer instance.
[2976e49222bb] <5.7-maint>
* PyQt5.msp:
Added a missing /TransferThis/ to the QWebEngineUrlSchemeHandler
ctor.
[29be98207b30] <5.7-maint>
* qpy/QtQml/qpyqmlobject.cpp:
Use a unique signal when connecting to a proxy model to allow the
model to be used in multiple views.
[cd6fbe437e70] <5.7-maint>
2016-09-11 Phil Thompson <[email protected]>
* QtMacExtras/QtMacExtrasmod.sip, QtMacExtras/qtmac.sip:
Added the QtMac namespace to the QtMacExtras module.
[581743b7d329] <5.7-maint>
2016-09-10 Phil Thompson <[email protected]>
* METADATA.in, lib/configure.py, rb-product:
Add configuration information to the product file. Specifiy the
minimal SIP version in the wheel meta-data.
[347419aab38c] <5.7-maint>
2016-09-09 Phil Thompson <[email protected]>
* qpy/QtGui/qpyopengl_value_array.cpp:
Further changes for sipGetBufferInfo().
[2dfc32d2117b] <5.7-maint>
* qpy/QtGui/qpyopengl_value_array.cpp:
Fixed the call to sipGetBufferInfo().
[842376cb0aa8] <5.7-maint>
2016-09-08 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtproperty.cpp:
Fixed regressions in pyqtProperty.
[a1d6f69fef7a] <5.7-maint>
* qpy/QtGui/qpyopengl_attribute_array.cpp, qpy/QtGui/qpyopengl_misc.h,
qpy/QtGui/qpyopengl_uniform_value_array.cpp,
qpy/QtGui/qpyopengl_value_array.cpp:
Fixed the limited API changes when using the PySequence_Fast_*()
macros.
[04fe0b23b049] <5.7-maint>
* QAxContainer/QAxContainermod.sip, QAxContainer/qaxbase.sip,
QtMacExtras/QtMacExtrasmod.sip, QtWinExtras/QtWinExtrasmod.sip,
QtX11Extras/QtX11Extrasmod.sip, pylupdate/pylupdatemod.sip,
pyrcc/pyrccmod.sip:
The handwritten modules now all use the limited API.
[939cc11b2007] <5.7-maint>
* qpy/QtBluetooth/qpybluetooth_qlist.sip,
qpy/QtBluetooth/qpybluetooth_quint128.sip:
QtBluetooth now uses the limited API.
[dec01d730da6] <5.7-maint>
2016-09-07 Phil Thompson <[email protected]>
* qpy/QtDBus/qpydbus_chimera_helpers.cpp:
QtDBus now uses the limited API.
[82a0acefefd3] <5.7-maint>
* qpy/QtWidgets/qpywidgets_qlist.sip:
QtWidgets now uses the limited API.
[16de076d88c6] <5.7-maint>
* qpy/QtQuick/qpyquick_chimera_helpers.cpp:
QtQuick now uses the limited API.
[a834a23d561b] <5.7-maint>
* qpy/QtQml/qpyqml_post_init.cpp, qpy/QtQml/qpyqml_qjsvalue.cpp,
qpy/QtQml/qpyqml_register_singleton_type.cpp,
qpy/QtQml/qpyqml_register_type.cpp,
qpy/QtQml/qpyqmllistproperty.cpp, qpy/QtQml/qpyqmllistproperty.h,
qpy/QtQml/qpyqmllistproperty.sip,
qpy/QtQml/qpyqmllistpropertywrapper.cpp,
qpy/QtQml/qpyqmllistpropertywrapper.h:
QtQml now uses the limited API.
[486082bf4be5] <5.7-maint>
* qpy/QtPrintSupport/qpyprintsupport_qlist.sip:
QtPrintSupport now uses the limited API.
[b8c0b62a20a7] <5.7-maint>
* qpy/QtNetwork/qpynetwork_qhash.sip,
qpy/QtNetwork/qpynetwork_qmap.sip:
QtNetwork now uses the limited API.
[82798213e9a3] <5.7-maint>
* qpy/QtMultimedia/qpymultimedia_qlist.sip:
QtMultimedia now uses the limited API.
[6f34d2b297ce] <5.7-maint>
* PyQt5.msp, qpy/QtGui/qpygui_qlist.sip, qpy/QtGui/qpygui_qpair.sip,
qpy/QtGui/qpygui_qvector.sip,
qpy/QtGui/qpyopengl_array_convertors.cpp,
qpy/QtGui/qpyopengl_attribute_array.cpp,
qpy/QtGui/qpyopengl_data_cache.cpp,
qpy/QtGui/qpyopengl_data_cache.h, qpy/QtGui/qpyopengl_init.cpp,
qpy/QtGui/qpyopengl_uniform_value_array.cpp,
qpy/QtGui/qpyopengl_value_array.cpp,
qpy/QtGui/qpyopengl_version_functions.cpp:
QtGui now uses the limited API.
[937e89e76d2d] <5.7-maint>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.h,
qpy/QtCore/qpycore_pyqtmethodproxy.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.h,
qpy/QtCore/qpycore_pyqtproperty.cpp,
qpy/QtCore/qpycore_pyqtproperty.h,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_pyqtsignal.h:
More limited API changes - QtCore now compiles and loads.
[d9f7295c5dd7] <5.7-maint>
* qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_types.cpp, qpy/QtCore/qpycore_types.h:
More limited API changes.
[00a8fbb9f360] <5.7-maint>
2016-09-05 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qstring.cpp:
The QString convertors now use the limited API.
[f57db32b0b5d] <5.7-maint>
* qpy/QtCore/qpycore_objectified_strings.h,
qpy/QtCore/qpycore_post_init.cpp.in,
qpy/QtCore/qpycore_public_api.cpp,
qpy/QtCore/qpycore_qjsonvalue.cpp,
qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_types.cpp, qpy/QtCore/qpycore_types.h:
The QObject helpers now use the limited API.
[64c71c6a9ee3] <5.7-maint>
* qpy/QtCore/qpycore_post_init.cpp.in,
qpy/QtCore/qpycore_public_api.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.h,
qpy/QtCore/qpycore_pyqtproperty.cpp,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_pyqtsignal.h,
qpy/QtCore/qpycore_pyqtslot.cpp, qpy/QtCore/qpycore_types.cpp:
pyqtSignal now uses the limited API.
[9caf7074a4fe] <5.7-maint>
* lib/configure.py, qpy/QtCore/qpycore_post_init.cpp.in,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.cpp,
qpy/QtCore/qpycore_pyqtproperty.cpp,
qpy/QtCore/qpycore_pyqtproperty.h, qpy/QtCore/qpycore_types.cpp:
Python v3.4 is now needed when using the limited API. pyqtProperty
now uses the limited API.
[4b144ae683bd] <5.7-maint>
* qpy/QtCore/qpycore_post_init.cpp.in,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.h:
Moved the method proxy type to the limited API.
[ae940422e87f] <5.7-maint>
* qpy/QtCore/qpycore_post_init.cpp.in,
qpy/QtCore/qpycore_public_api.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.h,
qpy/QtCore/qpycore_pyqtconfigure.cpp:
The bound signal type is now created using the limited API.
[326cb5271420] <5.7-maint>
2016-08-30 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_public_api.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtslot.cpp:
More limited API changes.
[caef2e592071] <5.7-maint>
* qpy/QtCore/qpycore_misc.cpp:
Use sipCheckPluginForType().
[97c12d786d1e] <5.7-maint>
2016-08-29 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_enums_flags.cpp, qpy/QtCore/qpycore_types.cpp:
Use sipPyTypeDict() where appropriate.
[eb2d099a8804] <5.7-maint>
* qpy/QtCore/qpycore_classinfo.cpp,
qpy/QtCore/qpycore_enums_flags.cpp:
Used sipGetFrame() where appropriate.
[1d3dbd765934] <5.7-maint>
* qpy/QtCore/qpycore_chimera.cpp:
Use sipIsUserType().
[45310e53497b] <5.7-maint>
* PyQt5.msp, qpy/QtCore/qpycore_pyqtsignal.cpp,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qpair.sip,
qpy/QtCore/qpycore_qvector.sip:
Refactored the date/time conversions to use the new SIP calls.
[3705eb12433a] <5.7-maint>
2016-08-28 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtCore/qjsonarray.sip, qpy/QtCore/qjsonobject.sip,
qpy/QtCore/qpycore_chimera.cpp, qpy/QtCore/qpycore_enums_flags.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.cpp,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_qhash.sip,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qmap.sip,
qpy/QtCore/qpycore_qobject_getattr.cpp,
qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_qpair.sip, qpy/QtCore/qpycore_qset.sip,
qpy/QtCore/qpycore_qvector.sip, qpy/QtCore/qpycore_types.cpp,
qpy/QtCore/qstringlist.sip:
Remove references to tp_name.
[f7f509727431] <5.7-maint>
* PyQt5.msp, qpy/QtCore/qjsonarray.sip,
qpy/QtCore/qpycore_chimera.cpp, qpy/QtCore/qpycore_decorators.cpp,
qpy/QtCore/qpycore_enums_flags.cpp,
qpy/QtCore/qpycore_public_api.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtmethodproxy.cpp,
qpy/QtCore/qpycore_pyqtpyobject.cpp,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_pyqtslot.cpp,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qmap.sip,
qpy/QtCore/qpycore_qmessagelogger.cpp,
qpy/QtCore/qpycore_qmetaobject_helpers.cpp,
qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_qstring.cpp,
qpy/QtCore/qpycore_qvariant_value.cpp,
qpy/QtCore/qpycore_qvector.sip, qpy/QtCore/qpycore_types.cpp,
qpy/QtCore/qstringlist.sip:
Started to switch over from the fast macros to the limited API
versions.
[806af319f405] <5.7-maint>