-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5756 lines (4558 loc) · 203 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-06-29 Phil Thompson <[email protected]>
* 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:
Tweaked the signature of the QscoScintillaBase::SCN_MACRORECORD()
signal so that it matches what Qt uses so that the signal test
passes.
[bfcd9319329a] <2.10-maint>
2018-06-23 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.6 for changeset dc0993c72a05
[9c774d0a9694] <2.10-maint>
* NEWS:
Released as v2.10.6.
[dc0993c72a05] [2.10.6] <2.10-maint>
2018-06-22 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.5 for changeset f35b3a43a241
[8cf5694ca328] <2.10-maint>
* NEWS:
Released as v2.10.5.
[f35b3a43a241] [2.10.5] <2.10-maint>
2018-06-21 Phil Thompson <[email protected]>
* NEWS:
Updated the NEWS file.
[12cb1a2f5ec6] <2.10-maint>
2018-06-19 Phil Thompson <[email protected]>
* NEWS, Python/sip/qscistyle.sip, qt/qscistyle.cpp, qt/qscistyle.h:
Added setStyle() to QsciStyle.
[cf5281041224] <2.10-maint>
2018-06-16 Phil Thompson <[email protected]>
* qt/qscintilla_es.qm, qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[a479b9f5436f] <2.10-maint>
2018-06-09 Phil Thompson <[email protected]>
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts,
qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm:
Updated German translations from Detlev.
[f69379899fb3] <2.10-maint>
2018-06-04 Phil Thompson <[email protected]>
* NEWS, Python/configure.py:
Implemented support for the .dist-info directory.
[387aa9bf6ad8] <2.10-maint>
2018-06-03 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp,
qt/ScintillaQt.cpp, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Fixes for font changes caused by dragging to a different display.
[27b1f435e27a] <2.10-maint>
2018-05-29 Phil Thompson <[email protected]>
* qt/PlatQt.cpp:
Disable to macOS use of integer font metrics for Qt5 as it is
(probably) specific to Qt4.
[c32fe0c4e55d] <2.10-maint>
* qt/PlatQt.cpp:
Fixed cursor positioning when using a secondary display with
different scaling to the primary.
[20420b7c4a4d] <2.10-maint>
2018-05-22 Phil Thompson <[email protected]>
* qt/qscilexerverilog.cpp:
Fix the handling of the 'fold.verilog.flags' property in the Verilog
lexer.
[9b698ba38c2b] <2.10-maint>
2018-05-16 Phil Thompson <[email protected]>
* qt/qscilexerverilog.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts,
qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Added the missing descriptions of inactive styles in the Verilog
lexer.
[4be691232e03] <2.10-maint>
2018-05-15 Phil Thompson <[email protected]>
* qt/qscilexer.h:
Updated the QsciLexer::keywords() documentation to point out that
sets are numbered from 1.
[5954b91e7ec1] <2.10-maint>
2018-04-26 Phil Thompson <[email protected]>
* Python/sip/qscilexeredifact.sip, qt/qscilexeredifact.cpp,
qt/qscilexeredifact.h:
Added some default colours to the EDIFACT lexer.
[175598286833] <2.10-maint>
2018-04-20 Phil Thompson <[email protected]>
* NEWS, Python/sip/qscilexeredifact.sip, qt/qscilexeredifact.cpp,
qt/qscilexeredifact.h, qt/qscintilla.pro, qt/qscintilla_cs.ts,
qt/qscintilla_de.ts, qt/qscintilla_es.ts, qt/qscintilla_fr.ts,
qt/qscintilla_pt_br.ts:
Added the QsciLexerEDIFACT class.
[c1e31857f3e7] <2.10-maint>
* qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
If the context menu is invoked when the cursor is outside the
selection then the selection is cleared and the cursor moved to
where the mouse was clicked.
[7d230dad9379] <2.10-maint>
2018-04-19 Phil Thompson <[email protected]>
* Python/sip/qsciscintilla.sip, qt/qscintilla.pro,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Control-wheel up/down will now zoom in and out.
[ba0049fe03b6] <2.10-maint>
2018-04-11 Phil Thompson <[email protected]>
* qt/PlatQt.cpp, qt/qsciabstractapis.cpp, qt/qscilexerpython.cpp,
qt/qscilexerxml.cpp, qt/qsciscintilla.cpp:
Removed warning messages about unused variables.
[c2008ef93ee0] <2.10-maint>
* qt/qscicommandset.cpp:
Fixed the saving of alternative keys in the settings.
[687470e937c1] <2.10-maint>
* qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qsciscintilla.cpp:
Various stylistic changes to eliminate some warning messages.
[dc753169870e] <2.10-maint>
2018-04-10 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.4 for changeset 24cb0edc89a9
[05ada666e2cf] <2.10-maint>
* NEWS:
Released as v2.10.4.
[24cb0edc89a9] [2.10.4] <2.10-maint>
* qt/SciAccessibility.cpp:
Fixed the retrieval of accessibility attributes.
[e430a7dd7818] <2.10-maint>
2018-04-07 Phil Thompson <[email protected]>
* qt/qscilexer.cpp:
Use STYLE_MAX to define the maximum number of styles.
[23ca0cad0227] <2.10-maint>
2018-03-11 Phil Thompson <[email protected]>
* qt/qscintilla.pro:
Force QT_NO_ACCESSIBILITY when building against Qt4.
[b65f48ec1852] <2.10-maint>
2018-02-27 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.3 for changeset bc769d6fcf53
[279625f1d8c9] <2.10-maint>
* NEWS:
Released as v2.10.3.
[bc769d6fcf53] [2.10.3] <2.10-maint>
* rb-product:
Updated the PyQt5 wheel dependency.
[7cef6e297ddf] <2.10-maint>
* NEWS:
Updated the NEWS file.
[1e073e29eca4] <2.10-maint>
2018-02-10 Phil Thompson <[email protected]>
* qsci/api/python/Python-3.7.api:
Added the API file for Python v3.70b1.
[6d0032674462] <2.10-maint>
2018-02-07 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fix the hotspot active background colour.
[45cfd8c68394] <2.10-maint>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h:
Completed the accessibility support.
[2af3a5b045fa] <2.10-maint>
2018-02-06 Phil Thompson <[email protected]>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h:
Implemented all of the accessible interface except for attributes().
[434539a243dc] <2.10-maint>
* qt/SciAccessibility.cpp:
Implemented more of the accessible interface.
[e8f3df5442cc] <2.10-maint>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp:
Implemented more of the accessible interface.
[fb26d9fdba27] <2.10-maint>
2018-02-05 Phil Thompson <[email protected]>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp,
qt/qsciscintillabase.cpp:
More accessibility progress.
[ea2432348b49] <2.10-maint>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp:
Some progress on accessibility.
[055345b62d7b] <2.10-maint>
* qt/qscintilla.pro:
Updated the version of the shared library.
[fb50133f8770] <2.10-maint>
2018-02-04 Phil Thompson <[email protected]>
* qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/qscintilla.pro,
qt/qsciscintillabase.cpp:
Added the stubs for accessibility support.
[61e00a4f944f] <2.10-maint>
2017-11-23 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.2 for changeset bdfb9584af36
[d127fc44d4c4] <2.10-maint>
* NEWS:
Released as v2.10.2.
[bdfb9584af36] [2.10.2] <2.10-maint>
* qt/qscintilla.pro:
Bumed the .so minor version.
[4bb28057d3c2] <2.10-maint>
2017-11-13 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h:
Added setScrollWidth() , scrollWidth, setScrollWidthTracking() and
scrollWidthTracking() to QsciScintilla.
[c6e64e99cb12] <2.10-maint>
2017-11-01 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fixed the handling of UTF8 call tips.
[7aa9b863f330] <2.10-maint>
2017-07-04 Phil Thompson <[email protected]>
* qt/qscintilla.pro:
Fixed case sensitivity of a couple of file names.
[e9d9b80fd61b] <2.10-maint>
* .hgignore:
Ignore the new-style build directory.
[6c20c6b41705] <2.10-maint>
2017-07-03 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10.1 for changeset 20e0e2d419ba
[d6eba6c9e5ce] <2.10-maint>
* NEWS:
Released as v2.10.1.
[20e0e2d419ba] [2.10.1] <2.10-maint>
* rb-product:
Updated the PyQt5 dependency to v5.9.
[83200ee6b295] <2.10-maint>
2017-05-24 Phil Thompson <[email protected]>
* lib/README.doc:
Updated the docs regarding use of build options supported by
Scintilla.
[fe6e73057d9e] <2.10-maint>
2017-05-15 Phil Thompson <[email protected]>
* Python/sip/qscilexer.sip, Python/sip/qscilexeravs.sip,
Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip,
Python/sip/qscilexercoffeescript.sip, Python/sip/qscilexercpp.sip,
Python/sip/qscilexercss.sip, Python/sip/qscilexerd.sip,
Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerhtml.sip,
Python/sip/qscilexerlua.sip, Python/sip/qscilexerpascal.sip,
Python/sip/qscilexerperl.sip, Python/sip/qscilexerpostscript.sip,
Python/sip/qscilexerpov.sip, Python/sip/qscilexerpython.sip,
Python/sip/qscilexerruby.sip, Python/sip/qscilexerspice.sip,
Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip,
Python/sip/qscilexerverilog.sip, Python/sip/qscilexervhdl.sip:
Added the lexer-specific re-implementations of previously internal
methods to the Python bindings.
[e8402392cedc] <2.10-maint>
2017-03-22 Phil Thompson <[email protected]>
* qt/qscintilla.pro:
Enabled explicit C++11 support for Linux for old versions of GCC.
[e0e0b344ccf1] <2.10-maint>
2017-03-16 Phil Thompson <[email protected]>
* qt/qscilexer.cpp:
Changed the default macOS font to Menlo 12pt as it has bold etc.
[39d69e37d352] <2.10-maint>
* qt/qscilexer.cpp:
Changed the default font on macOS to Monaco 12pt.
[9030535e2457] <2.10-maint>
* Python/configure.py:
Fixed the rpath change of the Python bindings on macOS.
[dd45e695812a] <2.10-maint>
2017-02-22 Phil Thompson <[email protected]>
* qt/qscintilla.pro:
Fixed the .pro file so that debug builds match the features file.
[1aedd0c6eeda] <2.10-maint>
2017-02-20 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.10 for changeset 6c07847b2835
[2442f8d2df34]
* NEWS:
Released as v2.10.
[6c07847b2835] [2.10]
* qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_es.qm,
qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm:
Updated the .qm files.
[3b3c5924e746]
* qt/qscintilla_fr.ts:
Partial updated French translations from Alan Garny.
[ca2d6917015e]
2017-02-17 Phil Thompson <[email protected]>
* Python/sip/qsciscintillabase.sip:
Added /Transfer/ to the scroll bar replacement functions.
[49cf7181402a]
2017-02-15 Phil Thompson <[email protected]>
* qt/qscintilla_de.ts:
Updated German translations from Detlev.
[51cca6073075]
2017-02-14 Phil Thompson <[email protected]>
* qt/qscintilla_es.ts:
Updated Spanish translations from Jaime Seuma.
[0e30abdd0907]
2017-02-13 Phil Thompson <[email protected]>
* designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro,
qt/qscintilla.pro:
Removed the 'release' option from all CONFIG lines.
[0901267a8e49]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.cpp,
qt/qsciscintillabase.h:
Added replaceHorizontalScrollBar() and replaceVerticalScrollBar() to
QsciScintillaBase.
[bb7efd26b8b3]
* qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts,
qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts:
Updated the translation files.
[76c23d751930]
2017-01-21 Phil Thompson <[email protected]>
* Python/sip/qscilexermarkdown.sip, qt/qscilexerjson.cpp,
qt/qscilexermarkdown.cpp, qt/qscilexermarkdown.h:
Updated the Markdown lexer with the latest settings from Detlev.
[9e9992a4e9f7]
2017-01-17 Phil Thompson <[email protected]>
* qt/qsciapis.cpp:
Fixed problems with auto-completion lists where contexts and image
identifiers were getting lost.
[039599ba1b85]
2017-01-16 Phil Thompson <[email protected]>
* designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro:
Fixed the example and designer plugin .pro files for the change
library name.
[d6c564089958]
* lib/README.doc:
Updated website links to https.
[18a7013d4f8b]
* qt/qsciabstractapis.h, qt/qsciapis.h, qt/qscicommand.h,
qt/qscicommandset.h, qt/qscidocument.h, qt/qsciglobal.h,
qt/qscilexer.h, qt/qscilexeravs.h, qt/qscilexerbash.h,
qt/qscilexerbatch.h, qt/qscilexercmake.h,
qt/qscilexercoffeescript.h, qt/qscilexercpp.h, qt/qscilexercsharp.h,
qt/qscilexercss.h, qt/qscilexercustom.h, qt/qscilexerd.h,
qt/qscilexerdiff.h, qt/qscilexerfortran.h, qt/qscilexerfortran77.h,
qt/qscilexerhtml.h, qt/qscilexeridl.h, qt/qscilexerjava.h,
qt/qscilexerjavascript.h, qt/qscilexerjson.h, qt/qscilexerlua.h,
qt/qscilexermakefile.h, qt/qscilexermarkdown.h,
qt/qscilexermatlab.h, qt/qscilexeroctave.h, qt/qscilexerpascal.h,
qt/qscilexerperl.h, qt/qscilexerpo.h, qt/qscilexerpostscript.h,
qt/qscilexerpov.h, qt/qscilexerproperties.h, qt/qscilexerpython.h,
qt/qscilexerruby.h, qt/qscilexerspice.h, qt/qscilexersql.h,
qt/qscilexertcl.h, qt/qscilexertex.h, qt/qscilexerverilog.h,
qt/qscilexervhdl.h, qt/qscilexerxml.h, qt/qscilexeryaml.h,
qt/qscimacro.h, qt/qsciprinter.h, qt/qsciscintilla.h,
qt/qsciscintillabase.h, qt/qscistyle.h, qt/qscistyledtext.h:
Removed all the __APPLE__ C++ linkages.
[ecd39912cb9b]
* NEWS, Python/sip/qscilexer.sip, qt/qscilexer.h:
The previously internal methods of QsciLexer are now part of the
public API and are exposed to Python.
[4791eae227c6]
* NEWS, Python/configure.py, qt/features/qscintilla2.prf,
qt/features_staticlib/qscintilla2.prf, qt/qscintilla.pro:
The name of the library now embeds the major version of Qt so that
Qt4 and Qt5 libraries can be installed in the same directory.
[b501dcc67049]
* NEWS, Python/sip/qsciscintilla.sip, qt/qscilexercustom.h,
qt/qsciscintilla.cpp, qt/qsciscintilla.h:
Implemented QscScintilla::bytes() and a corresponding text()
overload mainly for the use of QsciLexerCustom::styleText()
implementations.
[ed7a5a072695]
2017-01-15 Phil Thompson <[email protected]>
* Python/sip/qsciscintillabase.sip:
Updated the sub-class convertor code.
[ee4e6efa0576]
* NEWS, Python/sip/qscilexermarkdown.sip,
Python/sip/qscimodcommon.sip, qt/qscilexermarkdown.cpp,
qt/qscilexermarkdown.h, qt/qscintilla.pro:
Added the QsciLexerMarkdown class.
[0b5e03e0b64f]
2017-01-11 Phil Thompson <[email protected]>
* NEWS, Python/sip/qscilexerjson.sip, Python/sip/qscimodcommon.sip,
qt/qscilexerjson.cpp, qt/qscilexerjson.h, qt/qscintilla.pro:
Implemented QsciLexerJSON.
[bb5118a2b0cb]
2017-01-05 Phil Thompson <[email protected]>
* NEWS, Python/sip/qscilexercoffeescript.sip,
qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h:
Added InstanceProperty to QsciLexerCoffeeScript.
[2a6987f4c3c3]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp,
qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h:
Implemented the new notifications.
[12ba81979751]
2017-01-04 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the low-level popup options.
[6a6fccaf8adf]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added support for multiple edge columns.
[761b940d39c6]
2017-01-03 Phil Thompson <[email protected]>
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the low-level idle styling support.
[fe8c747abb81]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added the low-level support for fold text.
[3afaaf7830c6]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Updates to the low-level target support.
[709bfb578a28]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h,
qt/qsciscintillabase.h:
Added support for the additional indicators.
[fb7bcbfc6c96]
* NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h:
Added some more low-level constants.
[d19d12e79c31]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added support for setting the margin background colour. Added
support for setting the number of margins.
[407db46c80a6]
* qt/qscilexercustom.cpp, qt/qscilexercustom.h:
Fixed QsciLexerCustom::startStyling() now that the 2nd argument
isn't used.
[2d4cc3cdb123]
* NEWS, Python/sip/qsciscintilla.sip,
Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp,
qt/qsciscintilla.h, qt/qsciscintillabase.h:
Added support for visible whitespace in indentations only. Added
support for tab drawing modes.
[1ef385e510b8]
* qt/InputMethod.cpp:
Updated the inputMethodEvent() implementation.
[f0060458bd73]
2017-01-02 Phil Thompson <[email protected]>
* qt/InputMethod.cpp, qt/ScintillaQt.cpp, qt/ScintillaQt.h:
Fixed compilation bugs with SCI_NAMESPACE defined.
[ef072ff5da5e]
* lib/README.doc:
Minor documentation updates.
[f89ceb95b9c5]
* qt/qsciscintillabase.cpp:
Fixed compilation bugs.
[8fdfb9bca00d]
* CONTRIBUTING, Python/configure-old.py, Python/configure.py, README,
cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/ScintillaCocoa.h,
cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/Info.plist, cocoa/
ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj, coc
oa/ScintillaFramework/ScintillaFramework.xcodeproj/project.xcworkspa
ce/contents.xcworkspacedata, cocoa/ScintillaFramework/ScintillaFrame
work.xcodeproj/xcshareddata/xcschemes/Scintilla.xcscheme,
cocoa/ScintillaFramework/module.modulemap,
cocoa/ScintillaTest/AppController.h,
cocoa/ScintillaTest/AppController.mm,
cocoa/ScintillaTest/English.lproj/MainMenu.xib,
cocoa/ScintillaTest/Info.plist,
cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, cocoa/S
cintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/contents.xc
workspacedata, cocoa/ScintillaView.h, cocoa/ScintillaView.mm,
cocoa/checkbuildosx.sh, cppcheck.suppress, delcvs.bat, designer-
Qt4Qt5/designer.pro, doc/Design.html, doc/Icons.html, doc/Lexer.txt,
doc/Privacy.html, doc/SciCoding.html, doc/ScintillaDoc.html,
doc/ScintillaDownload.html, doc/ScintillaHistory.html,
doc/ScintillaRelated.html, doc/ScintillaToDo.html,
doc/ScintillaUsage.html, doc/index.html, example-
Qt4Qt5/application.pro, 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/Platform.h, include/SciLexer.h, include/Sci_Position.h,
include/Scintilla.h, include/Scintilla.iface,
include/ScintillaWidget.h, 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/LexInno.cxx, lexers/LexJSON.cxx,
lexers/LexKVIrc.cxx, lexers/LexKix.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/LexMetapost.cxx, lexers/LexModula.cxx,
lexers/LexMySQL.cxx, lexers/LexNimrod.cxx, lexers/LexNsis.cxx,
lexers/LexNull.cxx, lexers/LexOScript.cxx, lexers/LexOpal.cxx,
lexers/LexOthers.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/LexSML.cxx, lexers/LexSQL.cxx,
lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx,
lexers/LexSmalltalk.cxx, lexers/LexSorcus.cxx,
lexers/LexSpecman.cxx, lexers/LexSpice.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/CharacterSet.cxx, lexlib/CharacterSet.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/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h,
lexlib/WordList.cxx, lexlib/WordList.h, qt/qscintilla.pro,
scripts/Face.py, scripts/FileGenerator.py,
scripts/GenerateCaseConvert.py, scripts/HeaderCheck.py,
scripts/HeaderOrder.txt, scripts/LexGen.py,
scripts/ScintillaData.py, src/AutoComplete.cxx, src/CallTip.cxx,
src/CaseConvert.cxx, src/CaseConvert.h, src/CaseFolder.cxx,
src/Catalogue.cxx, src/CellBuffer.cxx, src/CellBuffer.h,
src/CharClassify.cxx, src/CharClassify.h, src/ContractionState.cxx,
src/ContractionState.h, src/Decoration.cxx, 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/ExternalLexer.cxx, src/Indicator.cxx, src/Indicator.h,
src/KeyMap.cxx, src/KeyMap.h, src/LineMarker.cxx,
src/MarginView.cxx, src/PerLine.cxx, src/Position.h,
src/PositionCache.cxx, src/PositionCache.h, src/RESearch.cxx,
src/RESearch.h, src/RunStyles.cxx, 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/ViewStyle.cxx,
src/ViewStyle.h, src/XPM.cxx, test/ScintillaCallable.py,
test/XiteQt.py, test/XiteWin.py, test/examples/perl-test-
5220delta.pl, test/examples/perl-test-5220delta.pl.styled,
test/examples/perl-test-sub-prototypes.pl, test/examples/perl-test-
sub-prototypes.pl.styled, test/gi/Scintilla-0.1.gir.good, test/gi
/Scintilla-filtered.h, test/gi/filter-scintilla-h.py, test/gi/gi-
test.py, test/gi/makefile, test/lexTests.py, test/simpleTests.py,
test/unit/Sci.natvis, test/unit/UnitTester.cxx,
test/unit/UnitTester.vcxproj, test/unit/makefile,
test/unit/test.mak, test/unit/testCellBuffer.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/testWordList.cxx,
version.txt, win32/HanjaDic.cxx, win32/HanjaDic.h,
win32/PlatWin.cxx, win32/SciLexer.vcxproj, win32/ScintRes.rc,
win32/ScintillaWin.cxx, win32/deps.mak, win32/makefile,
win32/scintilla.mak:
Initial merge of Scintilla v3.7.2.
[abbfc844caaa]
* lib/LICENSE.commercial.short, lib/LICENSE.gpl,
lib/LICENSE.gpl.short:
Updated the copyright notices.
[10d2ba70b9d0]
* Makefile, build.py:
Merged the v2.9 maintenance branch.
[8c0c0a19a3c8]
2016-12-25 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.9.4 for changeset 06e486532f86
[a0e7ce41b57a] <2.9-maint>
* NEWS:
Released as v2.9.4.
[06e486532f86] [2.9.4] <2.9-maint>
2016-12-24 Phil Thompson <[email protected]>
* qsci/api/python/Python-3.6.api:
Added the .api file for Python v3.6.
[4af5841ab5d2] <2.9-maint>
2016-11-07 Phil Thompson <[email protected]>
* qt/qsciscintillabase.cpp:
Updated a comment to explain why setting custom scrollbars doesn't
work.
[757ca3bbc419] <2.9-maint>
2016-10-25 Phil Thompson <[email protected]>
* Python/configure.py:
Fixed configure.py for Python v2.
[6d784269a812] <2.9-maint>
2016-10-23 Phil Thompson <[email protected]>
* Python/sip/qscimod4.sip, Python/sip/qscimod5.sip:
Explicitly %Import the QtCore module so that it is imported in the
.pyi file.
[fec61f546e2b] <2.9-maint>
2016-09-26 Phil Thompson <[email protected]>
* lib/README.doc:
Removed some (possibly out of date) information about installation
on macOS.
[c793591a8192] <2.9-maint>
* qt/InputMethod.cpp:
Disable the hack for handling null input method method events on
Windows as there are reports that this breaks character composition.
[42977285ae81] <2.9-maint>
2016-09-25 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fixed a Qt warning about a too large red value in a QColor.
[f9af82c24301] <2.9-maint>
2016-09-23 Phil Thompson <[email protected]>
* rb-product:
Added the minimum PyQt5 wheel version to the product file.
[11d2fb4dc51a] <2.9-maint>
2016-09-10 Phil Thompson <[email protected]>
* Python/configure.py, rb-product:
Updated the handling of the minimum SIP version.
[1e50ffa9dac1] <2.9-maint>
2016-09-09 Phil Thompson <[email protected]>
* Python/sip/qscimod5.sip:
The limited API is now used for the Python bindings.
[a2b8118a4483] <2.9-maint>
2016-08-08 Phil Thompson <[email protected]>
* Makefile, build.py:
Removed the old internal build system.
[522e8b386eef] <2.9-maint>
2016-07-25 Phil Thompson <[email protected]>
* METADATA.in:
Removed the Obsoletes tag from METADATA.
[fbf9aa05d0b4] <2.9-maint>
* .hgtags:
Added tag 2.9.3 for changeset 19c9752958b7
[fb5cd006685f] <2.9-maint>
* NEWS:
Released as v2.9.3.
[19c9752958b7] [2.9.3] <2.9-maint>
2016-07-19 Phil Thompson <[email protected]>
* METADATA.in:
Updated METADATA.
[aa51b27d9baf] <2.9-maint>
2016-06-21 Phil Thompson <[email protected]>
* build.py, lib/qscintilla.dxy:
Simplify the generation of the doxygen documentation.
[12575460cd55] <2.9-maint>
* rb-product, rbproduct.py:
Replaced the product plugin with a product file.
[846ad54d791e] <2.9-maint>
2016-06-10 Phil Thompson <[email protected]>
* qt/ScintillaQt.cpp, qt/qscintilla.pro:
Fixed a flicker problem on OS X.
[c1482a759dc0] <2.9-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.)
[826424d291a2] <2.9-maint>
* METADATA.in, rbproduct.py:
Configure the PKG-INFO meta-data according to the license.
[e3243207aa15] <2.9-maint>
2016-05-10 Phil Thompson <[email protected]>
* rbproduct.py:
More changes to the product plugin required by rbtools.
[437e6032e4df] <2.9-maint>
2016-05-09 Phil Thompson <[email protected]>
* rbproduct.py:
Updated the product plugin for the latest rbtools changes.
[393cae59af91] <2.9-maint>
2016-04-22 Phil Thompson <[email protected]>
* METADATA.in:
Updated the meta-data now that Linux wheels are available from PyPI.
[40f18e066c6f] <2.9-maint>
2016-04-18 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.9.2 for changeset 15888f3e91ce
[5cd132938309] <2.9-maint>
* NEWS:
Released as v2.9.2.
[15888f3e91ce] [2.9.2] <2.9-maint>
* Python/sip/qsciscintillabase.sip:
Remove all deprecated /DocType/ annotations.
[b9d570ab642a] <2.9-maint>
2016-04-17 Phil Thompson <[email protected]>
* rbproduct.py:
Locate the static library on Windows.
[dd8c14dace83] <2.9-maint>
* rbproduct.py:
Fixed a typo.
[baf5c942f528] <2.9-maint>
* rbproduct.py:
Add any pre-installed .api files to the wheel.
[cf7b6302ae83] <2.9-maint>
* rbproduct.py:
Exploit verbose mode in the product plugin.
[da743c037880] <2.9-maint>
* rbproduct.py:
Fixed permissions of the product plugin.
[6fac075e0b88] <2.9-maint>
2016-04-16 Phil Thompson <[email protected]>
* Makefile:
Updated the clean target.
[692b14f48ade] <2.9-maint>
* rbproduct.py:
The wheel now includes translations and API files.
[bf911094e537] <2.9-maint>
* METADATA.in, Makefile, Python/configure.py, build.py, rbproduct.py:
Added the initial support for creating wheels.
[da0a5d22e864] <2.9-maint>
* Makefile, build.py:
Added the --omit-license-tag option to build.py. Added the dist-
wheel-gpl target to the master Makefile.
[a63c245de735] <2.9-maint>
2016-04-15 Phil Thompson <[email protected]>
* Python/configure-old.py, Python/configure.py, build.py,
qt/features/qscintilla2.prf, qt/features_staticlib/qscintilla2.prf,
qt/qsciglobal.h, qt/qscintilla.pro:
Symbols are now hidden if possible on all platforms. Improved the
handling of QSCINTILLA_DLL so it should be completely automatic.
Removed the --no-dll option to configure.py.
[e35caca29dd6] <2.9-maint>
2016-03-25 Phil Thompson <[email protected]>
* Python/configure-old.py, build.py:
Use the new naming standards for development versions.
[21d2f882320a] <2.9-maint>
2016-03-14 Phil Thompson <[email protected]>
* Python/configure.py, build.py:
The configure.py boilerplate code is applied automatically.
[848f3fca41c0] <2.9-maint>
2016-03-13 Phil Thompson <[email protected]>
* Python/configure.py:
Updated the configure.py boilerplate.
[b3fd404a1134] <2.9-maint>
2016-03-07 Phil Thompson <[email protected]>
* Python/configure.py:
Added support for PEP 484 stub files to configure.py.
[9316fed27503] <2.9-maint>
2015-12-15 Phil Thompson <[email protected]>
* Makefile:
Switched the internal build system to Python v3.5.
[5215e7f3116e] <2.9-maint>
2015-10-28 Phil Thompson <[email protected]>
* Python/configure.py:
Handle PATH components that are enclosed in quotes.
[d0f19b69ce26] <2.9-maint>
2015-10-24 Phil Thompson <[email protected]>
* .hgtags:
Added tag 2.9.1 for changeset 9bd39be91ef8
[c71bd22d6ccf] <2.9-maint>
* NEWS:
Released as v2.9.1.
[9bd39be91ef8] [2.9.1] <2.9-maint>
2015-10-17 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fixed the handling of the keypad modifier.
[e363cc2c347f] <2.9-maint>
2015-09-18 Phil Thompson <[email protected]>
* qsci/api/python/Python-3.5.api:
Added the .api file for Python v3.5.
[5b4e58de4663] <2.9-maint>
2015-09-10 Phil Thompson <[email protected]>
* Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip:
Fixed the Python binding for
QsciAbstractAPIs::updateAutoCompletionList().
[53f2939a3b29] <2.9-maint>
2015-09-08 Phil Thompson <[email protected]>
* Python/configure.py:
Use win32-msvc2015 for Python v3.5 and later.
[2f264662e2c7] <2.9-maint>
2015-09-01 Phil Thompson <[email protected]>
* qt/qsciscintilla.cpp:
Fixed the restyling of a document displayed in multiple editors.
[9309f264ab57] <2.9-maint>
2015-08-24 Phil Thompson <[email protected]>
* qt/qscintilla.pro, qt/qsciscintilla.cpp:
Fixed a problem starting a call tip when the auto-completion list is
displayed. Bumped the library version.
[2ec2115ea4d2] <2.9-maint>
2015-07-12 Phil Thompson <[email protected]>
* designer-Qt4Qt5/qscintillaplugin.h:
Fixed a warning message when compiling against Qt v5.5.0.
[3ff05a0ef88d] <2.9-maint>
2015-07-09 Phil Thompson <[email protected]>
* Python/configure.py:
Update QMAKE_RPATHDIR rather than set it.