-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog-20051212
1754 lines (1006 loc) · 40.8 KB
/
ChangeLog-20051212
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
==== gedit 2.12.1 ====
2005-10-03 Paolo Borelli <[email protected]>
* NEWS:
* README:
* configure.in 2.12.1 released.
2005-09-11 Paolo Borelli <[email protected]>
* configure.in: readd ku.
2005-09-11 Paolo Borelli <[email protected]>
* configure.in: temporarely remove the ku translation since
Erdal forgot to cvs add it.
==== gedit 2.12.0 ====
2005-09-10 Erdal Ronahi <[email protected]>
* po/ku.po: Added Kurdish translation
2005-09-05 Paolo Borelli <[email protected]>
* NEWS:
* README:
* configure.in 2.12.0 released.
==== gedit 2.11.93 ====
2005-08-29 Paolo Borelli <[email protected]>
* NEWS:
* README:
* configure.in 2.11.93 released.
==== gedit 2.11.92 ====
2005-08-23 Paolo Borelli <[email protected]>
* NEWS:
* README:
* configure.in 2.11.92 released.
==== gedit 2.11.91 ====
2005-08-08 Paolo Borelli <[email protected]>
* NEWS:
* README:
* configure.in 2.11.91 released.
2005-08-05 Paolo Maggi <[email protected]>
Fixed bug #101281: [ui-review] Undo preference dialog
* data/gedit.schemas.in: deprecated key
/schemas/apps/gedit-2/preferences/editor/undo/undo_actions_limits and
added new key .../undo/max_undo_actions
2005-08-04 Paolo Maggi <[email protected]>
Fixed bug #168965: Grammatical error in message
* data/gedit.schemas.in: fixed message.
Patch by Guillaume Desmottes <[email protected]>
==== gedit 2.10.4 ====
2005-08-04 Paolo Maggi <[email protected]>
* NEWS:
* README:
* configure.in: 2.10.4 released
==== gedit 2.10.3 ====
2005-06-08 Paolo Borelli <[email protected]>
* README:
* configure.in 2.10.3 released.
2005-04-08 Sunil Mohan Adapa <[email protected]>
* configure.in: Added "te" to ALL_LINGUAS.
==== gedit 2.10.2 ====
2005-04-04 Paolo Borelli <[email protected]>
* README:
* configure.in 2.10.2 released.
2005-03-31 Steve Murphy <[email protected]>
* configure.in: Added "rw" to ALL_LINGUAS.
==== gedit 2.10.1 ====
2005-03-25 Paolo Borelli <[email protected]>
* README:
* configure.in 2.10.1 released.
2005-03-22 Adi Attar <[email protected]>
* configure.in: Added 'xh' to ALL_LINGUAS.
==== gedit 2.10.0 ====
2005-03-08 Paolo Borelli <[email protected]>
* README:
* configure.in: 2.10.0 released.
==== gedit 2.9.7 ====
2005-03-01 Paolo Maggi <[email protected]>
* README:
* NEWS: 2.9.7 released.
2005-02-20 Paolo Maggi <[email protected]>
* data/gedit.1: updated
2005-02-13 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: fixed bug #167060 (gedit schema messages
need translator comments)
==== gedit 2.9.6 ====
2005-02-07 Paolo Borelli <[email protected]>
* README:
* NEWS: 2.9.6 released.
2005-02-04 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: added savecopy to the list of default
plugins.
==== gedit 2.9.5 ====
==== gedit 2.9.4 ====
2005-01-11 Paolo Maggi <[email protected]>
* configure.in: version 2.9.4
* README: updated
2005-01-10 Paolo Maggi <[email protected]>
Based on a patch by Juerg Billeter <[email protected]>
* data/gedit.schemas.in: added editor/bracket_matching/bracket_matching
2005-01-10 Paolo Maggi <[email protected]>
* configure.in: set GEDIT_MAJOR to 2.10
2005-01-08 Paolo Maggi <[email protected]>
* configure.in: requires GtkSourceView >= 1.1.90
* data/gedit.schemas.in: added editor/current_line/highlight_current_line
key
2004-12-07 Paolo Maggi <[email protected]>
* configure.in: show message-of-doom, remove redundant check for
ngettext, since AM_GLIB_GNU_GETTEXT already checks for it (in both
libc and libintl).
2004-12-05 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: fixed bug #147664 (Please add translator
comments to gedit schema messages).
2004-11-29 Paolo Borelli <[email protected]>
* README:
* NEWS: 2.9.2 released.
2004-11-29 Paolo Borelli <[email protected]>
* data/gedit.desktop.in.in: use @VERSION@ for bug-buddy reports
* configure.in: modify for the above change and update for 2.9.2
2004-11-11 Paolo Borelli <[email protected]>
* configure.in: bump glib and gtk+ requirements.
2004-11-09 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: added new keys
/schemas/apps/gedit-2/preferences/print/fonts/print_font_body_pango,
/schemas/apps/gedit-2/preferences/print/fonts/print_font_header_pango and
/schemas/apps/gedit-2/preferences/print/fonts/print_font_numbers_pango. Patch
by Owen Taylor <[email protected]>
2004-11-01 Paolo Maggi <[email protected]>
* configure.in: removed version number from GETTEXT_PACKAGE (fixes
bug #149988: Is gedit potfile versioning needed?)
2004-11-01 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.9.1
2004-10-31 Paolo Maggi <[email protected]>
* configure.in: set version to 2.9.0
* data/gedit.schemas.in: added
/schemas/apps/gedit-2/plugins/active-plugins key
2004-10-15 Marco Pesenti Gritti <[email protected]>
reviewed by: Paolo Borelli <[email protected]>
* gedit/dialogs/gedit-encodings-dialog.c: (update_list),
(gedit_encodings_dialog_run):
Fix trivial compile issue
2004-10-13 Paolo Borelli <[email protected]>
* Makefile.am:
* configure.in:
* viewer/*.c: removed the nautilus view.
2004-10-11 Paolo Borelli <[email protected]>
* Makefile.am: fix distcheck with latest gnome-common.
2004-10-10 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.8.1
2004-09-14 Gora Mohanty <[email protected]>
* configure.in: Added 'or' to ALL_LINGUAS.
2004-09-13 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.8.0
2004-08-30 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.7.92
2004-08-30 Paolo Borelli <[email protected]>
* HACKING: put patches in bugzilla
* AUTHORS: update email adresses
* MAINTAINERS: ditto
* Makefile.am: distribute MAINTAINERS
2004-08-29 Akagic Amila <[email protected]>
* configure.in: Added 'bs' to ALL_LINGUAS.
2004-08-24 Breda McColgan <[email protected]>
* help/C/gedit.xml: Updated for GNOME 2.8, technical review draft
* help/C/gedit-C.omf: Updated for GNOME 2.8
* help/C/l10n.txt: Updated for GNOME 2.8
2004-08-16 Kjartan Maraas <[email protected]>
* configure.in: Added nb to ALL_LINGUAS.
2004-08-16 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.7.91
2004-08-05 Paolo Borelli <[email protected]>
* configure.in: bump required intltool to 0.31 as
suggested by Owen Taylor in bug #149219
2004-08-01 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.7.90
2004-07-21 Ray Strode <[email protected]>
* gedit/data/gedit.desktop.in: Add MimeType line to desktop file
new mime sytem.
2004-07-19 Paolo Maggi <[email protected]>
* .cvsignore: added omf.make and xmldocs.make
2004-07-19 Paolo Maggi <[email protected]>
* help/eu/.cvsignore: added
2004-07-16 Paolo Borelli <[email protected]>
* data/gedit.1: document --encoding.
2004-07-13 Paolo Borelli <[email protected]>
* data/gedit.1: small updates to man page.
2004-07-05 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.7.1
2004-06-25 Paolo Borelli <[email protected]>
* merge gnome-2-6 branch fixes into HEAD.
2004-06-25 Paolo Borelli <[email protected]>
* configure.in:
* README:
* NEWS: release 2.6.2
2004-05-29 Christian Rose <[email protected]>
* configure.in: Added "tk" to ALL_LINGUAS.
2004-05-26 Mohammad DAMT <[email protected]>
* po/id.po: Added Indonesian translation done by Ahmad Riza H Nst <[email protected]>
* configure.in: Added id to ALL_LINGUAS
2004-05-05 Frederic Crozat <[email protected]>
* gedit/recent-files/egg-recent-item.c: (egg_recent_item_new),
(egg_recent_item_set_private), (egg_recent_item_get_private):
* gedit/recent-files/egg-recent-item.h:
* gedit/recent-files/egg-recent-util.c: (egg_recent_util_get_icon):
* gedit/recent-files/egg-recent-view.h:
Resync recent-files with latest libegg version, so it doesn't
complain when icon theme is not set.
2002-05-08 Pablo Saratxaga <[email protected]>
* help/eu: Added Basque help files
2004-04-09 Guntupalli Karunakar <[email protected]>
* configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
2004-04-05 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: fixed bug #138508 (default values
in gedit.schemas are not gettexized). Thanks to Takao Fujiwara
<[email protected]> and Mark McLoughlin <[email protected]>
2004-04-05 Paolo Maggi <[email protected]>
* data/gedit.keys.in: bug #106911 fixed. The file contains
the right keys now.
2004-04-05 Paolo Borelli <[email protected]>
* configure.in: add changecase plugin to the build.
2004-04-03 Samúel Jón Gunnarsson <[email protected]>
is.po: Added "is" to ALL_LINGUAS
2004-03-31 Christian Rose <[email protected]>
* configure.in: Added "af" to ALL_LINGUAS.
2004-03-22 Paolo Borelli <[email protected]>
* configure.in:
* README: bump version to 2.6.0
* NEWS: updated
2004-03-19 Gareth Owen <[email protected]>
* configure.in: Added en_GB to ALL_LINGUAS
2004-03-18 Guntupalli Karunakar <[email protected]>
* configure.in: Added "mr" for Marathi to ALL_LINGUAS.
2004-03-17 Glynn Foster <[email protected]>
* help/*: Add back localized documentation from Sun's translation
team for de, es, fr, it, ja, ko, sv, zh_CN, zh_HK and zh_TW.
2004-03-16 Paolo Borelli <[email protected]>
* configure.in:
* README: bump version to 2.5.92
* NEWS: updated
2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.in: use ACLOCAL_AMFLAGS to make maintainer builds work
2004-03-08 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.5.91
* NEWS: updated
2004-03-04 Guntupalli Karunakar <[email protected]>
* configure.in: Added "pa" for Punjabi in ALL_LINGUAS.
2004-03-04 Glynn Foster <[email protected]>
* pixmaps/Makefile.am: Don't list pixmaps in SOURCES. Fixes #135824.
2004-03-01 Breda McColgan <[email protected]>
* help/C/gedit.xml: Updated for GNOME 2.6, technical review draft
* help/C/gedit-C.omf: Updated for GNOME 2.6
* help/C/l10n.txt: Updated for GNOME 2.6
* help/C/figures/gedit_window.png: Updated for GNOME 2.6
* help/C/figures/gedit_format_bold.png: Added for GNOME 2.6
* help/C/figures/gedit_format_italic.png: Added for GNOME 2.6
* help/C/figures/gedit_format_strikethrough.png: Added for GNOME 2.6
* help/C/figures/gedit_format_underline.png: Added for GNOME 2.6
2004-02-25 Paolo Maggi <[email protected]>
* AUTHORS: added Paolo Borelli
2004-02-24 Paolo Maggi <[email protected]>
[ gedit 2.5.90 released ]
2004-02-24 Paolo Maggi <[email protected]>
* configure.in: requires gtksourceview 0.9, sets version
to 2.5.90
* README: bump version to 2.5.90
* NEWS: updated
2004-02-23 Padraig O'Briain <[email protected]>
* gedit/dialogs/gedit-close-confirmation-dialog.c
(gedit_close_confirmation_dialog_init): Set role to ATK_ROLE_ALERT.
Fixes bug #135000.
2004-02-21 Christian Rose <[email protected]>
* configure.in: Added "en_CA" to ALL_LINGUAS.
2004-02-15 Tomasz Kłoczko <[email protected]>
* configure.in: Trivial cleanup: remove AC_SUBST(CFLAGS),
AC_SUBST(CPPFLAGS) and AC_SUBST(LDFLAGS). This variables are
substed by default.
2004-02-12 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: removed unused key
schemas/apps/gedit-2/preferences/editor/save/save_encoding
2004-02-09 Alexander Winston <[email protected]>
* acinclude.m4: Quoted definitions of macros
AM_PATH_PROG_WITH_TEST, AM_LC_MESSAGES, AM_WITH_NLS, and
AM_GNU_GETTEXT. Fixes #133178.
2004-02-06 Mark McLoughlin <[email protected]>
* configure.in: add a --enable-deprecations flag
to switch on the DISABLE_DEPRECATED cflags. Also
re-use the gnome-common --enable-compile-warnings
impl. which doesn't touch CFLAGS.
2004-01-27 Christian Rose <[email protected]>
* configure.in: Added "mi" to ALL_LINGUAS.
2004-01-15 Paolo Maggi <[email protected]>
[ gedit 2.5.3 released ]
2004-01-15 Paolo Maggi <[email protected]>
* configure.in: requires intltool 0.29, sets version
to 2.5.3
* README: bump version to 2.5.3
* NEWS: updated
* Makefile.am: Removed OrigTree.pm to EXTRA_DIST
2004-01-06 Paolo Maggi <[email protected]>
* TODO: Updated
2004-01-03 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.5.2
* README: bump version to 2.5.2
2004-01-03 Robert Sedak <[email protected]>
* configure.in: Added "hr" in ALL_LINGUAS.
2003-12-29 Paolo Maggi <[email protected]>
* Makefile.am: Added OrigTree.pm to EXTRA_DIST.
* configure.in: requires intltool 0.28
2003-12-29 Paolo Maggi <[email protected]>
* data/gedit.1: removed an unknown macro in man page
(fixed bug #127693).
* configure.in: check for the ngettext function
2003-11-24 Paolo Maggi <[email protected]>
[ gedit 2.5.0 released ]
2003-10-21 Paolo Maggi <[email protected]>
* data/Makefile.am: don't distribute generated files (fixes
bug #103846)
2003-10-20 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.5.0, set
GEDIT_MAJOR to 2.6 and GETTEXT_PACKAGE to gedit-2.6,
updated requirements
2003-09-18 Paolo Maggi <[email protected]>
* TODO: Updated
* configure.in: show message-of-doom
* message-of-doom: updated
* data/gedit.schemas.in: added the following keys:
display_right_margin, right_margin_position and
syntax_highlighting/enable
2003-09-09 Paolo Maggi <[email protected]>
[ gedit 2.4.0 released ]
2003-09-09 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.4.0
* README: bump version to 2.4.0, updated requirements
2003-09-06 Laurent Dhima <[email protected]>
* configure.in: Added "sq" to ALL_LINGUAS.
2003-09-05 Irene Ryan <[email protected]>
* help/C/gedit.xml: updated the Help to reflect gedit 2.2.2 for GNOME
2.4 release
* help/C/gedit-C.omf: updated the manual version/release information
* help/C/l10n.txt: updated instructions for L10N teams
2003-09-05 Taneem Ahmed <[email protected]>
* configure.in: Added "bn" to ALL_LINGUAS.
2003-08-27 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.3.5, requires libgnomeprintui 2.3.1
instead of the still to be released 2.3.2
* NEWS: Updated
2003-08-26 Paolo Maggi <[email protected]>
* NEWS: Updated
2003-08-26 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.3.4, updated dependences
2003-08-11 Christian Rose <[email protected]>
* configure.in: Added "ne" to ALL_LINGUAS.
2003-07-04 John Fleck <[email protected]>
* autogen.sh
remove
* xmldocs.make, omf.make
Updated to new docs build system. Latest gnome-common required.
(omf.make and xmldocs.make are now pulled in from gnome-common)
2003-07-02 Jordi Mallach <[email protected]>
* data/gedit.desktop.in: Add Encoding entry and fix Terminal.
2002-06-30 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.3.3
* NEWS: Updated
2003-06-15 Frederic Crozat <[email protected]>
* configure.in: don't use -Wsign-promo for C.
2002-06-12 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: added
preferences/print/page/print_syntax_highlighting key
* configure.in: updated dependences, set GETTEXT_PACKAGE to gedit-2.4
2002-06-06 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: removed preferences/editor/load/encodings key,
added preferences/encodings/auto_detected and preferences/encodings/shown_in_menu
keys
2003-06-04 Frederic Crozat <[email protected]>
* data/GNOME_Gedit.server.in:
* data/GNOME_Gedit.server.in.in:
* data/Makefile.am:
* viewer/Makefile.am:
Move bonobo factory component in $(libdir)/bonobo and don't use a
versionned module.
2002-06-03 Paolo Maggi <[email protected]>
Re-moved indent, taglist, shell_output and sort plugin from
gedit-plugins.
* configure.in (AC_OUTPUT): update to compile the moved plugins
2002-05-21 Paolo Maggi <[email protected]>
[ gedit 2.3.2 released ]
2003-05-21 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.3.2,
requires GtkSourceView >= 0.2.1
* README: bump version to 2.3.2, updated requirements
* NEWS: updated
2002-05-12 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: removed statusbar_show_cursor_position and
statusbar_show_overwrite_mode keys
2002-05-12 Paolo Maggi <[email protected]>
* data/gedit.pc.in: fixed Requires
2002-05-08 Paolo Maggi <[email protected]>
* TODO: Updated
2002-05-07 Paolo Maggi <[email protected]>
[ gedit 2.3.1 released ]
2003-05-06 Paolo Maggi <[email protected]>
* Makefile.am: added distcleancheck_listfiles
* data/Makefile.am: added DISTCLEANFILES
2003-05-06 Paolo Maggi <[email protected]>
* Makefile.am: added distuninstallcheck_listfiles
2003-05-06 Paolo Maggi <[email protected]>
* Makefile.am: added DISTCLEANFILES
2003-05-06 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.3.1,
requires GtkSourceView >= 0.2.0
* README: bump version to 2.3.1, updated requirements
* NEWS: updated
2003-05-06 Danilo Šegan <[email protected]>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-05-05 Telsa Gwynne <[email protected]>
* configure.in: Added cy to ALL_LINGUAS
* po/cy.po: Added
2003-04-18 Jeroen Zwartepoorte <[email protected]>
* data/GNOME_Gedit.server.in: Remove the ".so" extension from the
viewer factory so it works on other platforms.
2003-04-18 Paolo Maggi <[email protected]>
* configure.in:
* Makefile.am: fixed bug #106129 - Package should use the
AM_GCONF_SOURCE_2 macro (patch by Julio Merino <[email protected]>)
2003-04-17 Paolo Maggi <[email protected]>
* configure.in: fix the aspell/pspell check. It should fix bug #105563:
gEdit (2.2.0.1) fail to compile with new Aspell/Pspell 0.50.3
2003-04-16 Paolo Maggi <[email protected]>
* autogen.sh: updated
2003-04-14 Jeroen Zwartepoorte <[email protected]>
* Makefile.am:
* configure.in:
* data/GNOME_Gedit.server.in:
Added new viewer control for nautilus with syntax highlighting thanks
to gtksourceview. Gedit now depends on gtksourceview
(toward-gedit-integration branch). This viewer will eventually replace
the standard text viewer in nautilus.
2003-04-14 Mike Lei <[email protected]>
* configure.in: Added Makefile support for de es fr it sv
ja ko zh_CN zh_TW
* help files for above languages
2003-03-26 James Willcox <[email protected]>
* NEWS: Updated
2003-03-13 Christian Rose <[email protected]>
* configure.in: Added "ml" to ALL_LINGUAS.
2003-03-07 Breda McColgan <[email protected]>
* help/C/gedit.xml: updated for GNOME 2.2.1
* help/C/l10n.txt: updated for GNOME 2.2.1
* help/C/gedit-C.omf: updated manual date and version number
* help/C/figures/gedit_window.png: updated screenshot
of the latest application
* help/C/figures/gedit_recent_files_menu_icon.png: new screenshot
2003-02-24 James Willcox <[email protected]>
* Makefile.am:
* configure.in:
* data/Makefile.am:
* data/gedit.pc.in: Moved from toplevel
* gedit/Makefile.am:
Passes distcheck now.
2003-02-22 Roozbeh Pournader <[email protected]>
* configure.in: Added "fa" to ALL_LINGUAS.
2003-02-21 James Willcox <[email protected]>
* Makefile.am:
* configure.in:
* po/POTFILES.in:
Clean up the build and enable buildling the plugins again.
2003-02-20 James Willcox <[email protected]>
* Makefile.am:
* configure.in:
* gedit-2.3.pc.in:
* gedit/Makefile.am:
* gedit/gedit-mdi-child.h:
* gedit/gedit-mdi.h:
* gedit/recent-files/Makefile.am:
* plugins/Makefile.am:
Install headers and stuff so we can build plugins externally.
2003-02-20 James Willcox <[email protected]>
* configure.in:
* gedit/dialogs/Makefile.am:
* plugins/*:
It actually builds now (sigh)
2003-02-20 James Willcox <[email protected]>
* Makefile.am:
* configure.in:
* src/: removed
Copied src/ to gedit/ to prepare for external plugins, and fixed the
build accordingly.
2003-02-09 Christian Rose <[email protected]>
* configure.in: Added "kn" to ALL_LINGUAS.
2003-01-27 James Willcox <[email protected]>
* configure.in:
* message-of-doom:
Restore message-of-doom (HEAD is for 2.4 now)
2003-01-27 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.2.0,
updated requirement, don't display message-of-doom
* README: bump version to 2.2.0
* NEW: updated
2003-01-24 Breda McColgan <[email protected]>
* help/C/gedit.xml: corrected DTD reference
2003-01-24 Breda McColgan <[email protected]>
* help/C/gedit.xml: updated for GNOME 2.2
* help/C/gedit-C.omf: updated manual date
and version number
* help/C/figures/gedit_window.png: updated screenshot
of the latest application
2003-01-21 Christian Rose <[email protected]>
* configure.in: Added "mn" to ALL_LINGUAS.
2003-01-21 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.91
* NEWS: updated
2003-01-14 Paolo Maggi <[email protected]>
* TRANSLATABLE_FILES:
* TODO:
* BUGS: Updated
2003-01-06 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.6
* NEWS: updated
2002-05-08 Pablo Saratxaga <[email protected]>
* configure.in: Added Amharic (am) and Macedonian (mk) to ALL_LINGUAS
2003-01-05 Paolo Maggi <[email protected]>
* data/gedit.1: Updated.
2003-01-04 James Willcox <[email protected]>
* data/gedit.1: Updated, fixed typos, etc.
2003-01-03 James Willcox <[email protected]>
* data/gedit.desktop.in:
Enable startup notification
2003-01-02 Paolo Maggi <[email protected]>
* configure.in: requires libgnomeprintui-2.2 >= 2.1.7
2002-12-29 John Fleck <[email protected]>
* configure.in
* Makefile.am
* xmldocs.make
* help/ro/Makefile.am
* help/C/Makefile.am
* omf.make
updating docs to newest build template as found in
gnome-docu/gdp/gdp-example2
2002-12-29 Paolo Maggi <[email protected]>
* data/gedit.schemas.in: s/Mononospace/Monospace Regular
s/Sans Normal/Sans Regular
2002-12-17 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.5
2002-12-14 Chema Celorio <[email protected]>
* configure.in: remove autoheader warnings
2002-12-09 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.4
2002-12-09 Christophe Fergeau <[email protected]>
* data/gedit.application (added)
* data/Makefile.am: register gedit properly with gnome-vfs so that
gnome-vfs knows gedit can handle all gnome-vfs uris
2002-12-09 Paolo Maggi <[email protected]>
* pixmaps/shell-output-logo.png: file removed
* pixmaps/Makefile.am (applogo_DATA): removed
shell-output-logo.png
2002-12-03 Fernando Herrera <[email protected]>
* data/gedit.desktop.in: add X-GNOME-BUGZILLA stuff
2002-11-27 Paolo Maggi <[email protected]>
* TODO: Updated
2002-11-26 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.3
2002-11-21 Paolo Maggi <[email protected]>
* configure.in (AC_OUTPUT): removed plugins/email/Makefile
2002-11-09 Dmitry G. Mastrukov <[email protected]>
* configure.in: Added Belarusian to ALL_LINGUAS
2002-11-02 Paolo Maggi <[email protected]>
* configure.in:
* README: bump version to 2.1.2.1
2002-11-01 Jody Goldberg <[email protected]>
* configure.in: require libgnomeprintui >= 2.1.1
2002-11-01 Paolo Maggi <[email protected]>
* configure.in: bump version to 2.1.2,
require libgnomeprintui >= 1.120.0
* README: bump version to 2.1.2
2002-10-27 Paolo Maggi <[email protected]>
* data/gedit.schemas.in : update long description for
the Toolbar Buttons Style key
2002-10-15 Paolo Maggi <[email protected]>