-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
11309 lines (8154 loc) · 387 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
# Generated by Makefile. Do not edit.
commit ee1cd3a3e41a01f83bdd17f80d7cf21c213fb4a4
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Sun Mar 10 15:24:47 2013 +0100
Fix various typos and wordings in the NEWS
Also remove a duplicated item.
NEWS | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
commit 44e0b8ee902e2a8a1bf908af59a97f5e4457b7ae
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Sun Mar 10 14:57:04 2013 +0100
Update documentation images
doc/images/build_menu_commands_dialog.png | Bin 38736 -> 53471 bytes
doc/images/find_dialog.png | Bin 13437 -> 17199 bytes
doc/images/find_in_files_dialog.png | Bin 21522 -> 25211 bytes
doc/images/main_window.png | Bin 79859 -> 73968 bytes
doc/images/pref_dialog_edit_completions.png | Bin 32267 -> 54063 bytes
doc/images/pref_dialog_edit_display.png | Bin 28532 -> 47272 bytes
doc/images/pref_dialog_edit_features.png | Bin 24576 -> 38688 bytes
doc/images/pref_dialog_edit_indentation.png | Bin 28526 -> 40477 bytes
doc/images/pref_dialog_files.png | Bin 33684 -> 49600 bytes
doc/images/pref_dialog_gen_misc.png | Bin 26360 -> 42951 bytes
doc/images/pref_dialog_gen_startup.png | Bin 30596 -> 42976 bytes
doc/images/pref_dialog_interface_interface.png | Bin 26399 -> 42346 bytes
doc/images/pref_dialog_interface_notebook.png | Bin 26334 -> 41551 bytes
doc/images/pref_dialog_interface_toolbar.png | Bin 26575 -> 38006 bytes
doc/images/pref_dialog_keys.png | Bin 35278 -> 46262 bytes
doc/images/pref_dialog_printing.png | Bin 25137 -> 35005 bytes
doc/images/pref_dialog_templ.png | Bin 28827 -> 41548 bytes
doc/images/pref_dialog_tools.png | Bin 26815 -> 36754 bytes
doc/images/pref_dialog_various.png | Bin 34526 -> 47404 bytes
doc/images/pref_dialog_vte.png | Bin 32067 -> 45780 bytes
doc/images/replace_dialog.png | Bin 16726 -> 21677 bytes
21 files changed, 0 insertions(+), 0 deletions(-)
commit 5456fa3df978d242ddd81d96201172fd6324ef5e
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Sun Mar 10 13:46:19 2013 +0100
Regenerated the HTML manual
doc/geany.html | 70 ++++++++++++++++++++++++++++++++------------------------
1 file changed, 40 insertions(+), 30 deletions(-)
commit c917f126678dc26a9afcee444905c52cb8488bfd
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Sun Mar 10 13:42:24 2013 +0100
Set release date
NEWS | 2 +-
doc/geany.1.in | 2 +-
doc/geany.txt | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
commit 6ec0d98e0ad0c7ae515801f6db6d34fb28177ee3
Author: Enrico Tröger <enrico.troeger@uvena.de>
Date: Sun Mar 10 15:08:46 2013 +0100
Update NEWS for UAC fix
NEWS | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit 1613f93ad0adbb32faf77172930f981cff4ff8a5
Author: Igor Shaula <gentoo90@gmail.com>
Date: Mon Feb 18 20:24:15 2013 +0200
Disable UAC Virtualization on Windows
Includes an application manifest embedded into the .exe resources.
geany.exe.manifest | 18 ++++++++++++++++++
geany_private.rc | 2 ++
2 files changed, 20 insertions(+)
commit 51c541faa223b5a8cab3eddc0bee49172b85ca2d
Author: tomboy64 <tomboy64@sina.cn>
Date: Thu Feb 21 06:14:31 2013 +0100
Add support for the Go programming language
- syntax highlighting
- support for the go compiler (as opposed to gccgo)
NEWS | 1 +
data/filetype_extensions.conf | 3 ++-
data/filetypes.Go.conf | 54 +++++++++++++++++++++++++++++++++++++++++
3 files changed, 57 insertions(+), 1 deletion(-)
commit d5440c141f9acaa38dff42b12ae1a20f6c23cac8
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sun Mar 10 09:37:13 2013 +0100
Another update of Hebrew translation.
po/he.po | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
commit c317a93857a6904ad11dba87d7138871a8584314
Author: YosefOr <yosefor3@walla.com>
Date: Sat Mar 9 20:39:15 2013 +0200
Small improvement of Hebrew translation
po/he.po | 2688 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 1346 insertions(+), 1342 deletions(-)
commit b2b413470648854320a05954a8581a49c622d0a5
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sat Mar 9 14:26:33 2013 +0100
Small improvement of German translation
po/de.po | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
commit a6ab76e7ef47e923eee924254780fde4504dc3b3
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Fri Mar 8 20:36:52 2013 +0100
Update NEWS to reference more bugs and list latest changes
NEWS | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
commit 771934ae29151e0c16c642fa4739f0aaec5cfd62
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Fri Mar 8 18:32:47 2013 +0100
Don't translate program name directive in Pascal file template
Pascal code only accepts an identifier in the program name directive,
but {untitled} wildcard gets replaced with a translated string that may
not be a valid Pascal identifier. Moreover, the directive being part
of the source of the program it's good practice for it to be in English
anyway.
Closes #3602314.
data/templates/files/program.pas | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit e5e697e5c385d62f686b92b2cca09d940b974863
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Mar 8 17:19:31 2013 +0100
Upate of Catalan translation
NEWS | 2 +-
po/ca.po | 3277 ++++++++++++++++++++++++++++++--------------------------------
2 files changed, 1563 insertions(+), 1716 deletions(-)
commit b01f31c09bfdd0988b4fb94bc154683f0bedaff6
Merge: f439a5b e01d5a5
Author: Enrico Tröger <enrico.troeger@uvena.de>
Date: Fri Mar 8 00:08:58 2013 +0100
Merge branch 'gentoo90-context-menu-icon'
commit e01d5a568b893a42a089272d8063c35548dfb9e7
Author: Igor Shaula <gentoo90@gmail.com>
Date: Sat Feb 9 18:47:05 2013 +0200
Add icon to Explorer context menu entry
geany.nsi | 1 +
1 file changed, 1 insertion(+)
commit f439a5be422ede003b279caf1df73f2d90393195
Merge: af23739 a3b9283
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Thu Mar 7 00:20:39 2013 -0800
Merge pull request #117 from kgkilo/hu_po
Updated Hungarian translations
commit a3b9283e5bf1a9c84c116e0a2ebad16a3b7cdbac
Author: kilo aka Gabor Kmetyko <kg.kilo@gmail.com>
Date: Wed Mar 6 23:42:46 2013 +0100
Updated Hungarian translations
po/hu.po | 1597 ++++++++++++++++++++++++++++----------------------------------
1 file changed, 714 insertions(+), 883 deletions(-)
commit af237391fc4e1701b6dc6ed98f7081440ca89210
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Wed Mar 6 19:47:47 2013 +0100
Update of German translation
po/de.po | 1676 ++++++++++++++++++++++++++++----------------------------------
1 file changed, 743 insertions(+), 933 deletions(-)
commit a552c82a748d1eaed7ec04cc442e0fbbef288af0
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Wed Mar 6 19:28:52 2013 +0100
Update of Brazilian Portuguese translation
po/pt_BR.po | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
commit e5245eb053cd02b72827de41f7509512fcbc551c
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Tue Mar 5 23:52:45 2013 +0100
Increase the number of lines where filename is replaced upon save as
Search the first 4 lines (instead of 3) for Python templates support.
doc/geany.txt | 2 +-
src/document.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 5b2366964938b54005eec39d392fc5cbea81682b
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Tue Mar 5 23:32:17 2013 +0100
Fix replacing file name in headers upon save as
The code used a Scintilla-specific regex escape (\<) which doesn't work
anymore since the time we switched to full PCRE (which uses \b). So,
update the regular expression to PCRE.
Also, properly escape the name to search in the unlikely case it has
regular expression escapes in it; and properly check for word
boundaries even when not searching with an extension.
src/document.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit 77e142bb73cb12777a37ae792784b171b667d0c4
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Mar 5 19:44:31 2013 +0100
Update of Slovenian translation
po/sl.po | 27 ++++++++++++---------------
1 file changed, 12 insertions(+), 15 deletions(-)
commit da5deda697677b508cde71a14e44ee671b07f64c
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Mar 5 19:38:46 2013 +0100
Update of Kazakh translation
NEWS | 3 +-
po/kk.po | 95 ++++++++++++++++++++++++++------------------------------------
2 files changed, 42 insertions(+), 56 deletions(-)
commit bf7a399ac9ef4bdbe02feaf53696dd62ca70214c
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Mar 5 19:35:46 2013 +0100
Update of Brasilian Portugese translation
po/pt_BR.po | 3262 ++++++++++++++++++++++++++++-------------------------------
1 file changed, 1547 insertions(+), 1715 deletions(-)
commit 58eb5507753c97fa99c31fb65d25ebcb5a2fab21
Merge: 775ef62 0053431
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Mon Mar 4 09:17:23 2013 -0800
Merge pull request #115 from xhacker/patch-1
Update zh_CN.po
commit 00534315b38a8f388ab35af8f0e3b5c527fdddc2
Author: LIU Dongyuan <liu.dongyuan@gmail.com>
Date: Mon Mar 4 23:33:25 2013 +0800
Update zh_CN.po
po/zh_CN.po | 79 ++++++++++++++++++++++++-----------------------------------
1 file changed, 32 insertions(+), 47 deletions(-)
commit 775ef628688c69de34640e12666aed5762a80dff
Author: Enrico Troeger <enrico.troeger@uvena.de>
Date: Sun Mar 3 23:33:25 2013 +0100
Set the working directory on Windows very early to also help code which uses relative resource paths
src/main.c | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
commit fc9795010c504937815fd1c6ecfc9c592aa52e6a
Author: Enrico Troeger <enrico.troeger@uvena.de>
Date: Sun Mar 3 23:28:22 2013 +0100
Install geany.gtkrc with the Windows installer
geany.nsi | 1 +
1 file changed, 1 insertion(+)
commit 48dc4789ce22a072f4c1ca881d7bc45adb5f57d8
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sun Mar 3 08:10:44 2013 +0100
Update of Turkish translation
po/tr.po | 3307 ++++++++++++++++++++++++++++----------------------------------
1 file changed, 1512 insertions(+), 1795 deletions(-)
commit 39bb444ee53ec47fcd60b9e6e36e27bd9e45bc16
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Mar 1 19:35:41 2013 +0100
Small update on NEWS
NEWS | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit cf61d5d4258f18c2efe7cf006b909c6fc42d88a3
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Mar 1 19:35:12 2013 +0100
Update of Italian translation
po/it.po | 3271 +++++++++++++++++++++++++++++---------------------------------
1 file changed, 1542 insertions(+), 1729 deletions(-)
commit 964a20fb79cb1a55d663e4b519077d4952c817fe
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Mar 1 19:31:30 2013 +0100
Update of Slovenian translation
po/sl.po | 1593 +++++++++++++++++++++++++++++---------------------------------
1 file changed, 734 insertions(+), 859 deletions(-)
commit 8db196d2b3838418478b06d637f8310cbdd8a4d7
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Mar 1 19:29:28 2013 +0100
Update of Galician translation
po/gl.po | 1724 ++++++++++++++++++++++++++++----------------------------------
1 file changed, 764 insertions(+), 960 deletions(-)
commit d289e3da20a046283e7ead405bc93e00405b9251
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Fri Mar 1 15:19:14 2013 +0100
Fix comment toggling in PHP and HTML with bottom-up selection
If current position is not at selection start (e.g. bottom-up
selection), editor_get_filetype_at_current_pos() will start returning
improper result as soon as the first buffer change since the style at
the actual current position will have been invalidated and not yet
recomputed.
src/editor.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
commit d34ca178683c65df9f8bd4959c052966ef482b0b
Author: Lex <elextr@gmail.com>
Date: Fri Mar 1 12:52:20 2013 +1100
Correct description of build_activate_menu_item()
Correct the documentation comment for build_activate_menu_item() for
plugin documentation.
src/build.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 58bffcbcceb4627b615e09f81cb3f1ebe9975352
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Mon Feb 25 21:07:28 2013 +0100
Update of Spanish translation
NEWS | 2 +-
po/es.po | 2681 +++++++++++++++++++++++++++++++-------------------------------
2 files changed, 1335 insertions(+), 1348 deletions(-)
commit 181e91ed8891b7461710de5db40252cf1e417a00
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Mon Feb 25 21:01:47 2013 +0100
Update of Lithuanian translation
po/lt.po | 94 ++++++++++++++++++++------------------------------------------
1 file changed, 30 insertions(+), 64 deletions(-)
commit 8228c3f3df96d235f8e3dec486ad570c47898e27
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sun Feb 24 15:33:45 2013 +0100
Update of French translation
po/fr.po | 1721 +++++++++++++++++++++++++++-----------------------------------
1 file changed, 743 insertions(+), 978 deletions(-)
commit 5997f6a6931bdbabf921a1e351fc3d72e516787f
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sun Feb 24 14:54:48 2013 +0100
Update of Japanese translation
po/ja.po | 71 +++++++++++++++++++++++++-------------------------------------
1 file changed, 28 insertions(+), 43 deletions(-)
commit 48b370e2c4a76f57c8ccd0584557fcfa007cf71c
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sat Feb 23 14:29:32 2013 +0100
Update of po-files for string freeze of Geany 1.23
po/ar.po | 2184 +++++++++++++++++-----------------
po/ast.po | 2205 ++++++++++++++++++-----------------
po/be.po | 2204 ++++++++++++++++++-----------------
po/bg.po | 2202 ++++++++++++++++++-----------------
po/ca.po | 2205 ++++++++++++++++++-----------------
po/cs.po | 2210 ++++++++++++++++++-----------------
po/de.po | 2333 ++++++++++++++++++++-----------------
po/el.po | 2202 ++++++++++++++++++-----------------
po/en_GB.po | 2205 ++++++++++++++++++-----------------
po/es.po | 2166 ++++++++++++++++++----------------
po/et.po | 2111 ++++++++++++++++-----------------
po/eu.po | 1849 +++++++++++++++--------------
po/fa.po | 2205 ++++++++++++++++++-----------------
po/fi.po | 3529 ++++++++++++++++++++++++++++---------------------------
po/fr.po | 3503 ++++++++++++++++++++++++++++++-------------------------
po/gl.po | 2205 ++++++++++++++++++-----------------
po/he.po | 3020 +++++++++++++++++++++++------------------------
po/hi.po | 968 +++++++--------
po/hu.po | 3458 +++++++++++++++++++++++++++++-------------------------
po/id.po | 2205 ++++++++++++++++++-----------------
po/it.po | 1864 +++++++++++++++--------------
po/ja.po | 2170 +++++++++++++++++-----------------
po/kk.po | 2167 +++++++++++++++++-----------------
po/ko.po | 2194 +++++++++++++++++-----------------
po/lb.po | 2200 ++++++++++++++++++-----------------
po/lt.po | 2166 ++++++++++++++++++----------------
po/mn.po | 2184 +++++++++++++++++-----------------
po/nl.po | 1462 ++++++++++++-----------
po/nn.po | 2174 +++++++++++++++++-----------------
po/pl.po | 2165 ++++++++++++++++++----------------
po/pt.po | 2166 ++++++++++++++++++----------------
po/pt_BR.po | 2166 ++++++++++++++++++----------------
po/ro.po | 2202 ++++++++++++++++++-----------------
po/ru.po | 2132 +++++++++++++++++----------------
po/sk.po | 2164 +++++++++++++++++-----------------
po/sl.po | 2209 ++++++++++++++++++-----------------
po/sr.po | 998 ++++++++--------
po/sv.po | 2161 ++++++++++++++++++----------------
po/tr.po | 2167 ++++++++++++++++++----------------
po/uk.po | 2202 ++++++++++++++++++-----------------
po/vi.po | 2206 ++++++++++++++++++-----------------
po/zh_CN.po | 3750 ++++++++++++++++++++++++++++++-----------------------------
po/zh_TW.po | 2197 +++++++++++++++++-----------------
43 files changed, 50443 insertions(+), 46192 deletions(-)
commit 2b5944d4c21799acbcb7641375f8866c80f149e8
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sat Feb 23 14:23:49 2013 +0100
Update of Hindi translation
po/hi.po |10999 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 5475 insertions(+), 5524 deletions(-)
commit d49b8fbbc0322191b24d70541f06143db6e13634
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Fri Feb 22 14:57:15 2013 +0100
Update NEWS for new items
NEWS | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
commit 99fbe0bd8ca3882fc4c2c96b4e241301def74ca1
Author: Dimitar Zhekov <dimitar.zhekov@gmail.com>
Date: Thu Feb 21 19:27:06 2013 +0200
Fix plugin_add_toolbar_item insertion order
src/pluginutils.c | 9 ++++-----
src/ui_utils.c | 30 +++++++++++++++++++-----------
src/ui_utils.h | 3 ++-
3 files changed, 25 insertions(+), 17 deletions(-)
commit 9d88bd24634f155c111e25476456530ecd244fda
Author: Max Musatov <m1kc@yandex.ru>
Date: Fri Feb 22 05:12:37 2013 +0400
Update the main.d template to use a more standard prototype for main()
data/templates/files/main.d | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5acb92a3cb429e76b26a034ba55bc7fa81481431
Author: Lex <elextr@gmail.com>
Date: Thu Feb 21 17:07:42 2013 +1100
More verbose update to manual for Terminal setting
Provide a more complete description of the use of the changed
Terminal setting in several places.
doc/geany.txt | 51 ++++++++++++++++++++++++++++++++-------------------
1 file changed, 32 insertions(+), 19 deletions(-)
commit d577c57e7841f5fef780e114e3fba68ea6808830
Author: Lex <elextr@gmail.com>
Date: Thu Feb 21 15:02:13 2013 +1100
Add missing slash in default command
src/keyfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 7d6ad6d50fb8b6801448144b1195302f1a3a26d2
Merge: 5df79bc dba93f3
Author: Lex <elextr@gmail.com>
Date: Thu Feb 21 13:05:54 2013 +1100
Merge branch 'master' of https://github.com/geany/geany
commit 5df79bc13515d4da647be4185c0c7a47dcb4f82a
Author: Lex <elextr@gmail.com>
Date: Thu Feb 21 12:42:30 2013 +1100
Adjust Terminal tooltip in preferences
Adjust to say it is a full command and that %c is substituted by
the geany_run_script path.
data/geany.glade | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit dba93f3854c9efaaf7e07d09b4d80dd33f09f954
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Thu Feb 21 01:16:04 2013 +0100
Allow Quit keybinding to be configured
This removes the last unmodifiable keybinding relying on GTK's
defaults, and allows somebody to change this keybinding.
data/geany.glade | 1 -
doc/geany.txt | 2 ++
src/keybindings.c | 5 +++++
src/keybindings.h | 1 +
4 files changed, 8 insertions(+), 1 deletion(-)
commit a0dc8af9c4238fe435c7f45ef4c39c358b6803d2
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Thu Feb 21 00:57:06 2013 +0100
Fix GTK default keybindings being still active after being unbound
If we provide an AccelGroup when creating a menu item using a sock ID,
it installs the GTK default accelerator, accelerator we can't remove
since we don't know about it. So, don't give an AccelGroup so GTK
don't install it's own accelerator.
This fix also required to properly update the accelerator on some item
we used to ignore since the update didn't work anyway (since the GTK
accelerator was displayed instead).
Note that this doesn't fix the fact the editor popup menu accelerators
are never updated after startup so they don't get updated before
restart after changing a keybinding in the preferences. This is a
separate (and less problematic) issue due to a simple lack of update.
Closes #1912683 and #3599251.
data/geany.glade | 27 ---------------------------
doc/geany.txt | 8 --------
src/keybindings.c | 18 ++++++++++++------
3 files changed, 12 insertions(+), 41 deletions(-)
commit 3c2dc547cdc9343573765ec0502effc00a61f39b
Author: Lex <elextr@gmail.com>
Date: Thu Jan 24 18:25:44 2013 +1100
Make the tools->terminal setting more flexible.
Previously was hard coded with options to suit xterm. As this is
being replaced with different terminal programs some do not accept
the same options. The new setting stores the whole command with
%c to substitute the script name. Upgrades old settings if a new
one does not exist.
doc/geany.txt | 3 ++-
src/build.c | 44 +++++++++++++++-----------------------------
src/keyfile.c | 29 +++++++++++++++++++++++++----
3 files changed, 42 insertions(+), 34 deletions(-)
commit eab86bc6adf76764046a2d3959953309ba3cd658
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Thu Feb 14 00:50:59 2013 +0100
win32: Fix crash with -v if stream redirection setup fails
Properly check for errors when setting up debug console stream
redirections so if it fails it doesn't crash everything.
src/win32.c | 71 +++++++++++++++++++++++++++++++++++++++++++++--------------
1 file changed, 54 insertions(+), 17 deletions(-)
commit 1646504a46e4b5af354406fd1f819da0dd6754fa
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Tue Feb 12 23:48:10 2013 +0100
Fix build with bleeding edge GLib
CTags defines __unused__ and __printf__, which not only are reserved
identifiers, but actually are used by GNUC as arguments of the
__attribute__() extension. This used to work because no code seeing
those definitions was trying to use them as __attribute__() argument,
but a recent change in GLib made it use it in atomic operation, which
are used by the tagmanager, which itself includes the CTags header
defining those, leading to a weird build failure -- since __unused__
expanded to an unexpected value.
To fix this, rename CTag's __ununsed__ to UNUSED and __printf__ to
PRINTF.
tagmanager/ctags/c.c | 4 ++--
tagmanager/ctags/ctags.c | 4 ++--
tagmanager/ctags/general.h | 8 ++++----
tagmanager/ctags/lregex.c | 30 +++++++++++++++---------------
tagmanager/ctags/lua.c | 2 +-
tagmanager/ctags/main.h | 2 +-
tagmanager/ctags/options.h | 2 +-
tagmanager/ctags/parse.c | 2 +-
tagmanager/ctags/parse.h | 2 +-
tagmanager/src/tm_file_entry.c | 2 +-
tagmanager/src/tm_project.c | 2 +-
tagmanager/src/tm_source_file.c | 2 +-
tagmanager/src/tm_workspace.c | 2 +-
13 files changed, 32 insertions(+), 32 deletions(-)
commit 76a6e945ec6d64e7eeae0ae81263850da670462a
Merge: 36581d6 2203d8f
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Tue Feb 12 15:01:00 2013 +0100
Merge branch 'touste/abaqus-support'
commit 2203d8f085801492f7863c2c5c468e968df789bc
Author: Baptiste Pierrat <baptiste.pierrat@gmail.com>
Date: Sun Jan 6 13:50:49 2013 +0100
Abaqus: remove styles not actually used by the lexer
data/filetypes.abaqus | 11 +++--------
src/highlightingmappings.h | 11 +++--------
2 files changed, 6 insertions(+), 16 deletions(-)
commit d4e61bf0933038b3de8f7a16425e82bb51c44285
Author: Baptiste Pierrat <baptiste.pierrat@gmail.com>
Date: Mon Dec 3 15:17:43 2012 +0100
Add support for Abaqus files
Support for Abaqus (.inp) files, including scintilla lexer and tag
parser.
Signed-off-by: Baptiste Pierrat <baptiste.pierrat@gmail.com>
data/filetype_extensions.conf | 1 +
data/filetypes.abaqus | 67 ++++
scintilla/Makefile.am | 1 +
scintilla/lexers/LexAbaqus.cxx | 620 +++++++++++++++++++++++++++++++++++++
scintilla/makefile.win32 | 1 +
scintilla/scintilla_changes.patch | 2 +-
scintilla/src/Catalogue.cxx | 1 +
src/filetypes.c | 6 +
src/filetypes.h | 1 +
src/highlighting.c | 9 +
src/highlightingmappings.h | 30 ++
src/symbols.c | 9 +
tagmanager/ctags/Makefile.am | 1 +
tagmanager/ctags/abaqus.c | 126 ++++++++
tagmanager/ctags/makefile.win32 | 2 +-
tagmanager/ctags/parsers.h | 4 +-
wscript | 1 +
17 files changed, 879 insertions(+), 3 deletions(-)
commit 36581d6638236768e3ba00b1da2c15e795bc95f3
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Mon Feb 11 03:31:05 2013 +0100
Move document status color definition to the gtkrc file
This allows for users to change the colors if needed (may be useful
with some themes or color blind persons).
On the sidebar, only the color is applied for now. This is because
it is not possible to style cell renderers through RC files, all having
to be done in the code; so currently only the color is applied.
data/geany.gtkrc | 17 +++++++++++
src/document.c | 84 ++++++++++++++++++++++++++++++++++++++++++++----------
src/document.h | 2 ++
src/ui_utils.c | 11 ++-----
4 files changed, 90 insertions(+), 24 deletions(-)
commit 23ef01ede828ffd565ff1acf6a025fb193deb591
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Mon Feb 11 03:20:49 2013 +0100
Allow user gtkrc to override our gtkrc styles
This allows the user to override the custom styles we apply to some
widgets, like e.g. the unmatched search entry colors.
We use the :theme priority rather than the :application one because
it seems that the :application one cannot override theme settings, even
if it matches against a name the theme don't have rules for but have
rules for the class of that widget. This prevents a theme from
overriding our styles, but it's unlikely a theme actually provide some
specific stuff for us anyway.
data/geany.gtkrc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit dbd6d12160f6d2c4baffca33cf226b4aef6be782
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Mon Feb 11 03:17:12 2013 +0100
Fix not using monospace font for unmatched search entries
This bug was introduced by RC file switch.
data/geany.gtkrc | 1 +
1 file changed, 1 insertion(+)
commit 923c8582e35776f1a4c2414880d79dae1dbe2968
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Wed Feb 6 19:34:21 2013 +0100
Extend i18n-section of NEWS a bit
NEWS | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit fb7196cf3fce687b089e6cf19c4320abda7d2ccf
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Wed Feb 6 19:30:19 2013 +0100
Update of German translation
po/de.po | 2362 ++++++++++++++++++++++++++++++++------------------------------
1 file changed, 1210 insertions(+), 1152 deletions(-)
commit eab804bae48ee89c4ba6d6b82c35544525c07c54
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Wed Feb 6 19:19:31 2013 +0100
Update of Swedish translation
po/sv.po | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
commit 41456c18092a0fa0ff672dfcda2edb4a01ce7e87
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Feb 5 21:27:05 2013 +0100
Replace ru_RU with simple ru inside credantials as we only have one Russiian translation
THANKS | 12 ++++++------
src/about.c | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
commit f087542ef8ffbc5a7860d32e95818d25f4f4a914
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Feb 5 21:25:48 2013 +0100
Added first version of Serbian translation
THANKS | 1 +
po/sr.po | 5466 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/about.c | 1 +
3 files changed, 5468 insertions(+)
commit 92f2bb89707775a85efe852a161f0c1697460d41
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Feb 5 00:41:53 2013 +0100
Update of Finnish translation
po/fi.po | 4273 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 2128 insertions(+), 2145 deletions(-)
commit 159d712bd6a60d10d5ec2d2d858429a5ebe7222d
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Tue Feb 5 00:40:31 2013 +0100
Adding first version of Hindi translation
THANKS | 1 +
po/hi.po | 5528 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/about.c | 1 +
3 files changed, 5530 insertions(+)
commit 82f259f6b54a778953fc6715a40e78705977a08c
Author: Enrico Tröger <enrico.troeger@uvena.de>
Date: Sun Feb 3 12:35:05 2013 +0100
Print filename of failed plugin
scripts/plugin_test.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
commit cfed3c3f23258a2947a44e295d777c9a2e660891
Author: Felix Totir <felix.totir@gmail.com>
Date: Thu Jan 31 17:42:04 2013 +0100
Add missing D keywords
Closes #3595187.
data/filetypes.d | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b02e7e4d04257d43f9cc79d54395f245e238ef49
Author: Felix Totir <felix.totir@gmail.com>
Date: Thu Jan 31 16:29:04 2013 +0100
Ignore more build files
.gitignore | 2 ++
1 file changed, 2 insertions(+)
commit 911e5dca1761a0aad090e981a60ed5c937d01c46
Author: Stephen Coleman <omegacoleman@gmail.com>
Date: Thu Jan 31 18:33:37 2013 +0800
Detect SCons configuration files as Python
SCons configuration files are plain Python, just without the .py
extension.
data/filetype_extensions.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5fa4aa5d64695f919e3028ff75b4a1e55e119fd1
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Thu Jan 31 18:07:14 2013 +0100
Early NEWS update
NEWS | 101 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 100 insertions(+), 1 deletion(-)
commit 258ea70ad7941e8f9a443d5bae4941c803df8ee6
Merge: b7b4e4d a661a0e
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Sat Jan 26 05:01:31 2013 -0800
Merge pull request #95 from YosefOr/patch-7
Update Hebrew translator
commit b7b4e4d6c95d88ffea008621faf4cd438eb489b9
Author: Frank Lanitz <frank@frank.uvena.de>
Date: Fri Jan 25 18:48:30 2013 +0100
Update of Hebrew translation
po/he.po | 174 ++++++++++++++++++++++++++++++++++----------------------------
1 file changed, 95 insertions(+), 79 deletions(-)
commit a661a0e3ea3f4bb82343eb0d6e2252492053d6d7
Author: YosefOr <yosefor3@walla.com>
Date: Wed Jan 23 23:50:56 2013 +0200
Update po/he.po
Update Hebrew translator
po/he.po | 174 ++++++++++++++++++++++++++++++++++----------------------------
1 file changed, 95 insertions(+), 79 deletions(-)
commit bd7b56a80f2c5c250b3f3d8d94f05a7d3513e73d
Author: Lex <elextr@gmail.com>
Date: Thu Jan 17 15:50:40 2013 +1100
Comment future fixes/additions
Note where Asciidoc features need to be supported that would
prevent code sharing with other markup parsers.
tagmanager/ctags/asciidoc.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit dcac3e164c804729f49750510c3491205e2ff19d
Author: Lex <elextr@gmail.com>
Date: Thu Nov 1 13:44:11 2012 +1100
Fix indent setting
Asciidoc requires single line comments to be at the start of the line
so do not want indent.
data/filetypes.asciidoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 280e9eeb1c515bd05603d2d501636abb330dfe13
Author: Lex <elextr@gmail.com>
Date: Thu Nov 1 13:29:59 2012 +1100
Correct Names of levels
Make the top level the Document, make lower levels translatable
although they do not normally show in Symbols pane.
src/symbols.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 8294ea2c2e948894fd211d0ea55b34f12e76d553
Author: Lex <elextr@gmail.com>
Date: Thu Nov 1 11:14:55 2012 +1100
Add Asciidoc filetype
Add a filetype for Asciidoc with symbol parser, but not styling.
data/filetype_extensions.conf | 1 +
data/filetypes.asciidoc | 35 +++++++
src/filetypes.c | 8 ++
src/filetypes.h | 1 +
src/symbols.c | 11 +++
tagmanager/ctags/Makefile.am | 1 +
tagmanager/ctags/asciidoc.c | 205 +++++++++++++++++++++++++++++++++++++++
tagmanager/ctags/makefile.win32 | 2 +-
tagmanager/ctags/parsers.h | 4 +-
wscript | 1 +
10 files changed, 267 insertions(+), 2 deletions(-)
commit 76aec0852af3450aabb296dff17f878571d25a49
Author: Lex <elextr@gmail.com>
Date: Thu Jan 17 15:27:39 2013 +1100
Revert incomplete Asciidoc filetype commit.
This reverts commit da78a44a1cfeb753e0d06d7175e882f508ad9788.
data/filetypes.asciidoc | 35 --------
tagmanager/ctags/asciidoc.c | 208 -------------------------------------------
2 files changed, 243 deletions(-)
commit 320f10c85b8381dc5e8dc1daec2fbceb050a9a83
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Tue Jan 15 22:28:00 2013 +0100
Don't install themes index on non-Windows
On non-Windows, the icons are installed on the system's icon directory,
so installing our index.theme might override the system's one. Since
it's highly unlikely the theme index is missing on non-Windows, just
don't install it.
icons/Makefile.am | 5 ++++-
icons/tango/Makefile.am | 4 +++-
wscript | 14 ++++++++++----
3 files changed, 17 insertions(+), 6 deletions(-)
commit b80c8cd2a98b2623a85f36d5b28f55abf2e82a92
Author: Colomban Wendling <ban@herbesfolles.org>
Date: Mon Jan 14 19:20:01 2013 +0100
Fix custom icons on Windows
Install all icons on Windows, as well as a theme index because the
system doesn't have one and one is required.
Also install the theme index on non-Windows, although it shouldn't
be necessary because the system is likely to provide one.
icons/Makefile.am | 5 +++-
icons/index.theme | 60 +++++++++++++++++++++++++++++++++++++++++++++++
icons/tango/Makefile.am | 4 ++++
icons/tango/index.theme | 33 ++++++++++++++++++++++++++
wscript | 7 +++---
5 files changed, 104 insertions(+), 5 deletions(-)
commit e506a370e9c3b4661f0832afa1c0fb2c90d61d76
Author: Duncan de Wet <duncandewet@gmail.com>
Date: Mon Jan 14 09:26:51 2013 +1300
Added HTML5 self-closing tags
http://www.w3.org/TR/html-markup/syntax.html#syntax-elements