forked from baoboa/pyqt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8296 lines (6694 loc) · 280 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
2016-07-25 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.7 for changeset 5e459651a5cb
[bb3ddca217a0] [tip]
* NEWS:
Released as v5.7.
[5e459651a5cb] [5.7]
* lib/configure.py:
Simplified the setting of PATH to include the qmake directory.
[8b1b53bd60b1]
2016-07-24 Phil Thompson <[email protected]>
* pylupdate/pylupdate_main.py, pyrcc/pyrcc_main.py,
pyuic/uic/pyuic.py:
Provided pylupdate, pyrcc and pyuic with main() wrappers that are
invoked by pip generated wrappers.
[0be6588d6b5c]
2016-07-22 Phil Thompson <[email protected]>
* lib/configure.py:
When --qmake is used on Windows add the directory containing qmake
to PATH.
[c9fb16354936]
* NEWS:
Updated the NEWS file.
[fd3b3f3e721c]
2016-07-19 Phil Thompson <[email protected]>
* METADATA.in:
Updates to METADATA.
[24491cc4092b]
2016-07-17 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Fixed the error message when an attempt is made to connect to a
pyqtSlot decorated method of a non-QObject class.
[84bb348755e1]
2016-07-12 Phil Thompson <[email protected]>
* pylupdate/pylupdate_main.py:
Make sure the progress messages from pylupdate appear in the right
order.
[975fc04a1d1d]
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Further fixes for choosing the right pyqtSlot decorator for a
signal.
[96281e6eb259]
2016-07-11 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Fixed an out-of-bound index regression.
[d4fcde1ad4e1]
2016-07-07 Phil Thompson <[email protected]>
* PyQt5.msp:
Completed the support for Qt v5.7.0.
[877c3a8a6cbd]
* PyQt5.msp:
Updated QtWidgets for Qt v5.7.0.
[4f59eafc77cf]
2016-07-06 Phil Thompson <[email protected]>
* PyQt5.msp, sphinx/api_metadata.cfg:
Updated most of QtWebEngineWidgets for Qt v5.7.0.
[ca2289d9d0d0]
* PyQt5.msp:
Updated QtGui for Qt v5.7.0.
[02bfa6bb3c5d]
* PyQt5.msp:
Updated QtCore for Qt v5.7.0.
[d9bf4daa7994]
2016-07-05 Phil Thompson <[email protected]>
* PyQt5.msp:
Added some Qt v5.7.0 support.
[7e56302498df]
2016-06-30 Phil Thompson <[email protected]>
* PyQt5.msp:
Initial scan of Qt v5.7.0.
[659af5655c90]
* build.py, installers/AddToPath.nsh, installers/BuildGPL.txt,
installers/PyQt5-Qt5-gpl.nsi, installers/StrSlash.nsh, installers
/mysql-config.bat, installers/psql-config.bat,
installers/pyqt5-check.py, installers/pyqt5-config.bat, installers
/qsci-pyqt5-config.bat, installers/qt5-config.bat, installers/sip-
pyqt5-config.bat:
Removed the old .nsi installers.
[22449f1b0af2]
* lib/PlansForWheels.txt, pylupdate/fetchtr.cpp, pylupdate/main.cpp,
pylupdate/merge.cpp, pylupdate/metatranslator.cpp,
pylupdate/metatranslator.h, pylupdate/numberh.cpp,
pylupdate/proparser.cpp, pylupdate/proparser.h,
pylupdate/sametexth.cpp, pylupdate/simtexth.cpp,
pylupdate/simtexth.h, pylupdate/translator.cpp,
pylupdate/translator.h, pyrcc/main.cpp, pyrcc/rcc.cpp, pyrcc/rcc.h,
rbproduct.py:
Merged the v5.6 maintenance branch into the trunk.
[7b8de1cc9585]
* qpy/QtCore/qpycore_qt_conf.cpp:
Removed the (now unnecessary) special handling of qt.conf on
Windows.
[1ada2bed3c1d] <5.6-maint>
2016-06-28 Phil Thompson <[email protected]>
* sphinx/multiinheritance.rst:
Fixed a typo in the docs.
[129e481a1ef1] <5.6-maint>
2016-06-27 Phil Thompson <[email protected]>
* lib/configure.py:
Fixed the creation of the .api file.
[8374c4c770c2] <5.6-maint>
2016-06-23 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_chimera.cpp:
Fixed a regression in the special handling of QGraphicsItem.
[02bc5a7d40d6] <5.6-maint>
2016-06-22 Phil Thompson <[email protected]>
* PyQt5.msp:
Add some %Imports so that a module imports all the modules it
explicitly references.
[bb6823120280] <5.6-maint>
* PyQt5.msp:
Updated for Qt v5.6.1.
[0ce20a30a8a1] <5.6-maint>
2016-06-21 Phil Thompson <[email protected]>
* .hgignore, PyQt5.msp:
Updated QtBluetooth for Qt v5.6.1.
[db0d3198b0da] <5.6-maint>
* rb-product, rbproduct.py:
Replaced the product plugin with a product file.
[a027ea04a02f] <5.6-maint>
2016-06-20 Phil Thompson <[email protected]>
* rbproduct.py:
Implemented the minimal-build.
[cff7f5006501] <5.6-maint>
* rbproduct.py:
The product plugin uses the sip from a minimal sip build.
[342d116ba9d6] <5.6-maint>
* commercial/pyqt-commercial.sip, lib/pyqt-commercial.sip,
rbproduct.py:
More product plugin refactoring.
[674b4a8b867f] <5.6-maint>
2016-06-18 Phil Thompson <[email protected]>
* rbproduct.py:
Updates to the product plugin in preparation for replacing build.py.
[2c314a5a11df] <5.6-maint>
2016-05-30 Phil Thompson <[email protected]>
* sphinx/qt_properties.rst:
Removed some (aparant) ambibuity in the docus related to
pyqtProperty.
[62540c04cb07] <5.6-maint>
2016-05-27 Phil Thompson <[email protected]>
* rbproduct.py:
Updated the product plugin to add pylupdate5 and pyrcc5 to wheels.
[117c4d6d7ed5] <5.6-maint>
* Makefile, build.py, lib/configure.py, pylupdate/fetchtr.cpp,
pylupdate/main.cpp, pylupdate/merge.cpp,
pylupdate/metatranslator.cpp, pylupdate/metatranslator.h,
pylupdate/numberh.cpp, pylupdate/proparser.cpp,
pylupdate/proparser.h, pylupdate/pylupdate_main.py,
pylupdate/pylupdatemod.sip, pylupdate/sametexth.cpp,
pylupdate/simtexth.cpp, pylupdate/simtexth.h,
pylupdate/translator.cpp, pylupdate/translator.h,
pyrcc/pyrcc_main.py, qpy/pylupdate/fetchtr.cpp,
qpy/pylupdate/merge.cpp, qpy/pylupdate/metatranslator.cpp,
qpy/pylupdate/metatranslator.h, qpy/pylupdate/numberh.cpp,
qpy/pylupdate/proparser.cpp, qpy/pylupdate/proparser.h,
qpy/pylupdate/pylupdate.h, qpy/pylupdate/sametexth.cpp,
qpy/pylupdate/simtexth.cpp, qpy/pylupdate/simtexth.h,
qpy/pylupdate/translator.cpp, qpy/pylupdate/translator.h:
Refactored pylupdate5 to be a wrapper around a Python extension
module.
[2793a3f7cd3d] <5.6-maint>
* Makefile, build.py, lib/configure.py, pyrcc/main.cpp,
pyrcc/pyrcc_main.py, pyrcc/pyrccmod.sip, pyrcc/rcc.cpp, pyrcc/rcc.h,
qpy/pyrcc/rcc.cpp, qpy/pyrcc/rcc.h:
Refactored pyrcc5 so that it is a Python wrapper around a C++
extension module.
[7f2ffc54b8b7] <5.6-maint>
2016-05-23 Phil Thompson <[email protected]>
* rbproduct.py:
Removed a duplicated import in the product plugin.
[8b00d4415e7d] <5.6-maint>
2016-05-21 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_public_api.cpp:
Fixed a reference count problem in py_err_print().
[427d33257f8b] <5.6-maint>
2016-05-20 Phil Thompson <[email protected]>
* sphinx/installation.rst:
Installation docs updates regarding MSVC 2015.
[43f7f646b5f1] <5.6-maint>
* PyQt5.msp:
Added some /ReleaseGIL/ annotations to potentially time consuming
methods of QSvgRenderer.
[9926569b7c70] <5.6-maint>
* qpy/QtCore/qpycore_public_api.cpp:
Fixed a recursion problem when handling uncaught Python exceptions.
[2bb4251641d5] <5.6-maint>
2016-05-16 Phil Thompson <[email protected]>
* sphinx/installation.rst:
More documentation updates.
[99509478d73f] <5.6-maint>
2016-05-15 Phil Thompson <[email protected]>
* sphinx/installation.rst:
Updated the installation instruction to cover wheels and
pyqtlicense.
[d59c0d20804e] <5.6-maint>
2016-05-12 Phil Thompson <[email protected]>
* METADATA.in, rbproduct.py:
Try to prevent the GPL and commercial versions being installed at
the same time. (Although it doesn't seem to work.)
[43e83a4358f7] <5.6-maint>
* METADATA.in, rbproduct.py:
Configure the PKG-INFO meta-data according to the license.
[fab20f18cc82] <5.6-maint>
* lib/PlansForWheels.txt:
Removed the plan for implementing wheels as it is now implemented.
[fe01c4744c57] <5.6-maint>
2016-05-11 Phil Thompson <[email protected]>
* PyQt5.msp:
Eliminate a compiler warning message.
[988950701a58] <5.6-maint>
2016-05-10 Phil Thompson <[email protected]>
* rbproduct.py:
More changes to the product plugin required by rbtools.
[1a1f56ebde3a] <5.6-maint>
2016-05-09 Phil Thompson <[email protected]>
* rbproduct.py:
Updates to the product plugin for the latest rbtools changes.
[f9f06f093901] <5.6-maint>
* rbproduct.py:
Give commercial unlicensed wheels a non-standard extension.
[a24e4ce279f6] <5.6-maint>
* commercial/BuildNotes.txt, commercial/pyqtlicense.pdy,
commercial/pyqtlicense.py:
Moved pyqtlicense to a separate repo.
[7ccc7256c707] <5.6-maint>
2016-05-08 Phil Thompson <[email protected]>
* commercial/BuildNotes.txt, commercial/pyqtlicense.pdy:
pyqtlicense can now be built for OS X.
[8b303294336e] <5.6-maint>
* pyuic/uic/pyuic.py:
Fixed misleading help text in pyuic5.
[b5b8f9ddca13] <5.6-maint>
* commercial/BuildNotes.txt, commercial/pyqtlicense.pdy:
Added the initial .pdy file for pyqtlicense.
[8b0724883824] <5.6-maint>
2016-05-05 Phil Thompson <[email protected]>
* METADATA.in:
Fixed out of date information in the meta-data.
[c1e0ebea4ad4] <5.6-maint>
2016-05-03 Phil Thompson <[email protected]>
* sphinx/incompatibilities.rst:
Documented the slot signature checking as a potential
incompatibility.
[12c3868cce84] <5.6-maint>
* qpy/QtCore/qpycore_chimera.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Fixed connections to decorated slots to enforce the slot signature
and not silently ignore the decorator. sip.voidptr and bytes
arguments to the decorator now generate an appropriate C++ type.
[2a1416f9a2d3] <5.6-maint>
2016-04-30 Phil Thompson <[email protected]>
* examples/multimediawidgets/camera/camera.py:
Fixed a bug in the camera.py example.
[20f251a709d4] <5.6-maint>
2016-04-29 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_chimera.cpp:
Don't expect QVariant convertor helpers to handle None.
[145437cb0acf] <5.6-maint>
2016-04-28 Phil Thompson <[email protected]>
* PyQt5.msp:
Added /ReleaseGIL/ to QPushButton.event() because it can trigger the
display of a QMenu which will enter its own event loop.
[9c50925525e4] <5.6-maint>
2016-04-27 Phil Thompson <[email protected]>
* commercial/pyqtlicense.py:
Added the --qt option to pyqtlicense.
[8054d2d4db90] <5.6-maint>
* commercial/pyqtlicense.py:
Implemented the --openssl option of pyqtlicense.
[c4fb07c17181] <5.6-maint>
* commercial/pyqtlicense.py:
Implemented the --no-msvc-runtime and --no-openssl options to
pyqtlicense.
[4591c0e28b5a] <5.6-maint>
2016-04-26 Phil Thompson <[email protected]>
* commercial/pyqt-commercial.sip:
Licensing on OS X now works.
[a3b0438a540f] <5.6-maint>
2016-04-25 Phil Thompson <[email protected]>
* commercial/pyqt-commercial.sip:
Debugged the license check code.
[5f579e057d18] <5.6-maint>
* commercial/pyqt-commercial.sip, commercial/pyqtlicense.py:
Initial implementation of pyqtlicense.
[93328b3c897a] <5.6-maint>
* Makefile, commercial/pyqt-commercial.sip, rbproduct.py:
Implemented the creation of unlicensed commercial wheels.
[f042971d28ec] <5.6-maint>
* lib/configure.py:
--no-timestamps no longer passes the (redundant) -T flag to sip.
[77bff7d59668] <5.6-maint>
* lib/configure.py:
Fixed the handling of dbus-python if it has multiple include
directories.
[db626499ded9] <5.6-maint>
* installers/PyQt5-Qt5-gpl.nsi:
Fixed the Windows installers so that QtWebEngineProcess works.
[06ecf8131050] <5.6-maint>
2016-04-24 Phil Thompson <[email protected]>
* .hgtags:
Added tag 5.6 for changeset ae50bac2ef88
[b1939581dab4]
* NEWS:
Released as v5.6.
[ae50bac2ef88] [5.6]
* rbproduct.py:
The SSL library and MSVC runtime are now installed in the PyQt5
directory.
[6b7672768236]
2016-04-23 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qt_conf.cpp:
Fixed the setting of PATH on Windows.
[8a95f97ca7aa]
* METADATA.in, installers/BuildGPL.txt, installers/PyQt5-Qt5-gpl.nsi,
installers/pyqt5-check.py, installers/pyqt5-config.bat,
lib/LICENSE.commercial.short, lib/LICENSE.gpl,
lib/LICENSE.gpl.short, lib/LICENSE.internal:
Updated the installers fro Qt v5.6.0. Fixed the dates on copyright
messages. Updated the meta-data to say that Linux wheels will be
available on PyPI.
[f9cf4e3290c7]
2016-04-21 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_qt_conf.cpp:
When --qtconf-prefix is specified then PATH is alos set on Windows.
[d147afaee2c6]
2016-04-18 Phil Thompson <[email protected]>
* lib/configure.py, rbproduct.py:
Removed some (now redundant) qmake handlign on Windows.
[02f8ab12f5ad]
2016-04-17 Phil Thompson <[email protected]>
* lib/configure.py, rbproduct.py:
More handling of spaces in directory names. Account for different
Makefile structures on Windows.
[94a4e61390a3]
* rbproduct.py:
Fixed a testing regression in the product plugin.
[8e05253f91d8]
* sphinx/installation.rst:
Removed a Sphinx warning.
[dd499921d5fb]
* rbproduct.py:
Implemented the minimal install in the product plugin.
[8e25715c1d82]
* rbproduct.py:
Exploit verbose mode in the product plugin.
[8099e3b3bca3]
* rbproduct.py:
Fixed permissions on the product plugin.
[19c006f2d22c]
2016-04-16 Phil Thompson <[email protected]>
* rbproduct.py:
The QScintilla API file is now included in the wheels.
[a8aa89c52747]
* METADATA.in:
Fixed a typo in the meta-data.
[8f14fe6ee051]
* Makefile, build.py, rbproduct.py:
Removed the --omit-license-tag option from build.py as it is no
longer needed.
[d24af7ea1d4c]
2016-04-15 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtWidgets/qmaccocoaviewcontainer.sip:
QMenu.setAsDockMenu() is not available on iOS.
[8dba3377ce19]
2016-04-14 Phil Thompson <[email protected]>
* lib/configure.py:
The --dbus option to configure.py overrides (rather than
supplements) any directories returned by pkg-config.
[e39f0eeff58b]
* Makefile, lib/configure.py:
Fixed the handling of dbus-python header files.
[608f71af6d2f]
* qpy/QtCore/qpycore_qt_conf.cpp:
Adjusted qt.conf on Windows so that QtWebEngineProcess can be found.
[a4d8055d6b1a]
* Makefile, build.py, rbproduct.py:
Ensure regular snapshots have the license tag but those used in
wheels don't.
[ca8272fb55ff]
2016-04-12 Phil Thompson <[email protected]>
* rbproduct.py:
Fixes for the additional Windows DLLs.
[8402c18b9cfe]
* rbproduct.py:
Windows wheels will now install OpenSSL DLLs and the MSVC C++
runtime DLL.
[d8f47655a777]
2016-04-09 Phil Thompson <[email protected]>
* METADATA.in:
Updated the description in the meta-data.
[94bd36376d2a]
2016-04-08 Phil Thompson <[email protected]>
* METADATA.in:
Update the METADATA to try and require sip.
[6a2e30c56378]
* METADATA.in, build.py:
Use v1.1 for the METADATA format. Don't tag the GPL source packages
with '_gpl' because of the knock-on effect with PyPi.
[04357f447388]
* sphinx/qml.rst:
Fixed a sphinx warning.
[00b1ee427a44]
* METADATA.in, rbproduct.py:
Added the METADATA.in file.
[0d593d43bf70]
2016-04-06 Phil Thompson <[email protected]>
* rbproduct.py:
Added the test for SQL drivers to the product plugin.
[9d2b4177b3cf]
* rbproduct.py:
Fixed the tests defined in the product plugin.
[21a0cdb51e30]
2016-04-05 Phil Thompson <[email protected]>
* rbproduct.py:
Added more tests to the product plugin.
[9f8f7adbdcf0]
* rbproduct.py:
Properly defined the PyQt5 modules in the product plugin.
[63dc33b74805]
* rbproduct.py:
Added the rbtools product plugin.
[da8471176b5c]
2016-04-04 Phil Thompson <[email protected]>
* lib/configure.py, qpy/QtCore/qpycore_qt_conf.cpp,
sphinx/installation.rst:
Removed --qtconf-libraries.
[b750e716119b]
* lib/configure.py, qpy/QtCore/qpycore_api.h,
qpy/QtCore/qpycore_post_init.cpp.in, qpy/QtCore/qpycore_qt_conf.cpp,
sphinx/installation.rst:
Renamed --qt-prefix-path to --qtconf-prefix. Added --qtconf-
libraries.
[e63e022443bc]
2016-04-03 Phil Thompson <[email protected]>
* lib/configure.py:
More spaces-in-path fixes.
[bebf960c9e18]
* lib/configure.py:
Fixed the invocation of sip if it has spaces in its path.
[a491032a2f01]
2016-04-02 Phil Thompson <[email protected]>
* lib/configure.py, qpy/QtCore/qpycore_api.h,
qpy/QtCore/qpycore_post_init.cpp.in, qpy/QtCore/qpycore_qt_conf.cpp:
The Qt prefix path is now calculated at run-time to make it re-
locatable.
[0c8718600680]
2016-04-01 Phil Thompson <[email protected]>
* lib/configure.py:
Fixed the embedded qt.conf.
[def17c899da2]
2016-03-31 Phil Thompson <[email protected]>
* lib/configure.py, qpy/QtCore/qpycore_post_init.cpp.in,
sphinx/installation.rst:
Added the --qt-prefix-path option to configure.py.
[7e55c68410fe]
* PyQt5.msp:
Fixed an annotation typo.
[bd8301c85566]
2016-03-29 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the missing qt_set_sequence_auto_mnemonic() to QtGui.
[1cc2ecff7245]
2016-03-28 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the missing MouseLock to QWebEnginePage.Feature.
[49675f503e40]
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Backed out an incorrect fix (not mentioned in the previous(?)
commit).
[3a53b336acd1]
* qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_qobject_getattr.cpp:
Respect method names starting with '__' found in the meta-object as
private as they are most likely to be Python methods decorated with
pyqtSlot.
[6cb67313a7f3]
2016-03-27 Phil Thompson <[email protected]>
* lib/PlansForWheels.txt:
Added the plan for handling commercial and GPL wheels.
[dfc074229564]
2016-03-26 Phil Thompson <[email protected]>
* Makefile, lib/configure.py, sphinx/installation.rst:
Added the --rpath option to configure.py.
[2787cd711d1c]
2016-03-25 Phil Thompson <[email protected]>
* QAxContainer/qaxbase.sip:
Removed deprecated /DocValue/ annotations.
[1f2319650dff]
* build.py:
Apply the new naming standards to generated source packages.
[e1f0d30ea050]
2016-03-24 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_pyqtboundsignal.cpp:
Connecting to a decorated method will now fail without a compatible
signature.
[d58baf1a1473]
* examples/quick/models/abstractitemmodel/abstractitemmodel.py:
Fixed a bug in the abstyractitemmodel.py example.
[654315b1dcf6]
2016-03-18 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the missing WA_DontShowOnScreen.
[571b2ed0ce32]
2016-03-17 Phil Thompson <[email protected]>
* qpy/QtCore/qsysinfo.sip:
Updated for Qt v5.6.0. Added the missing QSysInfo static functions.
[740db730593a]
2016-03-13 Phil Thompson <[email protected]>
* pyuic/uic/driver.py, pyuic/uic/pyuic.py:
Fixed a couple of pyuic syntax errors.
[70e9fff5c84d]
2016-03-12 Phil Thompson <[email protected]>
* PyQt5.msp:
Restored the QFlags copy ctor to ensure assignment helpers are
generated.
[2c5cceeba03a]
2016-03-11 Phil Thompson <[email protected]>
* qpy/QtQml/qpyqmlobject.cpp, qpy/QtQml/qpyqmlobject.h:
Fixed a deadlock problem in the implementation of QML proxies.
[293152ad5ca1]
2016-03-09 Phil Thompson <[email protected]>
* examples/designer/plugins/widgets/helloglwidget.py:
Fixed the heeloglwidget.py example so that it doesn't use PyOpenGL.
[2d7a76584798]
* qpy/QtCore/qpycore_chimera.cpp, qpy/QtCore/qpycore_chimera.h,
qpy/QtCore/qpycore_enums_flags.cpp, qpy/QtCore/qpycore_types.cpp,
sphinx/metaobjects.rst:
Fixed the defining of enums and flags so that they appear as
expected in Qt Designer.
[0f17783785e4]
2016-03-08 Phil Thompson <[email protected]>
* qpy/QtCore/qpycore_types.cpp:
Don't include an explicit scope when implementing Q_ENUMS and
Q_FLAGS.
[256cb1cf3c5d]
* examples/designer/plugins/python/multipagewidgetplugin.py,
examples/designer/plugins/widgets/multipagewidget.py:
Fixes to the plugins.py example.
[151f0d8f13e8]
* pyuic/uic/Compiler/compiler.py, pyuic/uic/Compiler/misc.py,
pyuic/uic/__init__.py, pyuic/uic/driver.py, pyuic/uic/pyuic.py,
sphinx/designer.rst:
Added the --import-from command line argument to pyuic5.
[d05ca4f9dda7]
2016-03-07 Phil Thompson <[email protected]>
* PyQt5.msp:
Added the QVersionNumber class.
[c660515bc830]
* PyQt5.msp:
Updated QtOpenGL for Qt v5.6rc.
[ea5c02548075]
* lib/configure.py, sphinx/platforms.rst:
The Qt v5.5 rpath problems seem to have been fixed in v5.6.
[5205794e6b9a]
* PyQt5.msp, lib/SubclassCode/QtQuick.versions:
Updated the QObject convertor code for QtQuick and QtWebEngineCore.
[82eea261797e]
2016-03-06 Phil Thompson <[email protected]>
* PyQt5.msp, lib/configure.py, sphinx/api_metadata.cfg,
sphinx/introduction.rst:
Implemented the QtWebEngineCore module.
[023eb0e60c08]
* PyQt5.msp:
Completed the QtWidgets updates for Qt v5.6rc.
[045ee6a65f5f]
2016-03-05 Phil Thompson <[email protected]>
* PyQt5.msp:
Started updating the QtWidgets module for Qt v5.6rc.
[742e6cc983e8]
* sphinx/api_metadata.cfg:
Updated the API metadata for new classes added so far.
[531a749af28d]
* PyQt5.msp:
Updated the QtQml, QtQuick, QtQuickWidgets, QtSensors, QtSerialPort,
QtSql, QtSvg and QtTest modules for Qt v5.6rc.
[b3632c46462b]
2016-03-04 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated the QtNfc, QtPositioning, QtPrintSupport, QtXml and
QtXmlPatterns modules for Qt v5.6rc.
[ae1f88b0c079]
* PyQt5.msp, qpy/QtMultimedia/qpymultimedia_qlist.sip:
Updated the QtHelp, QtLocation, QtMultimedia, QtMultimediaWidgets
and QtNetwork modules for Qt 5.6rc.
[b957d29ef95c]
* PyQt5.msp:
Completed the QtGui support for Qt v5.6rc.
[e30d789c0141]
* PyQt5.msp:
More QtGui updates for Qt v5.6rc.
[e232b46d197a]
2016-03-03 Phil Thompson <[email protected]>
* PyQt5.msp:
Partially implemented the Qt v5.6rc support for the QtGui module.
[eb7a53fdfb5b]
2016-03-02 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated the QtDBus and QtDesigner modules for Qt v5.6.0rc.
[242ffa94e504]
* PyQt5.msp:
Updated the QtCore module for Qt v5.6.0rc.
[75369fe650fe]
2016-03-01 Phil Thompson <[email protected]>
* PyQt5.msp:
Updated the Enginio and QtBluetooth modules for Qt v5.6rc.
[b86fccf0f71e]
* lib/configure.py:
Don't embed the -f flag in PYQT_CONFIGURATION.
[c1a15cadbc73]
* PyQt5.msp:
All implementations of swap() now have the /Constrained/ annotation.
[fb287ed7e9da]
* Makefile, PyQt5.msp:
Removed a redundant QBrush ctor.
[5f34d42010aa]
2016-02-29 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixed the previous change.
[b86e13d182d7]
* Makefile, PyQt5.msp:
Removed the redundant QVariant copy ctor.
[0cb802120239]
2016-02-27 Phil Thompson <[email protected]>
* Merged the 5.5-maint branch into the trunk.
[f923036edfe1]
* PyQt5.msp:
Fixed the type hint for QDesktopServices.setUrlHandler().
[0fa72a09eb1e] <5.5-maint>
* PyQt5.msp, 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:
Use Iterable rather than Iterator in type hints.
[ab690c76000c] <5.5-maint>
2016-02-26 Phil Thompson <[email protected]>
* PyQt5.msp:
Removed some superfluous ctors.
[f0c110db9340] <5.5-maint>
* PyQt5.msp:
Make sure the datetime module is available in stub files.
[aad90c9b7268] <5.5-maint>
* PyQt5.msp:
Updated type hints for classes with %ConvertToTypeCode.
[0f619b3c60e2] <5.5-maint>
2016-02-25 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtQml/qmlregistertype.sip:
Updated the project version number. More type hint improvements.
[8be0a10b466f] <5.5-maint>
2016-02-24 Phil Thompson <[email protected]>
* PyQt5.msp:
More changes to the type hints.
[5a3f980959af] <5.5-maint>
2016-02-19 Phil Thompson <[email protected]>
* PyQt5.msp:
Fixed some handwritten type hine code.
[2677d628d385] <5.5-maint>
2016-02-18 Phil Thompson <[email protected]>
* test/tests/classes/test_QFlags.py:
Added the QFlags unit tests.
[796954fadf1e] <5.5-maint>
* lib/configure.py:
SIP warnings are now treated as fatal.
[ef2c015cb086] <5.5-maint>
* Makefile, PyQt5.msp:
Updated the QFlags support from PyQt4.
[5bd2318ecef3] <5.5-maint>
* PyQt5.msp:
Completed the conversion to /TypeHint/.
[7d4c7c1162e0] <5.5-maint>
* PyQt5.msp:
Updated the type hints for the OpenGL modules.
[a3d88993c395] <5.5-maint>
2016-02-17 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_public_api.cpp,
qpy/QtCore/qpycore_pyqtboundsignal.cpp,
qpy/QtCore/qpycore_pyqtconfigure.cpp,
qpy/QtCore/qpycore_pyqtsignal.cpp, qpy/QtCore/qpycore_qhash.sip,
qpy/QtCore/qpycore_qlist.sip, qpy/QtCore/qpycore_qmap.sip,
qpy/QtCore/qpycore_qmetaobject_helpers.cpp,
qpy/QtCore/qpycore_qobject_helpers.cpp,
qpy/QtCore/qpycore_qpair.sip, qpy/QtCore/qpycore_qset.sip,
qpy/QtCore/qpycore_qstring.cpp, qpy/QtCore/qpycore_qvector.sip,
qpy/QtCore/qpycore_types.cpp, qpy/QtCore/qstringlist.sip,
qpy/QtGui/qpygui_qlist.sip, qpy/QtGui/qpygui_qpair.sip,
qpy/QtGui/qpygui_qvector.sip, qpy/QtGui/qpyopengl_api.h,
qpy/QtGui/qpyopengl_array_convertors.cpp,
qpy/QtGui/qpyopengl_attribute_array.cpp,
qpy/QtGui/qpyopengl_uniform_value_array.cpp,
qpy/QtGui/qpyopengl_value_array.cpp,
qpy/QtMultimedia/qpymultimedia_qlist.sip,
qpy/QtNetwork/qpynetwork_qhash.sip,
qpy/QtPrintSupport/qpyprintsupport_qlist.sip,
qpy/QtQml/qpyqmllistpropertywrapper.cpp,
qpy/QtQuick/qpyquick_chimera_helpers.cpp,
qpy/QtWidgets/qpywidgets_qlist.sip:
Removed all uses of SIP_SSIZE_T.
[f1c9ab62de9e] <5.5-maint>
2016-02-16 Phil Thompson <[email protected]>
* PyQt5.msp, qpy/QtBluetooth/qpybluetooth_qlist.sip,
qpy/QtBluetooth/qpybluetooth_quint128.sip,
qpy/QtCore/qjsonarray.sip, qpy/QtCore/qpycore_qlist.sip,
qpy/QtCore/qpycore_qpair.sip, qpy/QtCore/qpycore_qset.sip,
qpy/QtCore/qpycore_qvector.sip, qpy/QtCore/qstringlist.sip,
qpy/QtGui/qpygui_qlist.sip, qpy/QtGui/qpygui_qpair.sip,
qpy/QtGui/qpygui_qvector.sip,
qpy/QtMultimedia/qpymultimedia_qlist.sip,
qpy/QtPrintSupport/qpyprintsupport_qlist.sip,
qpy/QtWidgets/qpywidgets_qlist.sip:
Removed all occurrences of SIP_SSIZE_T_FORMAT.
[6c323983f866] <5.5-maint>
* Makefile, PyQt5.msp:
Make use of the new type hint class annotaions for QVariant.
[9e1f9b26502f] <5.5-maint>
* PyQt5.msp:
Fix the type hints for signals and slots.
[a7286c0088ff] <5.5-maint>
* PyQt5.msp:
Migrated the simple uses of /DocValue/ to /TypeHint/.
[17fe5ba76141] <5.5-maint>
* Makefile, PyQt5.msp:
Removed /TypeHintValue/ when they will now be picked up from the
mapped type.
[e9ca1dfbd2f9] <5.5-maint>
* sphinx/gotchas.rst:
Extended the section of QString gotchas to include null vs. empty
strings.
[4f9c20591646] <5.5-maint>
2016-02-15 Phil Thompson <[email protected]>
* Makefile, PyQt5.msp, qpy/QtBluetooth/qpybluetooth_qlist.sip,
qpy/QtCore/qjsonarray.sip, qpy/QtCore/qjsonobject.sip,
qpy/QtCore/qpycore_qhash.sip, qpy/QtCore/qpycore_qlist.sip,
qpy/QtCore/qpycore_qmap.sip, qpy/QtCore/qpycore_qset.sip,
qpy/QtCore/qpycore_qvector.sip, qpy/QtCore/qstringlist.sip,
qpy/QtGui/qpygui_qlist.sip, qpy/QtGui/qpygui_qvector.sip,