-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6853 lines (5413 loc) · 239 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
2023-06-07 Phil Thompson <[email protected]>
* NEWS, Python/project.py:
Rolled back the explicit setting of the minimum GLIBC version now
that we have changed the build platform.
[4ea73206e689] [2.14.1] <2.14-maint>
2023-05-22 Phil Thompson <[email protected]>
* NEWS, qt/InputMethod.cpp, qt/qscintilla.pro:
Fixed a pointer truncation in the handling of input method queries.
[e3a47ebe8c93] <2.14-maint>
2023-05-14 Phil Thompson <[email protected]>
* NEWS, Python/project.py:
Fixed the manylinux wheel tag when building on Ubuntu 22.04.
[77c97572f18c] <2.14-maint>
2023-04-27 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.14.0 for changeset b748338e45bb
[670c1fb1beeb]
2023-04-24 Phil Thompson <[email protected]>
* NEWS, qt/qsciscintilla.cpp:
Fixed a regression in QSciScintilla::text().
[b748338e45bb] [2.14.0]
2023-04-20 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Use SCI_ADDTEXT rather than SCI_SETTEXT to set the text so tht
embedded zero bytes can be loaded.
[774bcbca48b9]
* NEWS, qt/InputMethod.cpp, qt/SciAccessibility.cpp,
qt/SciAccessibility.h, qt/qscilexer.cpp, qt/qscilexer.h,
qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Refactored the conversions from bytes to a QString to allow for
embedded zero bytes and to remove duplicated code.
[c8eb0d943c07]
2023-03-31 Phil Thompson <[email protected]>
* NEWS, qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Fixed the .ts files.
[5d000fe9301e]
2023-03-28 Phil Thompson <[email protected]>
* Python/sip/qscilexerasm.sip, Python/sip/qscilexermasm.sip,
Python/sip/qscilexernasm.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciscintillabase.sip:
Implemented the Python wrappers for the assembler lexers.
[0030fcf7a208]
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Updated the translation source files.
[0fb2491bb039]
* qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerasm.cpp,
qt/qscilexerasm.h, qt/qsciscintillabase.h:
Completed the implementation of the assember lexers. Note we choose
not to support explicit fold points.
[629503d9342b]
* NEWS, qt/qsciscintilla.cpp, qt/qsciscintilla.h,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Removed a Qt4 compatibility macro.
[4b23653f3e5c]
* qt/qscilexerasm.cpp, qt/qscilexerasm.h:
Added the support for compact and multi-line comment folding to
QsciLexerAsm.
[708bed0e9e2d]
2023-03-27 Phil Thompson <[email protected]>
* NEWS, qt/qscilexerasm.cpp, qt/qscilexerasm.h,
qt/qscilexerintelhex.cpp, qt/qscilexermasm.cpp, qt/qscilexermasm.h,
qt/qscilexernasm.cpp, qt/qscilexernasm.h, qt/qscilexertekhex.cpp,
qt/qscintilla.pro:
Initial implementation of the QsciLexerAsm, QsciLexerMASM and
QsciLexerNASM classes.
[f216dfe8a7a9]
2023-03-26 Phil Thompson <[email protected]>
* Python/sip/qscilexerintelhex.sip, Python/sip/qscilexersrec.sip,
Python/sip/qscilexertekhex.sip, Python/sip/qscimodcommon.sip,
Python/sip/qsciscintillabase.sip:
Completed the new Python wrappers.
[9acd96c733d2]
* Python/sip/qscilexerhex.sip, Python/sip/qscilexerintelhex.sip,
Python/sip/qscilexersrec.sip, Python/sip/qscilexertekhex.sip:
Added the Python bindings for the new lexer classes.
[7882938747c0]
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Updated the translation source files.
[ee55692ee907]
* NEWS, qt/qscilexerhex.cpp, qt/qscilexerhex.h,
qt/qscilexerintelhex.cpp, qt/qscilexerintelhex.h,
qt/qscilexersrec.cpp, qt/qscilexersrec.h, qt/qscilexertekhex.cpp,
qt/qscilexertekhex.h, qt/qscintilla.pro:
Added the QsciLexerHex, QsciLexerIntelHex, QsciLexerSRec and
QsciLexerTekHex classes.
[5e1cb8b52206]
* Merged the 2.13-maint branch.
[a9480b2f6bdb]
2023-03-02 Phil Thompson <[email protected]>
* NEWS, lexlib/LexAccessor.h:
Disabled an assert() in the lexer library as the following code
handles the case anyway. The real bug is probably in the HTML lexer
triggered when the HTML has embedded DTD.
[6452e3b634b6] <2.13-maint>
2023-01-15 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.13.4 for changeset b2c87a81f0c3
[d2bc1ac10aa3] <2.13-maint>
2022-12-06 Phil Thompson <[email protected]>
* NEWS, src/EditView.cxx:
Fixed horizontally scrolled text overwriting margins when EOLs are
visible.
[b2c87a81f0c3] [2.13.4] <2.13-maint>
2022-06-17 Phil Thompson <[email protected]>
* NEWS, qsci/api/python/Python-3.11.api:
Added the .api file for Python v3.11.
[96eca4a41bcb] <2.13-maint>
2022-05-24 Phil Thompson <[email protected]>
* NEWS, lib/gen_python3_api.py, lib/gen_python_api.py,
qsci/api/python/Python-3.10.api, qsci/api/python/Python-3.8.api,
qsci/api/python/Python-3.9.api:
Added the .api file for Python v3.10. Removed the script that
generates .api files for Python v2. Updated the .api file for Python
v3.8 and v3.9 removing non-stdlib stuff.
[048961f449ea] <2.13-maint>
2022-05-13 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.13.3 for changeset 5b8465ba3664
[f37eea15e210] <2.13-maint>
2022-04-25 Phil Thompson <[email protected]>
* NEWS, qt/InputMethod.cpp:
Updates to the input method code to fix a problem with KDE on
Wayland.
[5b8465ba3664] [2.13.3] <2.13-maint>
2022-03-15 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.13.2 for changeset bb61ba6bf385
[6cdbcd2c2dad] <2.13-maint>
* NEWS, Python/project.py:
Fixed building from an sdist for iOS.
[bb61ba6bf385] [2.13.2] <2.13-maint>
2021-10-14 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.13.1 for changeset 0763a2d7a8c2
[90c834cc462d] <2.13-maint>
2021-10-12 Phil Thompson <[email protected]>
* NEWS, designer/designer.pro, example/application.pro,
lib/README.doc, qt/qscintilla.pro:
Updated the .pro files and docs to cover multiple architecture
builds on macOS.
[0763a2d7a8c2] [2.13.1] <2.13-maint>
2021-09-08 Phil Thompson <[email protected]>
* NEWS, qt/qscintilla.pro, qt/qsciscintilla.cpp:
Fixed the target used by findNext() after a call to replace().
[6d59f97850d7] <2.13-maint>
2021-06-26 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.13.0 for changeset 84da33178802
[95ec8d681eae]
2021-06-13 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintillabase.sip:
Fixed the Python bindings of SendScintilla() so that a negative
value can be passed as the wParam argument (specifically
SC_CURSORNORMAL).
[84da33178802] [2.13.0]
2021-06-03 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciprinter.sip, qt/qscintilla.pro,
qt/qsciprinter.cpp, qt/qsciprinter.h:
Added the new QsciPrinter::printRange() overload. The library
version number is now v15.1.0.
[4b18dcfe67c4]
* Merged the 2.12-maint branch.
[a33fcd321f79]
2021-05-20 Phil Thompson <[email protected]>
* qt/PlatQt.cpp:
Fixed the handling of explicit Qt font weights for Qt6.
[1dbb97147333] <2.12-maint>
2021-05-06 Phil Thompson <[email protected]>
* qt/qscintilla.pro:
Bumped the version number of the shared library.
[7b3f97fa852f] <2.12-maint>
* NEWS, qt/ListBoxQt.cpp:
Improved the appearence of the auto-completion popup.
[6d05cdc2c9c9] <2.12-maint>
2021-03-04 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.12.1 for changeset c1e9b5f091d6
[0e8a95ee3197] <2.12-maint>
* NEWS:
Released as v2.12.1.
[c1e9b5f091d6] [2.12.1] <2.12-maint>
* rb-product.toml:
Fixed the PyQt dependencies.
[c7af7dfff891] <2.12-maint>
2021-03-02 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[811ff4c9ffb2] <2.12-maint>
2021-02-27 Phil Thompson <[email protected]>
* Python/pyproject-qt5.toml, Python/pyproject-qt6.toml:
Fixed the project dependencies.
[f84410807305] <2.12-maint>
* rb-product, rb-product.toml:
Updated the product file.
[266fa5c4525a] <2.12-maint>
2021-02-22 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.12.0 for changeset 1cfa1f74a2a6
[a3df8b831652]
* NEWS:
Released as v2.12.0.
[1cfa1f74a2a6] [2.12.0]
* NEWS:
Updated the NEWS file.
[15c838b76bbb]
2021-02-21 Phil Thompson <[email protected]>
* Python/project.py:
Fixed project.py so that it will use an embedded QScintilla library
when being built from an sdist.
[71cc17f4adb2]
* qt/qscintilla.pro:
Added missing .h files from qscintilla.pro.
[c932fdd83a5e]
2021-02-19 Phil Thompson <[email protected]>
* Python/pyproject-qt5.toml:
Reverted the name of the Qt5 Python bindings PyPI project because a
new name would cause significant problems.
[c318f3bd3474]
2021-02-18 Phil Thompson <[email protected]>
* Python/pyproject-qt5.toml, Python/pyproject-qt6.toml,
Python/sip/qsciscintillabase.sip:
Fixed the Python bindings for PyQt6.
[e48e4f400215]
* lib/README.doc:
Re-ordered the section in the main page of the docs.
[35fd189ea5da]
2021-02-17 Phil Thompson <[email protected]>
* Python/project.py, Python/pyproject-qt5.toml, Python/pyproject-
qt6.toml, Python/pyproject.toml, Python/sip/qscimod5.sip,
Python/sip/qscimod6.sip, Python/sip/qscimodcommon.sip,
lib/README.doc, qt/features/qscintilla2.prf,
qt/features_staticlib/qscintilla2.prf:
Update the building of the Python bindings from a full source
package.
[124c17880e06]
2021-02-15 Phil Thompson <[email protected]>
* lib/README.doc, lib/qscintilla.dxy:
Some documentation fixes.
[81cc3ac8a8df]
* qt/PlatQt.cpp:
Fixed a regression in building against Qt5.
[4e87186ec216]
* qt/InputMethod.cpp, qt/MacPasteboardMime.cpp, qt/PlatQt.cpp,
qt/SciAccessibility.cpp, qt/qsciapis.cpp, qt/qscicommandset.cpp,
qt/qsciglobal.h, qt/qscilexer.cpp, qt/qscimacro.cpp,
qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h,
qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp:
Initial port to Qt6.
[b88e78ec2ca3]
2021-02-14 Phil Thompson <[email protected]>
* Python/configure-old.py, Python/configure.py, Python/pyproject.toml,
Python/sip/qscimod4.sip, designer-Qt4Qt5/designer.pro, designer-
Qt4Qt5/qscintillaplugin.cpp, designer-Qt4Qt5/qscintillaplugin.h,
designer/designer.pro, designer/qscintillaplugin.cpp,
designer/qscintillaplugin.h, example-Qt4Qt5/application.pro,
example-Qt4Qt5/application.qrc, example-Qt4Qt5/images/copy.png,
example-Qt4Qt5/images/cut.png, example-Qt4Qt5/images/new.png,
example-Qt4Qt5/images/open.png, example-Qt4Qt5/images/paste.png,
example-Qt4Qt5/images/save.png, example-Qt4Qt5/main.cpp, example-
Qt4Qt5/mainwindow.cpp, example-Qt4Qt5/mainwindow.h,
example/application.pro, example/application.qrc,
example/images/copy.png, example/images/cut.png,
example/images/new.png, example/images/open.png,
example/images/paste.png, example/images/save.png, example/main.cpp,
example/mainwindow.cpp, example/mainwindow.h, lib/README.doc,
lib/ed.py, lib/pyproject.toml, qt/InputMethod.cpp, qt/ListBoxQt.cpp,
qt/MacPasteboardMime.cpp, qt/PlatQt.cpp, qt/SciClasses.cpp,
qt/ScintillaQt.cpp, qt/qsciglobal.h, qt/qscintilla.pro,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Removed support for Qt4.
[dad7e9b4d62e]
* Merged the 2.11-maint branch.
[8c1814ec889a]
2020-11-23 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.6 for changeset c262a7a02f6d
[a12ce93c13bf] <2.11-maint>
* NEWS:
Released as v2.11.6.
[c262a7a02f6d] [2.11.6] <2.11-maint>
* NEWS:
Updated the NEWS file.
[0f32bcb43dd3] <2.11-maint>
2020-10-22 Phil Thompson <[email protected]>
* qt/features/qscintilla2.prf, qt/features_staticlib/qscintilla2.prf,
qt/qscintilla.pro:
Fixes for building for iOS with recent versions of Qt.
[aea84882d372] <2.11-maint>
2020-10-20 Phil Thompson <[email protected]>
* Python/project.py:
Added the --qsci-translations-dir option to sip-wheel.
[df77754750b3] <2.11-maint>
2020-10-19 Phil Thompson <[email protected]>
* qsci/api/python/Python-3.9.api:
Added the .api file for Python v3.9.
[bff51b8043e2] <2.11-maint>
* .hgignore:
Updated .hgignore for the current build naming convention.
[b659680b3f24] <2.11-maint>
2020-10-11 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fixed the display of non-latin1 call tips.
[f9fa57df2fbb] <2.11-maint>
2020-09-17 Phil Thompson <[email protected]>
* Python/project.py, lib/pyproject.toml:
Require PyQt-builder v1.6 as we no longer specify the sip module and
ABI.
[0e989cce12ea] <2.11-maint>
2020-08-22 Phil Thompson <[email protected]>
* Python/project.py:
Set the name of the sip module explicitly.
[a6b6fd548cf3] <2.11-maint>
2020-06-30 Phil Thompson <[email protected]>
* example-Qt4Qt5/main.cpp, example-Qt4Qt5/mainwindow.cpp, example-
Qt4Qt5/mainwindow.h:
Updated the copyright notices on the example.
[8937c1d51479] <2.11-maint>
2020-06-09 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.5 for changeset 36bf61975fe2
[7e336947e75e] <2.11-maint>
* NEWS:
Released as v2.11.5.
[36bf61975fe2] [2.11.5] <2.11-maint>
* NEWS, Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip:
Fixed the Python signatures of the QsciAbstractAPIs and QsciAPIs
ctors.
[80aeec9058bf] <2.11-maint>
2020-05-09 Phil Thompson <[email protected]>
* Python/project.py, lib/pyproject.toml:
The minimum ABI version is 12.8 which requires SIP v5.3.
[c0e8e2e7e485] <2.11-maint>
2020-04-11 Phil Thompson <[email protected]>
* lib/pyproject.toml:
We know that The Python binding swill be able to use SIP v6.
[4f1f5381fb69] <2.11-maint>
2020-04-10 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[2ef898e42a1e] <2.11-maint>
* Python/project.py, lib/pyproject.toml:
Include the bundled .api files in wheels.
[ded23cd63255] <2.11-maint>
2020-02-08 Phil Thompson <[email protected]>
* lib/pyproject.toml:
Fixed METADATA for commercial wheels.
[efc053939949] <2.11-maint>
2019-12-18 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.4 for changeset b9eb589b0dab
[3f3722aac2ad] <2.11-maint>
* NEWS:
Released as v2.11.4.
[b9eb589b0dab] [2.11.4] <2.11-maint>
* lib/pyproject.toml:
Fixed requires-dist for commercial wheels.
[53c08faf43ff] <2.11-maint>
2019-11-02 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.3 for changeset 989462577f67
[3f6d7cf0fc4b] <2.11-maint>
* NEWS:
Released as v2.11.3.
[989462577f67] [2.11.3] <2.11-maint>
* NEWS:
Updated the NEWS file.
[2075344b2124] <2.11-maint>
2019-10-03 Phil Thompson <[email protected]>
* lib/pyproject.toml:
Fixed the name of PEP 566.
[e435d3af1587] <2.11-maint>
* lib/pyproject.toml:
Requires PyQt-builder v1.
[9502a2b46a2b] <2.11-maint>
2019-10-01 Phil Thompson <[email protected]>
* lib/pyproject.toml:
Fixed the name of the PyQt-builder project.
[efe96da72b1f] <2.11-maint>
2019-09-23 Phil Thompson <[email protected]>
* Python/project.py:
Fixes for changes in the sip v5 API.
[a79acd2cdd94] <2.11-maint>
2019-09-14 Phil Thompson <[email protected]>
* lib/pyproject.toml:
Added the requires-dist meta-data.
[941784a50fad] <2.11-maint>
2019-09-07 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[6c83ad469a4e] <2.11-maint>
* lib/pyproject.toml:
Temporarily set the version of PyQt-builder required to be v0.1.
[734461946ff0] <2.11-maint>
2019-09-06 Phil Thompson <[email protected]>
* Python/project.py:
Fixes for relative path options.
[e7bc21d4cb25] <2.11-maint>
2019-09-05 Phil Thompson <[email protected]>
* Python/project.py:
Added the options to build the bindings from a locally installed
copy of the library.
[54094e26d201] <2.11-maint>
2019-09-04 Phil Thompson <[email protected]>
* Python/configure-old.py, Python/configure.py, Python/project.py,
designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro,
qt/qscintilla.pro:
Removed the code to change the install_name on macOS.
[c88922cb4dee] <2.11-maint>
* Python/configure.py, qt/qscintilla.pro:
Fixed the install_name of the .dylib on macOS so that it is relative
to @rpath.
[010c78f5da88] <2.11-maint>
* Python/config-tests/cfgtest_Qsci.cpp:
Fixed the configuration test.
[c00c4195e8fc] <2.11-maint>
* METADATA.in, Python/README, Python/config-tests/cfgtest_Qsci.cpp,
Python/configure-old.py, Python/configure.py, Python/project.py,
lib/README, lib/pyproject.toml, qt/qscintilla.pro:
Added support for sip-build.
[20e39552153c] <2.11-maint>
2019-08-30 Phil Thompson <[email protected]>
* METADATA.in, lib/README:
Updated the meta-data description.
[7681c13103f2] <2.11-maint>
2019-08-21 Phil Thompson <[email protected]>
* METADATA.in:
Updated the link to the docs for PyPI.
[ab14aecc07de] <2.11-maint>
2019-07-04 Phil Thompson <[email protected]>
* qt/qscilexercss.cpp:
Fixed the styling of CSS comments.
[9b2dd132b868] <2.11-maint>
2019-06-25 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.2 for changeset 9a9bab556970
[e39e215312b4] <2.11-maint>
* NEWS:
Released as v2.11.2.
[9a9bab556970] [2.11.2] <2.11-maint>
* qsci/api/python/Python-3.8.api:
Added the .api file for Python v3.8.
[4bc9c6baa011] <2.11-maint>
* NEWS:
Updated the NEWS file.
[38685401d592] <2.11-maint>
2019-05-31 Phil Thompson <[email protected]>
* qt/PlatQt.cpp:
Fixes to allow compilation with WASM.
[71be3fd818c8] <2.11-maint>
2019-05-15 Phil Thompson <[email protected]>
* qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Fixed selection-related issues on macOS (and probably Windows)
triggered by the use of additional selections.
[47aaec2fa37c] <2.11-maint>
2019-05-09 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
QsciScintilla::findMatchingBrace() is now part of the public API.
[b1973ad12f82] <2.11-maint>
2019-03-13 Phil Thompson <[email protected]>
* NEWS, qt/qsciscintilla.cpp:
QsciScintilla::clear() now clears the undo history to be consistent
with Qt and setText().
[b013bbaed4a5] <2.11-maint>
2019-02-12 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11.1 for changeset bebf741baff8
[c09e91f304b8] <2.11-maint>
* NEWS:
Released as v2.11.1.
[bebf741baff8] [2.11.1] <2.11-maint>
* NEWS:
Updated the NEWS file.
[9f2dd3438ac3] <2.11-maint>
* Python/configure-old.py, Python/configure.py, designer-
Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro,
qt/qscintilla.pro:
Bumped the major version number of the library because of the
SendScintilla() signature change.
[c2fe34e11899] <2.11-maint>
* Python/sip/qsciscintillabase.sip, qt/qscimacro.cpp,
qt/qsciscintillabase.cpp, qt/qsciscintillabase.h:
Fixed a regression in QsciScintilla::insert(). The signature of
QsciScintillaBase::SendScintilla(unigned int, unsigned long, const
char *) has changed so that the second argument is now uintptr_t.
This may require code changes.
[b62eb7f29de4] <2.11-maint>
2019-02-11 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[9768dbe05f64] <2.11-maint>
* qt/qsciscintillabase.cpp:
Fixed the marginRightClicked() signal.
[6a6efafbefd6] <2.11-maint>
* qt/qscintilla.pro:
Bumped the library version number.
[a4ee797a9df9] <2.11-maint>
2019-02-04 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.11 for changeset 2610e30b0914
[f83b4fbdd928]
* NEWS:
Released as v2.11.
[2610e30b0914] [2.11]
2018-12-21 Phil Thompson <[email protected]>
* METADATA.in:
Corrected the wheel meta-data version.
[593a629d46f5]
2018-12-15 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[992f3cb597c4]
2018-11-24 Phil Thompson <[email protected]>
* qt/qscintilla_de.qm, qt/qscintilla_de.ts:
Updated German translations from Detlev.
[f293bafecde8]
2018-11-17 Phil Thompson <[email protected]>
* qt/ScintillaQt.h:
Fixed the Linux build.
[3ec0608d1744]
* qt/SciClasses.cpp, qt/SciClasses.h:
Removed the redundant explicit handling of the Esc key in popup
lists.
[a3d596e37561]
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added QsciScintilla::cancelFind().
[520cda104a4b]
2018-11-13 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added support for Cxx11 regular expressions to findFirst() and
findFirstInSelection().
[9c022f775241]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the remaining new API calls.
[03f9682f7d6c]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Added the new wrap indent mode.
[4a786cbfd975]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the style metadata messages.
[e3e38b577a1f]
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.h:
Added the SCN_AUTOCSELECTIONCHANGE() signal.
[156c8e0c6fb7]
* NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintillabase.h:
Added the new SCN_USERLISTSELECTION() signal overload.
[031270944f93]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qscilexer.cpp,
qt/qsciscintillabase.h:
Added the character/code unit functions.
[ff2e92ed2890]
* qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro,
qt/qsciscintilla.cpp:
Don't use the deprecated style bits API calls.
[2d1cf2b1019f]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Added support for the new gradient indicators.
[02e7b6ba2fdb]
2018-11-12 Phil Thompson <[email protected]>
* NEWS, Python/sip/qscilexerdiff.sip, qt/qscilexerdiff.cpp,
qt/qscilexerdiff.h, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Updates to the diff lexer.
[fb8a0cb48593]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the symbolic names for the new lexers.
[b8d4fab81221]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Implemented the SCN_URIDROPPED signal.
[242bb09d23ea]
* qt/qsciscintillabase.h:
Documented SCN_DWELLSTART and SCN_DWELLEND.
[8750296d855d]
* qt/PlatQt.cpp:
Removed some unused platform methods.
[70c01135aa8d]
* qt/InputMethod.cpp, qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp,
qt/SciClasses.cpp, qt/SciNamespace.h, qt/ScintillaQt.cpp,
qt/ScintillaQt.h, qt/qscintilla.pro, qt/qsciscintillabase.cpp:
Removed the support for the optional Scintilla namespace.
[33998bb1d26a]
2018-11-11 Phil Thompson <[email protected]>
* BACKPORTING, License.txt, LongTermDownload.html, NEWS, README,
check.mak, checkdeps.mak, cocoa/InfoBar.mm, cocoa/PlatCocoa.h,
cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h,
cocoa/ScintillaCocoa.h, cocoa/ScintillaCocoa.mm,
cocoa/ScintillaFramework/Info.plist, cocoa/ScintillaFramework/Scinti
llaFramework.xcodeproj/project.pbxproj,
cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj,
cocoa/ScintillaView.mm, cppcheck.suppress, curses/Makefile,
curses/README.md, curses/ScintillaCurses.cxx,
curses/ScintillaCurses.h, curses/THANKS.md, curses/jinx/Makefile,
curses/jinx/jinx.c, delbin.bat, doc/Design.html, doc/LPegLexer.html,
doc/SciCoding.html, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html,
doc/StyleMetadata.html, doc/index.html, gtk/Converter.h,
gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/ScintillaGTK.h,
gtk/ScintillaGTKAccessible.cxx, gtk/ScintillaGTKAccessible.h,
gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla-
marshal.h, gtk/scintilla-marshal.list, include/ILexer.h,
include/ILoader.h, include/Platform.h, include/SciLexer.h,
include/Sci_Position.h, include/Scintilla.h,
include/Scintilla.iface, lexers/LexA68k.cxx, lexers/LexAPDL.cxx,
lexers/LexASY.cxx, lexers/LexAU3.cxx, lexers/LexAVE.cxx,
lexers/LexAVS.cxx, lexers/LexAbaqus.cxx, lexers/LexAda.cxx,
lexers/LexAsm.cxx, lexers/LexAsn1.cxx, lexers/LexBaan.cxx,
lexers/LexBash.cxx, lexers/LexBasic.cxx, lexers/LexBatch.cxx,
lexers/LexBibTeX.cxx, lexers/LexBullant.cxx, lexers/LexCLW.cxx,
lexers/LexCOBOL.cxx, lexers/LexCPP.cxx, lexers/LexCSS.cxx,
lexers/LexCaml.cxx, lexers/LexCmake.cxx, lexers/LexCoffeeScript.cxx,
lexers/LexConf.cxx, lexers/LexCrontab.cxx, lexers/LexCsound.cxx,
lexers/LexD.cxx, lexers/LexDMAP.cxx, lexers/LexDMIS.cxx,
lexers/LexDiff.cxx, lexers/LexECL.cxx, lexers/LexEDIFACT.cxx,
lexers/LexEScript.cxx, lexers/LexEiffel.cxx, lexers/LexErlang.cxx,
lexers/LexErrorList.cxx, lexers/LexFlagship.cxx,
lexers/LexForth.cxx, lexers/LexFortran.cxx, lexers/LexGAP.cxx,
lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx,
lexers/LexHex.cxx, lexers/LexIndent.cxx, lexers/LexInno.cxx,
lexers/LexJSON.cxx, lexers/LexKVIrc.cxx, lexers/LexKix.cxx,
lexers/LexLPeg.cxx, lexers/LexLaTeX.cxx, lexers/LexLisp.cxx,
lexers/LexLout.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx,
lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, lexers/LexMagik.cxx,
lexers/LexMake.cxx, lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx,
lexers/LexMaxima.cxx, lexers/LexMetapost.cxx, lexers/LexModula.cxx,
lexers/LexMySQL.cxx, lexers/LexNimrod.cxx, lexers/LexNsis.cxx,
lexers/LexNull.cxx, lexers/LexOScript.cxx, lexers/LexOpal.cxx,
lexers/LexPB.cxx, lexers/LexPLM.cxx, lexers/LexPO.cxx,
lexers/LexPOV.cxx, lexers/LexPS.cxx, lexers/LexPascal.cxx,
lexers/LexPerl.cxx, lexers/LexPowerPro.cxx,
lexers/LexPowerShell.cxx, lexers/LexProgress.cxx,
lexers/LexProps.cxx, lexers/LexPython.cxx, lexers/LexR.cxx,
lexers/LexRebol.cxx, lexers/LexRegistry.cxx, lexers/LexRuby.cxx,
lexers/LexRust.cxx, lexers/LexSAS.cxx, lexers/LexSML.cxx,
lexers/LexSQL.cxx, lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx,
lexers/LexSmalltalk.cxx, lexers/LexSorcus.cxx,
lexers/LexSpecman.cxx, lexers/LexSpice.cxx, lexers/LexStata.cxx,
lexers/LexTACL.cxx, lexers/LexTADS3.cxx, lexers/LexTAL.cxx,
lexers/LexTCL.cxx, lexers/LexTCMD.cxx, lexers/LexTeX.cxx,
lexers/LexTxt2tags.cxx, lexers/LexVB.cxx, lexers/LexVHDL.cxx,
lexers/LexVerilog.cxx, lexers/LexVisualProlog.cxx,
lexers/LexYAML.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h,
lexlib/CharacterCategory.cxx, lexlib/CharacterCategory.h,
lexlib/CharacterSet.cxx, lexlib/CharacterSet.h,
lexlib/DefaultLexer.cxx, lexlib/DefaultLexer.h,
lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerBase.h,
lexlib/LexerModule.cxx, lexlib/LexerModule.h,
lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h,
lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, lexlib/OptionSet.h,
lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h,
lexlib/SparseState.h, lexlib/StringCopy.h, lexlib/StyleContext.cxx,
lexlib/StyleContext.h, lexlib/SubStyles.h, lexlib/WordList.cxx,
lexlib/WordList.h, lib/README.doc, qt/InputMethod.cpp,
qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp,
qt/SciClasses.h, qt/SciNamespace.h, qt/ScintillaQt.cpp,
qt/ScintillaQt.h, qt/qscintilla.pro, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h, scripts/Face.py, scripts/FileGenerator.py,
scripts/GenerateCaseConvert.py, scripts/HFacer.py,
scripts/HeaderCheck.py, scripts/HeaderOrder.txt, scripts/LexGen.py,
scripts/ScintillaData.py, src/AutoComplete.cxx, src/AutoComplete.h,
src/CallTip.cxx, src/CallTip.h, src/CaseConvert.cxx,
src/CaseConvert.h, src/CaseFolder.cxx, src/CaseFolder.h,
src/Catalogue.cxx, src/Catalogue.h, src/CellBuffer.cxx,
src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h,
src/ContractionState.cxx, src/ContractionState.h, src/DBCS.cxx,
src/DBCS.h, src/Decoration.cxx, src/Decoration.h, src/Document.cxx,
src/Document.h, src/EditModel.cxx, src/EditModel.h,
src/EditView.cxx, src/EditView.h, src/Editor.cxx, src/Editor.h,
src/ElapsedPeriod.h, src/ExternalLexer.cxx, src/ExternalLexer.h,
src/FontQuality.h, src/Indicator.cxx, src/Indicator.h,
src/IntegerRectangle.h, src/KeyMap.cxx, src/KeyMap.h,
src/LineMarker.cxx, src/LineMarker.h, src/MarginView.cxx,
src/MarginView.h, src/Partitioning.h, src/PerLine.cxx,
src/PerLine.h, src/Position.h, src/PositionCache.cxx,
src/PositionCache.h, src/RESearch.cxx, src/RESearch.h,
src/RunStyles.cxx, src/RunStyles.h, src/ScintillaBase.cxx,
src/ScintillaBase.h, src/Selection.cxx, src/Selection.h,
src/SparseVector.h, src/SplitVector.h, src/Style.cxx, src/Style.h,
src/UniConversion.cxx, src/UniConversion.h, src/UnicodeFromUTF8.h,
src/UniqueString.h, src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx,
src/XPM.h, test/README, test/ScintillaCallable.py, test/XiteWin.py,
test/lexTests.py, test/performanceTests.py, test/simpleTests.py,
test/test_lexlua.lua, test/unit/Sci.natvis,
test/unit/UnitTester.cxx, test/unit/UnitTester.vcxproj,
test/unit/catch.hpp, test/unit/makefile, test/unit/test.mak,
test/unit/testCellBuffer.cxx, test/unit/testCharClassify.cxx,
test/unit/testContractionState.cxx, test/unit/testDecoration.cxx,
test/unit/testPartitioning.cxx, test/unit/testRunStyles.cxx,
test/unit/testSparseState.cxx, test/unit/testSparseVector.cxx,
test/unit/testSplitVector.cxx, test/unit/testUniConversion.cxx,
test/unit/testUnicodeFromUTF8.cxx, test/unit/testWordList.cxx,
test/unit/unitTest.cxx, version.txt, win32/CheckD2D.cxx,
win32/HanjaDic.cxx, win32/HanjaDic.h, win32/PlatWin.cxx,
win32/PlatWin.h, win32/SciLexer.vcxproj, win32/ScintRes.rc,
win32/ScintillaDLL.cxx, win32/ScintillaWin.cxx,
win32/ScintillaWin.h, win32/deps.mak, win32/makefile,
win32/scintilla.mak:
The v3.10.1 based code will now build - otherwise untested.
[cb6d486795ec]
2018-11-05 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[a99dfcd91f84]
* qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts:
Updated the translation files.
[1529479f8a31]
* Python/configure.py, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qscilexerpython.cpp,
qt/qscintilla.pro, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h:
Merged the 2.10-maint branch with the trunk.
[5fcc66abfca0]
2018-10-01 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.8 for changeset 57c8b6076899
[b565980f962b] <2.10-maint>
* NEWS:
Released as v2.10.8.
[57c8b6076899] [2.10.8] <2.10-maint>
2018-09-30 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[345f597a4a90] <2.10-maint>
2018-08-02 Phil Thompson <[email protected]>
* qt/SciAccessibility.cpp:
More accessibility fixes.
[2cc2d6865762] <2.10-maint>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/qscintilla.pro:
Refactored the accessibility support to use less of the Qt stuff
which doesn't handle CR-LF end-of-lines.
[8b2d6e3e73d8] <2.10-maint>
2018-07-15 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[fc1deaccc716] <2.10-maint>
2018-06-29 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.7 for changeset 60598a703fd4
[8828f9ad7dc6] <2.10-maint>
* NEWS:
Released as v2.10.7.
[60598a703fd4] [2.10.7] <2.10-maint>
* NEWS:
Updated the NEWS file.
[92edf18019ec] <2.10-maint>
2018-06-25 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintillabase.sip: