-
Notifications
You must be signed in to change notification settings - Fork 585
/
ChangeLog
9740 lines (7766 loc) · 321 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
2018-02-26 Phil Thompson <[email protected]>
* NEWS:
Released as v5.10.1.
[dc149e6643d5] [5.10.1] <5.10-maint>
2018-02-21 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the new QAbstractOAuth2 methods added in Qt v5.10.1.
[b2ea22e58de6] <5.10-maint>
2018-02-20 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated for Qt v5.10.1.
[e27d89dd3457] <5.10-maint>
2018-02-13 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the missing qmlClearTypeRegistrations() to the QtQml module.
[c9a7040cb4a7] <5.10-maint>
2018-02-12 Phil Thompson <[email protected]>
* PyQt5.msp:
Removed incorrect annotation on
QQmlNetworkAccessManagerFactory::create().
[6401ed81edee] <5.10-maint>
2018-02-08 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_chimera.cpp:
Removed some (hopefully) redundant code.
[6e9e33411f41] <5.10-maint>
2018-02-06 Phil Thompson <[email protected]>
* PyQt5.msp:
Make sure LTS releases of Qt v5.9 don't get handled as Qt v5.10.
[8474d7f26f1f] <5.10-maint>
2018-02-04 Phil Thompson <[email protected]>
* lib/configure.py:
Added the --disabled-feature option to configure.py.
[5a554278bbf0] <5.10-maint>
2018-01-31 Phil Thompson <[email protected]>
* examples/quick/tutorials/extending/chapter1-basics/chapter1-basics.p
y, examples/quick/tutorials/extending/chapter2-methods/chapter2-meth
ods.py, examples/quick/tutorials/extending/chapter3-bindings/chapter
3-bindings.py, examples/quick/tutorials/extending/chapter4-customPro
pertyTypes/chapter4-customPropertyTypes.py, examples/quick/tutorials
/extending/chapter5-listproperties/chapter5-listproperties.py:
Avoid an assertion failure when using a debug version of Qt.
[6eb406e64db8] <5.10-maint>
* qpy/QtQml/qpyqml_register_singleton_type.cpp,
qpy/QtQml/qpyqml_register_type.cpp:
Reverted the change in PyQt v5.8 that dealt with QML and properties
so that all the examples work again.
[9eb53449681d] <5.10-maint>
2018-01-23 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.10 for changeset 9f68e48cf5f5
[c18dad0e8eec]
* NEWS:
Released as v5.10.
[9f68e48cf5f5] [5.10]
* NEWS:
Updated the NEWS file.
[0f2753f9a303]
2018-01-19 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the %ConvertToSubClassCode for QtNetworkAuth.
[b9783c0386aa]
* PyQt5.msp:
Implemented the remaining QtNetworkAuth methods.
[73f3c9cc94ae]
2018-01-18 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixes to get QtNetworkAuth to build.
[4d37b274bc0a]
* lib/configure.py:
Added support for QtNetworkAuth to configure.py.
[4f516477a254]
* qpy/QtCore/qpycore_qpair.sip:
Implemented the mapped typ etemplate for QPair<T1, T2> needed by
QtNetworkAuth.
[4657c9ea8733]
2018-01-17 Phil Thompson <[email protected]>
* PyQt5.msp:
Added initial support for QtNetworkAuth.
[ddbbb40ddf1e]
* PyQt5.msp:
Updated QtWidgets for Qt v5.10.0.
[dadfd4f1295c]
* PyQt5.msp:
Updated QtTest, QtWebChannel, QtWebEngine, QtWebEngineCore,
QtWebEngineWidgets and QtWebSockets for Qt v5.10.0.
[83b53f46e600]
2018-01-16 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated QtPrintSupport, QtQml, QtQuick, QtQuickWidgets, QtSensors,
QtSerialPort and QtSql for Qt v5.10.0.
[6b6e25ea6792]
* PyQt5.msp:
Updated QtNetwork, QtNfc, QtOpenGL and QtPositioning for Qt v5.10.0.
[743896f26ce5]
2018-01-10 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated QtLocation, QtMultimedia and QtMultimediaWidgets for Qt
v5.10.0.
[3289ec6e2f72]
* PyQt5.msp:
Updated QtGui for Qt v5.10.0.
[fcec94307c8f]
* PyQt5.msp:
Updated QtDBus, QtDesigner, QtHelp, QtSvg, QtXml and QtXmlPatterns
for Qt v5.10.0.
[8fad1106423b]
2018-01-09 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qobject_helpers.cpp:
Properly fixed a regression in QObject.inherits().
[92cbc384946a]
* PyQt5.msp:
Finished updating QtCore for Qt v5.10.0.
[3dcac7147ec6]
2018-01-08 Phil Thompson <[email protected]>
* PyQt5.msp:
Started to update QtCore for Qt v5.10.0.
[c18a11bf815d]
* PyQt5.msp:
Updated QtBluetooth for Qt v5.10.0.
[df5635ee7bf6]
* Merged the 5.9-maint branch into the trunk.
[e973de99d35d]
2018-01-05 Phil Thompson <[email protected]>
* pyuic/uic/Compiler/qobjectcreator.py,
pyuic/uic/Loader/qobjectcreator.py, pyuic/uic/widget-
plugins/qtcharts.py:
Fixed pyuic's handling of widget implemented in a C++ namespace
(specifically QChartView).
[338e6a251aee] <5.9-maint>
2017-12-20 Phil Thompson <[email protected]>
* pyrcc/pyrcc_main.py:
Fixed the handling of arguments to pyrcc5.
[7d9643a53c66] <5.9-maint>
* lib/configure.py:
Fixed out-of-tree builds.
[573d3b66d402] <5.9-maint>
2017-12-16 Phil Thompson <[email protected]>
* lib/configure.py:
Fixes for building in a Windows venv.
[1003c37c2cb5] <5.9-maint>
2017-12-12 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Die more gracefully when attempting to connect to a Python method
with a non-ASCII name.
[0d30a9b8441b] <5.9-maint>
2017-11-24 Phil Thompson <[email protected]>
* pyuic/uic/properties.py:
Fixed a bug in loadUi() handling gradients.
[0aef34d2beb2] <5.9-maint>
2017-11-23 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.9.2 for changeset 7fac90c2d528
[02e55c83f900] <5.9-maint>
* NEWS:
Released as v5.9.2.
[7fac90c2d528] [5.9.2] <5.9-maint>
* PyQt5.msp:
Updated for Qt v5.9.3.
[5fffc2c72bd5] <5.9-maint>
2017-11-21 Phil Thompson <[email protected]>
* PyQt5.msp:
Added /NewThread/ to QRunnable::run().
[17c89f899276] <5.9-maint>
2017-11-19 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_event_handlers.cpp:
Ignore destroyed QObjects when there is no interpreter.
[276966407f1c] <5.9-maint>
2017-11-18 Phil Thompson <[email protected]>
* QtAndroidExtras/qtandroid.sip:
Fixed the name of the QtAndroid header file.
[58b1a3f4108d] <5.9-maint>
* QtAndroidExtras/qtandroid.sip:
Fixed the name of the QtAndroid namespace.
[87890f4acfe5] <5.9-maint>
2017-11-15 Phil Thompson <[email protected]>
* QtAndroidExtras/qtandroid.sip:
Added the missing QtAndroid .sip file.
[ee26f550ab15] <5.9-maint>
* QtMacExtras/qmacpasteboardmime.sip, QtMacExtras/qmactoolbar.sip,
QtMacExtras/qmactoolbaritem.sip:
Fixed QtMacExtras for iOS.
[058934cee148] <5.9-maint>
* QtAndroidExtras/QtAndroidExtrasmod.sip:
Added the QtAndroid namespace to QtAndroidExtras.
[170c3a17042e] <5.9-maint>
2017-11-14 Phil Thompson <[email protected]>
* lib/configure.py:
Check that user supplied module names are valid.
[b1154438a794] <5.9-maint>
2017-11-10 Phil Thompson <[email protected]>
* QtAndroidExtras/QtAndroidExtrasmod.sip,
QtAndroidExtras/qandroidjniobject.sip, lib/configure.py:
Added the QtAndroidExtras module containing a sub-set of the
QAndroidJniObject class.
[bad8eb717c80] <5.9-maint>
2017-11-06 Phil Thompson <[email protected]>
* PyQt5.msp:
Restored QUrl.query() for Qt v5.9.0 and earlier.
[3a40388e51bc] <5.9-maint>
2017-11-02 Phil Thompson <[email protected]>
* lib/configure.py:
Module .pro fixes for static builds.
[08ccbbe1325c] <5.9-maint>
* lib/configure.py:
Extension modules on macOS are now bundles rather than shared
libraries.
[2f298782351f] <5.9-maint>
* .hgtags:
Added tag 5.9.1 for changeset 6a8d6710ba64
[b68eec6b9b94] <5.9-maint>
* NEWS:
Released as v5.9.1.
[6a8d6710ba64] [5.9.1] <5.9-maint>
* lib/configure.py:
Windows-specific fixes related to the detection of sip version
mismatches.
[2a30790477c1] <5.9-maint>
2017-11-01 Phil Thompson <[email protected]>
* lib/configure.py:
Further fixes for --sip-incdir.
[4859965322a4] <5.9-maint>
* lib/configure.py:
Fixed the handling of the --sip-incdir option.
[e1ac86a6bc52] <5.9-maint>
* config-tests/cfgtest_QtCore.cpp, lib/configure.py:
configure.py now makes sure that the version numbers of the sip code
generator and sip.h match.
[d5b36b960994] <5.9-maint>
* lib/configure.py:
Added the --allow-sip-warnings option to configure.py.
[f4eebe2a30ee] <5.9-maint>
2017-10-31 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_event_handlers.cpp:
Release the GIL when connecting a QObject monitor because of
reported deadlocks.
[f945685fa2b5] <5.9-maint>
2017-10-07 Phil Thompson <[email protected]>
* PyQt5.msp:
Added support for Qt v5.9.2.
[f2ddcf108add] <5.9-maint>
* PyQt5.msp:
Rescanned QUrl with the fixed metasip to fix code that may not be
able to be handled by old versions of GCC. There will probably be
other cases but the only solution woukd be to rescan every single
class.
[dd92e57fbfaa] <5.9-maint>
2017-10-06 Phil Thompson <[email protected]>
* pyuic/uic/uiparser.py:
Fixed pyuic handling of margins of QWidgets that are not layout
widgets.
[ee2eef5d82ee] <5.9-maint>
2017-09-22 Phil Thompson <[email protected]>
* pyuic/uic/uiparser.py:
Fixed the default margins of nested layouts.
[0e7d014185b6] <5.9-maint>
2017-09-06 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_event_handlers.cpp:
Fixed a memory leak caused by multiple identical connections when
monitoring a QObject's lifecycle.
[0abf2886cbef] <5.9-maint>
2017-09-05 Phil Thompson <[email protected]>
* examples/ipc/sharedmemory/sharedmemory.py:
Fixed the shared memeory example.
[718b731a63a8] <5.9-maint>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_qlist.sip, qpy/QtGui/qpygui_qlist.sip,
qpy/QtGui/qpygui_qpair.sip,
qpy/QtMultimedia/qpymultimedia_qlist.sip,
qpy/QtNetwork/qpynetwork_qhash.sip,
qpy/QtPrintSupport/qpyprintsupport_qlist.sip,
qpy/QtWidgets/qpywidgets_qlist.sip:
Removed all calls to sipCanConvertToEnum().
[c75deb889b1e] <5.9-maint>
2017-08-31 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_enums_flags.cpp,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_qhash.sip,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qmap.sip,
qpy/QtCore/qpycore_qmessagelogger.cpp, qpy/QtCore/qpycore_qpair.sip,
qpy/QtCore/qpycore_qvector.sip, qpy/QtGui/qpyopengl_value_array.cpp,
qpy/QtQml/qpyqmllistproperty.cpp:
Removed all calls to SIPLong_AsLong().
[326d7caa3d2e] <5.9-maint>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_qjsonvalue.cpp, qpy/QtCore/qpycore_qlist.sip,
qpy/QtGui/qpygui_qlist.sip, qpy/QtGui/qpygui_qpair.sip,
qpy/QtMultimedia/qpymultimedia_qlist.sip,
qpy/QtNetwork/qpynetwork_qhash.sip,
qpy/QtPrintSupport/qpyprintsupport_qlist.sip,
qpy/QtQml/qpyqml_qjsvalue.cpp, qpy/QtWidgets/qpywidgets_qlist.sip:
Migrated all handwritten code to use sipConvertToEnum().
[8f3251301f87] <5.9-maint>
2017-08-30 Phil Thompson <[email protected]>
* rb-product:
SIP v4.19.4 is now required.
[302c09890e23] <5.9-maint>
2017-07-25 Phil Thompson <[email protected]>
* pyrcc/pyrcc_main.py, pyrcc/pyrccmod.sip, qpy/pyrcc/rcc.h:
Removed the unimplemented -name option to pyrcc.
[307cff7f1dbb] <5.9-maint>
2017-07-22 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixed QTabBar when built without accessibility support.
[0c5314852dd2] <5.9-maint>
2017-07-16 Phil Thompson <[email protected]>
* lib/configure.py:
Fixed the configuration tests' handling of disabled features.
[1a7f9ba28fed] <5.9-maint>
2017-07-10 Phil Thompson <[email protected]>
* qpy/QtBluetooth/qpybluetooth_qlist.sip, qpy/QtCore/qjsonarray.sip,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qset.sip,
qpy/QtCore/qpycore_qvector.sip, qpy/QtCore/qstringlist.sip,
qpy/QtGui/qpygui_qvector.sip,
qpy/QtMultimedia/qpymultimedia_qlist.sip,
qpy/QtPrintSupport/qpyprintsupport_qlist.sip,
qpy/QtWidgets/qpywidgets_qlist.sip:
Clear the exception whenever PyObject_GetIter() fails when checking
if an object can be converted.
[07fc1c2b14a6] <5.9-maint>
* PyQt5.msp:
Release the GIL on all QThreadPool methods that access the internal
mutex.
[f710d0e81300] <5.9-maint>
2017-07-03 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.9 for changeset 307fa2afedd4
[d84f568cd92f]
* 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>