-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog-20090418
2717 lines (1871 loc) · 85.4 KB
/
ChangeLog-20090418
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
=== gtksourceview 2.6.1 ===
2009-04-12 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.6.1
2009-04-12 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/asp.lang:
Add some missing keywords, patch Fabio Zendhi Nagao.
2009-04-12 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcelanguage-parser-2.c: do not leak
id string on the error codepath.
2009-04-12 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/verilog.lang:
Add some missing keywords. Bug #577892, patch by Ben James.
2009-03-18 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/prolog.lang:
Add "consult" word and minor fix highlighting variables.
=== gtksourceview 2.6.0 ===
2009-03-15 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.6.0
2009-03-13 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/octave.lang: use % for
code comments since matlab does not like #.
2009-03-03 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/prolog.lang:
* gtksourceview/language-specs/Makefile.am:
* gtksourceview/language-specs/testfiles.sh:
Add prolog lang file.
=== gtksourceview 2.5.6 ===
2009-03-02 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.6
2009-02-26 Jesse van den Kieboom <[email protected]>
* gtksourceview/language-specs/po.lang: added
text/x-gettext-translation-template mime type
2009-02-26 Thomas H.P. Andersen <[email protected]>
* tests/test-widget.c: Replace deprecated gtk symbol. Bug #572085
2009-02-25 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcemark.c: chain up finalize.
=== gtksourceview 2.5.5 ===
2009-02-15 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.5
2009-02-10 Johannes Schmid <[email protected]>
* gtksourceview/gtksourceview.c (update_current_line_color):
#570492 – Canot open editor - crash
2009-02-05 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/cobalt.xml:
Mark strings for translation.
2009-02-04 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/cobalt.xml:
* gtksourceview/language-specs/Makefile.am:
Add new blue based style. Thanks to Will Farrington.
=== gtksourceview 2.5.4 ===
2009-01-19 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.4
2009-02-02 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/octave.lang: support matlab
multiline comments. Patch by Brendan Bycroft.
(Fixes bug #556365).
2009-01-30 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/rpmspec.lang:
Add %else to rpm spec language. Patch by Matthias Clasen.
(Fixes bug #569771).
=== gtksourceview 2.5.3 ===
2009-01-19 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.3
2009-01-19 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/php.lang: add
missing "endif" keyword.
2009-01-19 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/dosbatch.lang:
* gtksourceview/language-specs/Makefile.am:
* gtksourceview/language-specs/testfiles.sh:
* po/POTFILES.in:
Add a very simle lang file for dos batch files.
2009-01-15 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/asp.lang:
Updated. Thanks to Fabio Nagao.
2009-01-09 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/makefile.lang:
Use proper strings for translation and add context.
(Fixes bug #567247)
2009-01-09 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/asp.lang:
* gtksourceview/language-specs/Makefile.am:
* gtksourceview/language-specs/testfiles.sh:
* po/POTFILES.in:
Add ASP lang file by Fabio Nagao.
=== gtksourceview 2.5.2 ===
2009-01-05 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.2
2009-01-05 Jesse van den Kieboom <[email protected]>
* gtksourceview/gtksourceview.c: verticall align category mark pixbuf
in the middle of the line (fixes #566408).
2008-12-31 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcecontextengine.c
(gtk_source_context_engine_text_inserted):
The commit before the last one was broken, now bug #566131
is really fixed.
2008-12-31 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/nsis.lang
* gtksourceview/language-specs/t2t.lang
* gtksourceview/language-specs/cmake.lang
* gtksourceview/language-specs/Makefile.am:
New lang files: CMake, NSIS, and txt2tags.
* gtksourceview/language-specs/ini.lang: variable names may
contain dash.
* gtksourceview/language-specs/desktop.lang: added bunch of
catefories from the f.d.o. spec.
* gtksourceview/language-specs/kate.xml,
* gtksourceview/language-specs/testfiles.sh: updated.
2008-12-31 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcecontextengine.c
(gtk_source_context_engine_text_inserted):
Bug 566131 – Syntax highlightig bug; Backspace and Enter.
2008-12-28 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/pascal.lang:
Add the missing words. (Fixes bug #565789).
=== gtksourceview 2.5.1 ===
2008-12-26 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.5.1
2008-12-20 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/pascal.lang:
Add several words to highlight. (Fixes bug #565172)
2008-12-19 Jürg Billeter <[email protected]>
* gtksourceview/language-specs/vala.lang: add owned, unowned,
yield, and yields to keyword list
2008-12-16 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourceview.c
(gtk_source_view_get_mark_category_pixbuf): do not call
g_object_ref() on a NULL. Bug #564714, patch by Mike Spivey.
2008-12-12 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/awk.lang:
Add builtin functions to awk lang file. Fixes bug #564242.
2008-12-12 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/gtksourcestylescheme.c:
Typo in property. Fixes bug #564225.
2008-12-10 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcelanguage.c: fix cut and paste error
causing wrong values in gobject properties. Bug #564142.
2008-12-08 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/pascal.lang:
Add downto highlight. Fixes bug #563271.
2008-12-08 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/dtd.lang:
* gtksourceview/language-specs/po.lang:
* gtksourceview/language-specs/m4.lang:
* gtksourceview/language-specs/changelog.lang:
* gtksourceview/language-specs/xslt.lang:
* gtksourceview/language-specs/makefile.lang:
* gtksourceview/language-specs/gap.lang:
* gtksourceview/language-specs/yacc.lang:
Mark strings for translation.
2008-12-08 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/vala.lang:
* gtksourceview/language-specs/xslt.lang:
Mark string for translation.
2008-12-08 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/dot.lang:
Mark string for translation.
2008-12-08 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/gtk-doc.lang:
Added the "Deprecated" word to gtk-doc.
2008-12-03 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/gtksourceview.c:
Removed check.
2008-12-03 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/gtksourceview.c:
* gtksourceview/gtksourceview.h:
Added non-breaking spaces drawing.
2008-11-29 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourceiter.c: (forward_chars_with_skipping):
call g_utf8_casefold() before normalizing, to match behavior
of the search code. Bug #496780.
* tests/test-widget.c: added Find command.
=== gtksourceview 2.4.1 ===
2008-11-01 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.4.1
2008-11-01 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/octave.lang: add some missing keywords
Bug #556278, patch by Søren Hauberg.
2008-10-29 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/dot.lang: add lang file for graphviz.
2008-10-29 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcebuffer.c: Override insert_pixbuf()
and insert_child_anchor() methods to notify the syntax
highlighting engine about the change. Bug #550687.
=== gtksourceview 2.4.0 ===
2008-09-08 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.4.0
=== gtksourceview 2.3.3 ===
2008-09-08 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.3.3
2008-09-08 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/java.lang: highlight escaped chars
in strings
2008-09-03 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/sh.lang: fix typo (podp instead
of popd). Bug #550687.
=== gtksourceview 2.3.2 ===
2008-08-30 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.3.2
2008-08-30 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/po.lang: highlight "fuzzy" and
"msctxt". Patch by Bob Mauchin.
2008-08-30 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/texinfo.lang:
fix bug #549044, never ending @ignore block.
2008-08-30 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/python.lang: handle raw string
separately since they do not contain escaped chars.
2008-08-27 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/xslt.lang: add lang file for xslt.
* gtksourceview/language-specs/xml.lang: fix match priority bug
needed for xslt.
2008-08-17 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceview.c (draw_spaces_at_iter): special case
the end iter.
=== gtksourceview 2.3.1 ===
2008-08-11 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.3.1
2008-08-11 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcebuffer.c:
track when the object has been constructed so that we know the
tag-table is there and we can check bracket matches etc.
2008-08-10 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcebuffer.c
(gtk_source_buffer_get_source_marks_at_iter):
do not leak list of marks.
2008-08-10 Paolo Borelli <[email protected]>
* configure.ac: restore variable used by test-widget that I removed
by mistake.
2008-08-10 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceview.c
(gtk_source_view_paint_line_background):
destroy cairo context
=== gtksourceview 2.3.0 ===
2008-08-09 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.3.0
2008-08-09 Paolo Borelli <[email protected]>
* configure.ac:
* Makefile.am:
Remove conditional switch for tests, it was used to avoid
gnome-vfs dep on win32, but that's not needed anymore
2008-08-09 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/sh.lang: add tr and df commands
2008-08-09 Paolo Borelli <[email protected]>
New API: gtk_source_view_[set|get]_draw_spaces, bug #441513.
* gtksourceview/gtksourceview.h:
* gtksourceview/gtksourceview.c:
Allow to draw spaces, tabs and newlines
* gtksourceview/gtksourcestylescheme.h:
* gtksourceview/gtksourcestylescheme.c:
Get the color for drawing spaces
* tests/test-widget.c: use the new feature.
2008-08-06 Ignacio Casal Quinteiro <[email protected]>
* gtksourceview/language-specs/c.lang:
Fixed printf style.
2008-08-05 Yevgen Muntyan <[email protected]>
New API: gtk_source_language_manager_guess_language(), bug #546060.
* gtksourceview/gtksourcelanguagemanager.h:
* gtksourceview/gtksourcelanguagemanager.c: (pick_lang_for_filename),
(pick_lang_for_mime_type_pass), (pick_lang_for_mime_type),
(grok_win32_content_type), (gtk_source_language_manager_guess_language):
new functions.
* tests/test-widget.c: use it here.
* tests/Makefile.am:
* configure.ac: removed gnome-vfs and added gio dependency.
* docs/reference/gtksourceview-2.0-sections.txt:
* docs/reference/tmpl/languagemanager.sgml:
* docs/reference/tmpl/language.sgml:
* docs/reference/tmpl/view.sgml: updated.
2008-08-05 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcestylescheme.c (parse_style): do not leak line_bg.
2008-08-05 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/csharp.lang: use different style for
format strings.
2008-08-04 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/csharp.lang: added {...} format regex
to strings (see bug #507125 for reference), replaced single-quoted
string with a character context like in c.lang.
2008-08-04 Yevgen Muntyan <[email protected]>
Bug 315055 – Change the backgound color of lines containing markers
New API: gtk_source_view_set_mark_category_background(),
gtk_source_view_get_mark_category_background(), similar to methods
for priority and pixbuf.
* gtksourceview/gtksourceview.c: replaced GtkSourceViewPrivate::current_line_gc
with current_line_color and current_line_color_set;
added MarkCategory::background and MarkCategory::background_set;
removed gtk_source_view_unrealize() since current line GdkGC is removed;
(source_mark_updated_cb): call gtk_widget_queue_draw() instead of invalidating
only margin window;
(gtk_source_view_get_lines): added an array argument to get line heights,
to use in line background drawing code;
(gtk_source_view_paint_line_background), (gtk_source_view_paint_marks_background):
new functions;
(gtk_source_view_expose): use those; do not draw current line background if
the widget is insensitive;
(mark_category_set_background), (gtk_source_view_set_mark_category_background),
(gtk_source_view_get_mark_category_background): new functions;
(gtk_source_view_set_mark_category_pixbuf), (gtk_source_view_set_mark_category_priority):
call gtk_widget_queue_draw() here;
(update_current_line_color), (gtk_source_view_realize), (gtk_source_view_update_style_scheme):
only update current line color, no need to fiddle with GdkGC anymore.
* gtksourceview/gtksourceview.h: gtk_source_view_set_mark_category_background(),
gtk_source_view_get_mark_category_background().
* tests/test-widget.c: set background color for marks.
2008-08-03 Yevgen Muntyan <[email protected]>
* tests/test-widget.c (main): corrected description of -d option.
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcebuffer.c (gtk_source_buffer_real_insert_text):
Start search for matching brackets from cursor location, not from the
location where text has been inserted.
Patch by Armin Burgmeier, bug #543325.
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/php.lang: added 'identifier'
context, bug #497376.
2008-08-02 Yevgen Muntyan <[email protected]>
Bug 317861 – sourceview is ignoring tab settings which are set before
it is mapped or realized.
* gtksourceview/gtksourceview.c:
GtkSourceViewPrivate::tabs_set - new field, which gets set in
set_tab_stops_internal() when gtk_text_view_set_tabs() is called;
(gtk_source_view_style_set): do not call set_tab_stops_internal()
if tabs were not modified.
This way gtk_text_view_set_tabs() is called only when
gtk_source_view_set_tab_width() is called with something other than 8,
and so GtkSourceView users (like meld in the bug above) may use
gtk_text_view_set_tabs() themselves.
2008-08-02 Yevgen Muntyan <[email protected]>
Bug 329883 – evaluate bracket matching as soon as it's turned on.
* gtksourceview/gtksourcebuffer.c
(gtk_source_buffer_set_highlight_matching_brackets):
update matching bracket immediately.
* tests/test-widget.c: added a menu item for highlighting matching
brackets.
2008-08-02 Yevgen Muntyan <[email protected]>
* tests/apple-red.png:
* tests/gnome-gmush.png:
* tests/test-widget.c:
* tests/Makefile.am:
Added apple and mushroom icons, so that line marks in test-widget
finally show up without gnome.
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/def.lang: do not allow backslash
in net-address. Fixes bug #541791.
2008-08-02 Yevgen Muntyan <[email protected]>
Bug 545096 – highlighting problems for DTD entities inside xml.
* gtksourceview/language-specs/dtd.lang: do not highlight any
unknown text as error.
2008-08-02 Yevgen Muntyan <[email protected]>
Bug 543313 – Self closed <script> tags are not accounted correctly
in html.
* gtksourceview/language-specs/html.lang: committed fix by pbor.
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcecontextengine.c (analyze_line):
* gtksourceview/language-specs/forth.lang:
branched for 2.22, un-un-done the last two string changes.
=== branched for gnome-2.22 ===
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcecontextengine.c: (analyze_line):
un-marked the new string as translatable, since strings are
frozen.
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/forth.lang: reverted last commit,
need to branch for 2-22 first. Bureaucracy!
2008-08-02 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/forth.lang: changed "Compiler opt"
style name to "Compiler Directive", bug #518437.
2008-08-02 Yevgen Muntyan <[email protected]>
Bug 114337 – long lines kill GtkSourceView.
Worked it around by disabling syntax highlighting if analyzing
single line took more than 2 seconds.
* gtksourceview/gtksourcecontextengine.c:
(GtkSourceContextEnginePrivate::disabled): new field,
(gtk_source_context_engine_update_highlight): check that field,
(analyze_line): check elapsed time on every iteration and abort
in two seconds,
(update_syntax): check whether analyze_line() has disabled
highlighting,
(disable_highlighting): new function to turn highlighting off.
=== gtksourceview 2.2.2 ===
2008-06-23 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.2.2
2008-06-20 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/latex.lang: added bunch of commands.
Bug #361209, patch by Marciano Siniscalchi.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview-2.0.pc.in: moved libxml-2.0 from Requires to
Requires.private, added minimal versions for gtk+-2.0 and libxml-2.0.
Bugs 501515, 508591.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/php.lang: added parentheses and
comma to the operators list. Bug #497376, Étienne Bersac.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/ruby.lang: added bunch of builtins.
Bug #337561, patch by gbauman.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/php.lang: added some keywords.
Bug #150396, patch by Patryk Zawadzki.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourceview.c (gtk_source_view_undo),
(gtk_source_view_redo), (gtk_source_view_populate_popup),
(gtk_source_view_paint_margin): check whether the buffer
is a GtkSourceBuffer, bug #139461.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/perl.lang: try to avoid problems
with pattern rules, bugs 507075 and 535703.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/gtksourcebuffer.c: use a limit of 10000
instead of 2000 for searching matching brackets.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/ocaml.lang: fix camlCase
highlighting. Bug 532698.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/haskell.lang: {- -} comments
may be nested, bug #532964.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/sh.lang: do not treat <<< as
here-document start. Bug #538762.
2008-06-18 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/ruby.lang (predefined-variables):
do not use \b after non-word characters, fixes bug #538967.
* gtksourceview/language-specs/objc.lang: highlight self and
super; highlight nil and Nil as YES and NO.
2008-06-05 Ignacio Casal Quinteiro <[email protected]>
* tests/test-widget.c: Fixed compilation warning.
2008-06-05 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceview.c: do not (un)indent if the view is
not editable. Bug #536554.
2008-04-27 Paolo Borelli <[email protected]>
* gtksourceview-zip.in: zip style schemes and fix docs dir.
2008-04-25 Juerg Billeter <[email protected]>
* gtksourceview/language-specs/vala.lang: update keyword list to
match Vala 0.3.1
2008-04-13 Armin Burgmeier <[email protected]>
* gtksourceview/gtksourceundomanager.c
(gtk_source_undo_manager_add_action),
(gtk_source_undo_manager_insert_text_handler): Handle insertion of
non-null-terminated strings correctly.
2008-04-11 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/octave.lang: corrected
non-existent style reference (#527484).
2008-04-09 Yevgen Muntyan <[email protected]>
gtksourceview depends on gtk-2.12 now, so it will not be
built with glib older than 2.14, so pcre stuff may go now.
* configure.ac:
* gtksourceview/Makefile.am:
* docs/reference/Makefile.am: removed regex stuff.
* acinclude.m4:
* gtksourceview/regex: deleted.
2008-04-09 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/python.lang: def:line-continue
is not needed in the main context.
* gtksourceview/language-specs/sh.lang: 'for' loops work
without 'in' too.
* gtksourceview/language-specs/yacc.lang: prettified.
=== gtksourceview 2.2.1 ===
2008-04-07 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.2.1
2008-04-05 Paolo Maggi <[email protected]>
* gtksourceview/gtksourceview.c (gtk_source_view_class_init): add
keybindings for move_viewport. You can now scroll one line up/down,
one page up/down and to the beginning/end of the document without moving
the cursor (use Shit + Alt + Up|Down|PageUp|PageDown|Home|End).
2008-04-05 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/python.lang: fix line-continue
in double quoted strings. Bug #525751.
2008-03-30 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceview.c: make Alt+up/down move the current
or selected line in the buffer.
2008-03-30 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceview.c: fix compiler warning.
=== gtksourceview 2.2.0 ===
2008-02-25 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.2.0
2008-02-29 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/c.lang: (printf): highlight
width and precision given as '*';
(escaped-character): highlight \b; hex digit is \\x[HEX]+,
not \\x[HEX]{0,2};
(string), (char): highlight 'L' prefix in wide char literals.
* gtksourceview/language-specs/yacc.lang: prettified.
* gtksourceview/language-specs/lua.lang: do not highlight
_G.* in the middle of idenitifiers.
2008-02-28 Johannes Schmid <[email protected]>
* gtksourceview/gtksourceview.c: (gtk_source_view_paint_margin):
Fixed a small memory leak
=== gtksourceview 2.1.3 ===
2008-02-25 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.1.3
2008-02-25 Johannes Schmid <[email protected]>
* gtksourceview/gtksourcemark.c: (gtk_source_mark_finalize):
Initialize object correctly (will crash otherwise)
2008-02-24 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcemark.c: do not leak the category string.
Spotted by Johannes Schmid.
2008-02-24 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/oblivion.xml: fix typo in
the "def:shebang" style. Spotted by Chris Hollenbeck.
2008-02-06 Murray Cumming <[email protected]>
* gtksourceview/gtksourcebuffer.c:
* gtksourceview/gtksourcebuffer.h:
(gtk_source_buffer_remove_source_marks): Make the GtkTextIter*
parameters const, as they are when used in this way elsewhere in this
API. Bug #514655.
2008-02-04 Tor Lillqvist <[email protected]>
* gtksourceview-zip.in: Look for catalogs in share/locale first,
as that is where they will be with a properly built GNU gettext.
=== gtksourceview 2.1.2 ===
2008-01-29 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.1.2
2008-01-29 Paolo Borelli <[email protected]>
* gtksourceview/gtksourcebuffer.c:
* gtksourceview/gtksourcebuffer.h:
* gtksourceview/gtksourceview.c:
* gtksourceview/gtksourcemark.c:
* tests/test-widget.c:
Rename some of the buffer mark methods to avoid potential conflicts
with GtkTextBuffer methods in the bindings. Bug #512481.
=== gtksourceview 2.1.1 ===
2008-01-29 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
Release 2.1.1
2008-01-28 Paolo Borelli <[email protected]>
* gtksourceview/language-specs/eiffel.lang: add eiffel syntax file by
Hasan Karahan <[email protected]>.
2008-01-28 Steve Frécinaux <[email protected]>
* gtksourceview/language-specs/sh.lang: highlight variables inside of
strings, and other minor highlighting improvements; rename a few
contextes.
* gtksourceview/language-specs/classic.xml:
* gtksourceview/language-specs/tango.xml:
Adapt for above changes
2008-01-27 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/fortran.lang: highlight floating
point constants properly; highlight BOZ literals (#496781).
* gtksourceview/language-specs/makefile.lang: escaped quote does
not start a string.
* gtksourceview/language-specs/sh.lang: def:escape is wrong in
shell strings; highlight $! (Luca Cavalli, #512141).
* gtksourceview/language-specs/lua.lang: properly highlight escaped
characters in strings.
* gtksourceview/language-specs/forth.lang: updated.
* gtksourceview/language-specs/testfiles.sh: added a fortran file.
* gtksourceview/language-specs/kate.xml: nicer def:constant color.
2008-01-25 Paolo Borelli <[email protected]>
* gtksourceview/gtksourceprintcompositor.c: count from 1 when deciding
which lines should have a number.
2008-01-25 Paolo Borelli <[email protected]>
* gtksourceview/Makefile.am: remove leftover var
2008-01-20 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/forth.lang: new lang file,
for Forth programming language, by Jens-Hanno Schwalm (#504730).
* gtksourceview/language-specs/Makefile.am:
* gtksourceview/language-specs/testfiles.sh:
added it.
2008-01-20 Gian Mario Tagliaretti <[email protected]>
* gtksourceview/gtksourceprintcompositor.c: fix a couple of
typos in docs.
2008-01-17 Yevgen Muntyan <[email protected]>
* gtksourceview/language-specs/fortran.lang: added comment
property, patch by [email protected] (#510032).
* gtksourceview/language-specs/docbook.lang: removed obsolete
dtd line.
=== gtksourceview 2.1.0 ===
2008-01-14 Paolo Maggi <[email protected]>
Added new gtk-print based printing API.
* docs/reference/gtksourceview-2.0-sections.txt: updated
* docs/reference/gtksourceview-2.0.types: updated
* docs/reference/gtksourceview-docs.sgml: updated
* docs/reference/tmpl/printjob.sgml: removed
* docs/reference/tmpl/printcompositor.sgml: new file
* gtksourceview/gtksourceprintcompositor.c: new file
* gtksourceview/gtksourceprintcompositor.h: new file
* gtksourceview/gtksourcebuffer.c: normalize returned value
for boolean getters
* gtksourceview/gtksourceview.c: ditto
* gtksourceview/Makefile.am: updated
* tests/test-widget.c: added test for printing
2008-01-13 Jonathon Jongsma <[email protected]>
* gtksourceview/gtksourceview.c: sort the list of marks with lowest-priority
marks first so that they get drawn on the bottom. Fixes bug #509167
2000-01-05 Gian Mario Tagliaretti <[email protected]>
* docs/reference/tmpl/stylescheme.sgml:
* docs/reference/tmpl/languagemanager.sgml:
Restore docs templates, use gtk-doc from trunk.
2008-01-05 Paolo Borelli <[email protected]>
Johannes Schmid <[email protected]>
* configure.ac:
Bumped version to 2.1.0
* docs/reference/gtksourceview-2.0-sections.txt:
* docs/reference/gtksourceview-2.0.types:
* docs/reference/gtksourceview-docs.sgml:
* docs/reference/tmpl/buffer.sgml:
* docs/reference/tmpl/languagemanager.sgml:
* docs/reference/tmpl/mark.sgml:
* docs/reference/tmpl/marker.sgml: (removed)
* docs/reference/tmpl/stylescheme.sgml:
* docs/reference/tmpl/view.sgml:
Updated docs for new GtkSourceMark API
* gtksourceview/Makefile.am: