aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 3fc5bb6a1814bff209c78aa3194056eed02eee87 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
2005-03-17  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version

2005-03-15  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2005-03-15  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2005-03-15  JP Rosevear  <jpr@novell.com>
 
    * configure.in: define development as 0
    
2005-03-07  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2005-02-28  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2005-02-28  JP Rosevear  <jpr@novell.com>
  
    * configure.in: add startup wizard plugin
    
2005-02-28  JP Rosevear  <jpr@novell.com>
  
    * plugins/Makefile.am: dist standard and experimental plugins
  
    * configure.in: move "all" plugins to standard and experimental
    and default to building the standard set
        
2005-02-27  JP Rosevear  <jpr@novell.com>

    * configure.in: add mail/default/de to ac_output to fix the build

2005-02-23  Björn Torkelsson <torkel@acc.umu.se>

    * Makefile.am (DISTCLEANFILES): remove *.pc and intltool-*
    files generated by configure when running make distclean.

2005-02-23  Hans Petter Jansson  <hpj@novell.com>

    * configure.in: Make mailer depend on libedataserverui.

2005-02-22  Marco Pesenti Gritti  <marco@gnome.org>

    * configure.in: Depend on gnome-vfs >= 2.4

2005-02-22  Rodney Dawes  <dobey@novell.com>

    * data/Makefile.am (CLEANFILES): add new variable with the generated
    keys and desktop file listed so that they get removed with make clean
    (EXTRA_DIST): Don't dist the generated keys file

2005-02-01  Priit Laes <amd@store20.com>

    * configure.in : Remove duplicate entries for addressbook-groupwise,
    groupwise-status-tracking and default-source in plugins list. Fixes
    make distclean.

2005-02-01  JP Rosevear  <jpr@novell.com>

    * MAINTAINERS: Update

2005-02-01  Priit Laes <amd@store20.com>

    * configure.in : Remove duplicate entry for calendar-file in
    plugins list.

2005-01-30  Harish Krishnaswamy <kharish@novell.com>

    * configure.in : Correct the typo in plugins_base made in
    the commit below - let the HEAD to get built again.
    
2005-01-29  Sivaiah Nallagatla <snallagatla@novell.com>

    * configure.in : add addressbook-groupwise plguin to the 
    plguin list 

2005-01-26  Rodney Dawes  <dobey@novell.com>

    * configure.in: Add mail/default/pt/Makefile to AC_OUTPUT

2005-01-24  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version and requires

2005-01-21  JP Rosevear  <jpr@novell.com>

    * configure.in: e-util needs libgnomeprintui now 

2005-01-21  Sivaiah Nallagatla <snallagatla@novell.com>
                                                                               
        * configure.in : added addressbook-file plugin 

2005-01-21  Sivaiah Nallagatla <snallagatla@novell.com>

    * configure.in : added default-source plugin  

2005-01-20  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    * configure.in : added a plugin for displaying the
      groupwise status tracking options

2005-01-13  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version to 2.1.3.2

2005-01-13  Rodney Dawes  <dobey@novell.com>

    * configure.in: Add new-mail-notify to the plugins_all listing
    so that it gets disted properly

2005-01-12  JP Rosevear  <jpr@novell.com>

    * configure.in: fix plugin listing, bump upgrade revision so
    weather calendar group appears

2005-01-10  JP Rosevear  <jpr@novell.com>

    * configure.in: make itip-formatter a base plugin

2005-01-11  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version

2005-01-11  Not Zed  <NotZed@Ximian.com>

    * configure.in: added new mail plugin & checks.

2005-01-10  Sushma Rai  <rsushma@novell.com>

    * configure.in: Added Exchange account settings plugin

2005-1-10  Parthasarathi Susarla <sparthasarathi@novell.com>
        * configure.in : added send options plugin to base plugin list

2005-01-10 Vivek Jain <jvivek@novell.com>

    * configure.in : Add shared-folder to plugin 
     and base plugin list. Add corresponding Makfile to AC_OUTPUT section.

2005-01-10 Chenthill Palanisamy <pchenthill@novell.com>

    * configure.in: add send-options plugin

2005-01-09  JP Rosevear  <jpr@novell.com>

    * configure.in: add calendar-file plugin

2005-01-08 Priit Laes <amd@store20.com>
    
    * configure.in : Remove duplicate entry for itip-formatter in
    plugins list.

2005-01-08 Harish Krishnaswamy <kharish@novell.com>

    * configure.in : Add gnome-vfs-module-2.0 to Evo compile flags for
    the calendar.

2005-01-08  Hans Petter Jansson  <hpj@novell.com>

    * configure.in: Add libedataserverui to the e-util libs and cflags.

2005-01-07  Rodrigo Moya <rodrigo@novell.com>

    * configure.in: removed weatherdatadir definition here.

2005-01-07  David Trowbridge <David.Trowbridge@Colorado.edu>

    * configure.in: added calendar-weather plugin to build.

2005-01-06  JP Rosevear  <jpr@novell.com>

    * data/Makefile.am: add some uninstall rules for local data

2005-01-03  JP Rosevear  <jpr@novell.com>

    * configure.in: add itip-formatter to the "all" list, its not
    ready to be in the base yet though

2004-12-23  Hans Petter Jansson  <hpj@novell.com>

    * configure.in: Remove select-names from Makefile output list.

2004-12-17  Not Zed  <NotZed@Ximian.com>

    * devel-docs/misc/errors.txt (BUILT_SOURCES): add translation stuff.

2004-12-16  Not Zed  <NotZed@Ximian.com>

    * Makefile.am, configure.in: added evolution-plugin.pc, pkg-config
    file required for plugin development.

2004-12-20  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2004-12-14  JP Rosevear  <jpr@novell.com>

    Fixes #6066
    
    * README.translators: New information for translators

    * README: Update slightly for 2.1/2.2

2004-12-14  Rodney Dawes  <dobey@novell.com>

    * configure.in (AC_OUTPUT): Add mail/default/zh_CN/Makefile

2004-12-08  Hans Petter Jansson  <hpj@novell.com>

    * plugins/shared-folder/share-folder-common.c: Include
    <libebook/e-destination.h> from evolution-data-server.

2004-12-03  Sivaiah Nallagatla <snallagatla@novell.com>

    * configure.in : Add groupwise-account-setup to plguin 
     and base plugin list. Add corresponding Makfile to AC_OUTPUT section.
    
2004-12-01  Dafydd Harries  <daf@muse.19inch.net>

    * configure.in: Add "cy" (Welsh) to ALL_LINGUAS.

2004-11-29  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requires

2004-12-02  Not Zed  <NotZed@Ximian.com>

    * configure.in: Make evolution mail link to camel-provider not
    camel only.  Removed some camel stuff.

2004-11-16  Not Zed  <NotZed@Ximian.com>

    * Makefile.am (SUBDIRS): removed camel.

    * configure.in: Removed camel building, fixed module includes to
    use camel via packageconfig.

2004-11-15  Not Zed  <NotZed@Ximian.com>

    * configure.in: Added libeds to camel and mail and filter cflags.

2004-11-09  Rodney Dawes  <dobey@novell.com>

    * configure.in: Add AC_SUBST for plugins_base also

    * plugins/Makefile.am: Add plugins_base to DIST_SUBDIRS so that we
    dist the plug-ins we actually build by default

2004-11-04  Not Zed  <NotZed@Ximian.com>

    * configure.in: added mailing-list-actions plugin.

2004-11-04  Not Zed  <NotZed@Ximian.com>

    * configure.in: modified base vs optional logic slightly and added
    a warning if you build with --enable-plugins=no.

2004-11-04  David Trowbridge <David.Trowbridge@Colorado.edu>

    * configure.in: Added calendar-http module, and setup a mechanism
    for base vs optional plugins.

2004-11-03  JP Rosevear  <jpr@novell.com>

    * configure.in: fix the logic
    
2004-11-03  JP Rosevear  <jpr@novell.com>

    * configure.in: handle plain --enable-plugins and
    --enable-plugins=yes by making it the equivalent of "all"       

2004-11-03  Not Zed  <NotZed@Ximian.com>

    * configure.in: added plugin-manager plugin.

2004-11-01  JP Rosevear  <jpr@novell.com>

    * Makefile.am: dist plugin.mk

2004-10-29  Rodrigo Moya <rodrigo@novell.com>

    * configure.in: added mail-to-meeting plugin.

2004-10-28 Nat Friedman <nat@novell.com>

    * configure.in: Re-enable bbwhatever becuase I think it works now.

2004-10-27  JP Rosevear  <jpr@novell.com>

    * configure.in: revive E_WIDGETS_CFLAGS/LIBS because of needing to
    add libedataserverui

2004-10-27  Not Zed  <NotZed@Ximian.com>

    * configure.in: removed bbwhatever it is until the makefiles are
    fixed.

2004-10-25  Radek Doulik  <rodo@ximian.com>

    * configure.in: added audio-inline plugin, added gstreamer check
    for it

    if gstreamer is not available, remove audio-inline plugin from the
    plugins list

2004-10-22  Harish K  <kharish@novell.com>

    * configure.in: Added mark-calendar-offline plugin

2004-10-22  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: Added folder-unsubscribe plugin

2004-10-22  Nat Friedman <nat@novell.com>

    * configure.in: Added the bbdb plugin.

2004-10-21  Rodrigo Moya <rodrigo@novell.com>

    * configure.in: added save-calendar plugin.

2004-10-21  Not Zed  <NotZed@Ximian.com>

    * configure.in: added copy-tool plugin.

2004-10-20  JP Rosevear  <jpr@novell.com>

    * configure.in: add select-one-source to the plugin list

2004-10-20  Not Zed  <NotZed@Ximian.com>

    * configure.in: added prefer plain plugin.
    
2004-10-20  Not Zed  <NotZed@Ximian.com>

    * configure.in: added save attachments plugin.

2004-10-20  JP Rosevear  <jpr@novell.com>

    * Makefile.am: list plugins as a subdir

    * plugins/Makefile.am: build enabled plugins

    * plugin.mk: simple rule for creating .eplug files

    * configure.in: add plugin foo; --enable-plugins=all turns them
    all on, or you can --enable-plugins="<plugin dir> <plugin dir>" to
    list specific ones

2004-10-15  Sarfraaz Ahmed <asarfraaz@novell.com>
    
    * camel.pc.in : Change gal-2.2 to gal-2.4
    * evolution-shell.pc.in : Similar

2004-10-13  JP Rosevear  <jpr@novell.com>

    * configure.in: remove plugins from ac output
    
2004-10-13  JP Rosevear  <jpr@novell.com>

    * configure.in: pull in libedataserverui as appropriate

2004-10-01  Jeffrey Stedfast  <fejj@novell.com>

    * configure.in (localedir): Enable imap4 plugin by default. We
    need to get people building this and testing it.

2004-10-01  JP Rosevear  <jpr@novell.com>

    * configure.in: set the GETTEXT_PACKAGE to evolution-2.2
    
2004-10-01  JP Rosevear  <jpr@novell.com>

    * configure.in: set a GTKHTML_API_VERSION variable

2004-09-13  Not Zed  <NotZed@Ximian.com>

    * configure.in: change the way ipv6 stuff is done.  separate ipv6
    setting from getaddrinfo call check, and default to on if the
    interfaces are available.

2004-09-17  William Jon McCann  <mccann@jhu.edu>

    * configure.in: Fix typos in gal dependency.

2004-09-16  JP Rosevear  <jpr@novell.com>

    * configure.in: use AC_DEFINE properly
    
2004-09-16  JP Rosevear  <jpr@novell.com>

    * configure.in: bump EDS and gal requirements

2004-09-16  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version to 2.1.0 and set base version to 2.2;
    define DEVELOPMENT here so we don't have to alter code to change
    in future

2004-09-13  Tomasz Kłoczko <kloczek@pld.org.pl>

    * data/evolution.desktop.in: added missing Encoding=UTF-8 field 
      (validate desktop file).

2004-09-11  Akagic Amila  <bono@linux.org.ba>

    * configure.in: Added 'bs' to ALL_LINGUAS.
    
2004-08-27  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requirements

2004-08-23  Jeffrey Stedfast  <fejj@novell.com>

    * configure.in: Added some comments about --enable-openssl
    (e.g. why it is disabled)

2004-08-18  Kjartan Maraas  <kmaraas@gnome.org>

    * configure.in: Added «nb» to ALL_LINGUAS.

2004-08-13  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version. requires

2004-08-13  Rodney Dawes  <dobey@novell.com>

    * acinclude.m4: Revert previous EVO_LDAP_CHECK changes, aren't working
    as well as expceted and determined in testing

2004-08-13  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * configure.in:
    Add option to specify location of kerberos 4/5 libraries and
    headers directories.
    Needed for 64bits support.

2004-08-13  Rodney Dawes  <dobey@novell.com>

    * configure.in: Add value and description fields to AC_DEFINE calls
    for the HAVE_ET_COM_ERR_H and HAVE_COM_ERR_H checks

2004-08-13  Rodney Dawes  <dobey@novell.com>

    * acinclude.m4: Remove EVO_CHECK_LIB
    Update EVO_LDAP_CHECK to support --with-openldap-{libs,includes}
    Sync with e-d-s acinclude.m4 (Adds GTK_DOC_CHECK)

2004-08-13  Rodney Dawes  <dobey@novell.com>

    * configure.in: Check for et/comm-err.h and comm_err.h so that
    we can include the correct one

2004-08-12  Rodney Dawes  <dobey@novell.com>

    * data/evolution.desktop.in.in: Update Name and description to
    not include "Ximian" or "(Unstable)"
    Remove the MimeType field since we can't open these types on the
    command line

2004-08-12  Jeffrey Stedfast  <fejj@novell.com>

    * configure.in: Check for gtk+-2.4 in order to enable the use of
    GtkFileChooser.

2004-08-09  Ankit Patel <ankit@redhat.com>

    * configure.in: Gujarati & Panjabi Languages added

2004-08-02  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requirements

2004-08-01  JP Rosevear  <jpr@novell.com>

    * configure.in: add libedataserver to E_UTIL flags

2004-07-25  Gil Osher  <dolfin@rpg.org.il>

    * configure.in: Added 'he' (Hebrew) to ALL_LINGUAS.

2004-07-21  Ray Strode  <rstrode@redhat.com>

    * evolution/data/evolution.desktop.in.in: Add MimeType line to
    desktop file new mime sytem.

2004-07-19   JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requirements

2004-07-07  Chris Toshok  <toshok@ximian.com>

    * configure.in: add CAMEL_GROUPWISE cflags/libs.

2004-07-02  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requirements

2004-08-24  JP Rosevear  <jpr@novell.com>

    * configure.in (plugindir): set a plugin dir so we can easily
    install to the same place everywhere
    
2004-08-24  JP Rosevear  <jpr@novell.com>

    * configure.in: Check for mono support properly

2004-07-05  Not Zed  <NotZed@Ximian.com>

    * configure.in: add some mono checks.

2004-06-24  Pablo Saratxaga  <pablo@mandrakesoft.com>

    * configure.in: Added Walloon (wa) to ALL_LINGUAS.

2004-06-20  Arafat Medini <lumina@silverpen.de>

    * configure.in: Added arabic locale ar to ALL_LINGUAS.

2004-06-17  Fernando Herrera  <fherrera@onirica.com>

    * data/evolution.desktop.in.in: Use "Evolution" for 
    X-GNOME-Bugzilla-Product to match b.x.c product name.

2004-06-09  Dan Winship  <danw@novell.com>

    * configure.in (AC_OUTPUT): Remove shell/glade/Makefile, which has
    been merged into shell/Makefile

2004-06-03  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version, requirements

2004-06-02  Chris Toshok  <toshok@ximian.com>

    * configure.in (EDS_REQUIRED): bump to 0.0.93.1.
    (BASE_VERSION): change to 12 for the ESource absolute_uri stuff.

2004-06-01  Not Zed  <NotZed@Ximian.com>

    * configure.in: check for statvfs.

2004-05-24  Chris Toshok  <toshok@ximian.com>

    * configure.in: add addressbook/tools/Makefile.am back to the
    build.

2004-05-19  Jeffrey Stedfast  <fejj@novell.com>

    * configure.in: Setup the icon install paths (not that we actually
    use them yet).

2004-05-19  JP Rosevear  <jpr@novell.com>

    * configure.in: bump version

2004-05-12  Not Zed  <NotZed@Ximian.com>

    * configure.in: add some stuff for statfs.

    * devel-docs/misc/errors.txt: updated for xml format and i18n
    changes.

2004-04-30  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Require intltool 0.30 for the error xml files

2004-04-30  Mike Castle <dalgoda@ix.netcom.com>

    * data/Makefile.am (install-data-local): get the mime file from
    src dir for srcdir != builddir

2004-04-30  Not Zed  <NotZed@Ximian.com>

    * tools/killev.c (main): use gnome_i18n_get_language_list so we
    get the right one (LC_MESSAGES).

2004-04-26  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in (UPGRADE_REVISION): Changed to 11.

2004-04-26  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in (UPGRADE_REVISION): Changed to 10.

2004-04-26  Radek Doulik  <rodo@ximian.com>

    * configure.in: require newer gtkhtml with new gtk_html_begin's
    flags

2004-04-21  Rodney Dawes  <dobey@ximian.com>

    * autogen.sh: Require automake 1.6 or neweer, we already do for libsoup
    and evolution-data-server, there is no reason not to here

2004-04-21  Chris Toshok  <toshok@ximian.com>

    * configure.in (EDS_REQUIRED): bump to 0.0.92.1 for new EContact
    company phone foo.
    (UPGRADE_REVISION): bump to 9.

2004-04-21 Sivaiah Nallagatla <snallagatla@novell.com>

    * configure.in : added libegroupwise dependency to CAMEL 
     compile flags 

2004-04-19  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Require gnome-icon-theme >= 1.2.0

2004-04-19  Michael Terry  <mike@mterry.name>

    * data/evolution.desktop.in.in: Use the icon theme

2004-04-19  JP Rosevear <jpr@ximian.com>

    * configure.in: bump version, requirements

2004-04-09  Chris Toshok  <toshok@ximian.com>

    * configure.in (UPGRADE_REVISION): bump to 8 for new contact list
    migration, since there was a bug in the shell that caused all
    migration to fail, but the key was still updated.
    
2004-04-09  Chris Toshok  <toshok@ximian.com>

    * configure.in (UPGRADE_REVISION): bump to 7 for new contact list
    migration.

2004-04-08  Chris Toshok  <toshok@ximian.com>

    * configure.in (UPGRADE_REVISION): add a new variable that should
    be bumped whenever a migration change happens in any component.

2004-04-07  Samúel Jón Gunnarsson  <sammi@techattack.nu>

    * configure.in: Added "is" to ALL_LINGUAS

2004-04-02  JP Rosevear  <jpr@ximian.com>

    * configure.in: bump version, requirements

2004-03-22  Radek Doulik  <rodo@ximian.com>

    * configure.in: require gtkhtml 3.1.10, it's needed for composer
    changes

2004-03-15  Hao Sheng <hao.sheng@sun.com>

    * a11y/addressbook/Makefile.am: make distcheck work
    * a11y/calendar/Makefile.am: make distcheck work

2004-03-15  Hao sheng  <hao.sheng@sun.com>

    * configure.in: add a11y/addressbook/Makefile   

2004-03-05  JP Rosevear <jpr@ximian.com>

    * configure.in: bump version, requirements

2004-03-02  Dan Winship  <danw@ximian.com>

    * configure.in (DATASERVER_API_VERSION): Define this (the number
    used in the e-d-s component repo_ids).

    * tools/killev.c (main): Update the repo_ids

2004-02-26  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: Fixed the ENABLE_SMIME conditional to work. Fixes
    the addressbook relocation error.

2004-02-25  Chris Toshok  <toshok@ximian.com>

    * configure.in: add "$xhave_nss = xyes" to the AM_CONDITIONAL for
    ENABLE_SMIME.

2004-02-24  JP Rosevear <jpr@ximian.com>

    * marshal.mk: make sure to use the srcdir to build the list

2004-02-23  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Fix a typo in the smime check, so it actually works

2004-02-23  Adam Weinberger <adamw@FreeBSD.org>

    * configure.in: Added "en_CA" (Canadian English) to ALL_LINGUAS.

2004-02-19  Chris Toshok  <toshok@ximian.com>

    * configure.in: add AC_ARG_ENABLE(smime...) -- "finally", i can
    hear the people rejoice.  Only check the --enable-smime status if
    --enable-ssl is also "yes".  AC_DEFINE (ENABLE_SMIME) if smime is
    enabled.

2004-02-18  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Require ORBit 2.9.8 or newer

2004-02-12  Dan Winship  <danw@ximian.com>

    * Makefile.am (%-$(BASE_VERSION).pc): cp the unversioned file
    rather than mv'ing it so it doesn't get regenerated at install
    time.

2004-02-11  Not Zed  <NotZed@Ximian.com>

    * configure.in (IMPORTERS_*): Added libebook-1.0.  Added back
    mail/importers/Makefile.am.

2004-02-10  JP Rosevear <jpr@ximian.com>

    * configure.in: Add addressbook/importers to AC_OUTPUT

2004-02-09  JP Rosevear  <jpr@ximian.com>

    * configure.in: bump version, requirements

2004-02-09  Rodney Dawes  <dobey@ximian.com>

    * tools/killev.c: Use the AlarmNotify_Factory for --force-shutdown

    Fixes #54084

2004-02-09  Rodney Dawes  <dobey@ximian.com>

    * data/evolution.desktop.in.in: Updated BugzillaOtherBinaries tag

2004-01-28  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: Revert previous change.

2004-01-28  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: Update to require glib-2.0 >= 2.3.2 (needed for
    some GValue usage).

2004-01-28  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Disable the possibility of using OpenSSL until someone
    decides it is worthy and ends up maintaining the code, though porting
    to GNUTLS would probably be a better option, if that happens

2004-01-26  David Trowbridge <trowbrds@cs.colorado.edu>
 
    * configure.in: add facilities for installing a help dir
    
2004-01-26  JP Rosevear  <jpr@ximian.com>

    * configure.in: bump requirements, version

2004-01-24  Sanlig Badral  <badral@openmn.org>

    * configure.in: added "mn" to ALL_LINGUAS.

2004-01-22  Rodney Dawes  <dobey@ximian.com>

    * data/Makefile.am: Add rule to substitute BASE_VERSION in keys
    * data/evolution.keys.in: Removed this file from CVS
    * data/evolution.keys.in.in: Update to use BASE_VERSION and the
    new addressbook vcard control that replaces the MiniCard control

2004-01-22  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Don't require $LIBBONOBOUI_REQUIRED version of
    libbonobo

2004-01-16  Not Zed  <NotZed@Ximian.com>

    * configure.in: added mail/default/Makefile and
    mail/default/C/Makefile.

2004-01-13  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Check for libsoup separately

2004-01-12  JP Rosevear  <jpr@ximian.com>

    * configure.in: bump version and requirements

2004-01-12  JP Rosevear <jpr@ximian.com>

    * configure.in: add soup as a calendar dep

2004-01-12  Meilof Veeningen  <meilof@wanadoo.nl>

    * configure.in: enable NNTP support by default

2004-01-12  JP Rosevear <jpr@ximian.com>

    * configure.in: compile flags for the test component and a
    conditional compile

2004-01-11  JP Rosevear <jpr@ximian.com>

    * configure.in: dont kill the quote

2004-01-11  JP Rosevear <jpr@ximian.com>

    * configure.in: add enable option to build test component

2004-01-08  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Add BONOBOUI_REQUIRED variable and depend on
    libbonoboui >= 2.4.3, add an AC_SUBST() for EDS_REQUIRED also
    * evolution-shell.pc.in: Require the same version of bonoboui that we
    do in configure.in

2004-01-08 Sivaiah Nallagatla <snallagatla@novell.com>

    * configure.in : add camel/providers/groupwise/Makefile to
    AC_OUTPUT section

2004-01-08  Robert Sedak  <robert.sedak@sk.htnet.hr>

    * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.

2004-01-05  JP Rosevear <jpr@ximian.com>

    * tools/Makefile.am: Add e-util libs

    * configure.in: try compiling with sys/types for freebsd

    (Joe Marcus Clarke <marcus@freebsd.org>)    

2004-01-05  Laurent Dhima  <laurenti@alblinux.net>

    * configure.in: Added "sq" to ALL_LINGUAS.

2004-01-01  Roozbeh Pournader  <roozbeh@sharif.edu>

    * configure.in: Added "fa" (Persian) to ALL_LINGUAS.

2003-12-30 Nicel KM <mnicel@novell.com>

    * configure.in: removed default_user directory references from AC_OUTPUT

2003-12-29  JP Rosevear <jpr@ximian.com>

    * configure.in: default_user is gone

    * Makefile.am: ditto

2003-12-29  JP Rosevear <jpr@ximian.com>

    * configure.in: bump version and gal, e-d-s and gtkhtml
    requirements

2003-12-22  Rodrigo Moya <rodrigo@ximian.com>

    * configure.in: added camel/providers/groupwise to the build.

2003-12-15  Chris Toshok  <toshok@ximian.com>

    * Makefile.am (ACLOCAL_AMFLAGS): remove.

2003-12-07  JP Rosevear  <jpr@ximian.com>

    * configure.in: update version reliance

2003-12-06  JP Rosevear <jpr@ximian.com>

    * tools/Makefile.am: Remove hard coded disable deprecated flags

2003-12-05  Radek Doulik  <rodo@ximian.com>

    * configure.in: require gtkhtml 3.1.3 (new gtk_html_flush method
    to be used in mailer)

2003-12-04  Christian Hammond  <chipx86@gnupdate.org>

    * art/im*.png, art/Makefile.am: Added IM png files from Gaim.

2003-12-02  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in (EVOLUTION_DIR): Remove the Junk folder

2003-12-01  Rodney Dawes  <dobey@ximian.com>

    * data/Makefile.am: Install evolution.desktop as
    evolution-$(BASE_VERSION).desktop
    * data/evolution.desktop.in: Remove generated file
    * data/evolution.desktop.in.in: Add (Unstable) to name
    Fix comment to be more correct and have correct capitalization

2003-12-01  Rodney Dawes  <dobey@ximian.com>

    * tools/killev.c: Use BASE_VERSION for repo_ids and OAFIIDs,
    Update gnome-spell repo_id to correct version,
    Update gtkhtml editor OAFIID to GtkHTML 3.1

2003-12-01  JP Rosevear <jpr@ximian.com>

    * configure.in: define privconduitdir

2003-11-28  Anders Carlsson  <andersca@gnome.org>

    * configure.in: Look for mozilla-nss.pc, not mozilla.pc.

2003-11-26  JP Rosevear  <jpr@ximian.com>

    * configure.in: make sure the mozilla .pc file exists before
    checking for it

2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

    * tools/killev.c (main): kill Evo 2.0's alarm daemon, not 1.4's.

2003-11-19  JP Rosevear <jpr@ximian.com>
    
    * MAINTAINERS: Update

2003-11-18  JP Rosevear <jpr@ximian.com>

    * configure.in: remove db3 check

2003-11-18  Rodrigo Moya <rodrigo@ximian.com>

    * tools/killev.c (main): kill the alarm notification service, not
    the factory, which no longer exists.

2003-11-17  JP Rosevear  <jpr@ximian.com>

    * Makefile.am: make sure server.mk is disted

2003-11-17  JP Rosevear <jpr@ximian.com>

    * Makefile.am (EXTRA_DIST): do the right thing for disting

2003-11-17  JP Rosevear <jpr@ximian.com>

    * configure.in: use the server.mk file to get rules for building
    versioned .server files

    * */Makefile.am: use simplified rule subst
    
2003-11-17 JP Rosevear <jpr@ximian.com>

    * Makefile.am: Install versioned package config files

2003-11-14  JP Rosevear <jpr@ximian.com>

    * configure.in: make source selector flags/libs

2003-11-14  JP Rosevear <jpr@ximian.com>

    * MAINTAINERS: Update

2003-11-11  Chris Toshok  <toshok@ximian.com>

    * Makefile.am (SUBDIRS): remove libversit from the build.

    * configure.in (CERT_UI): change the libraries we link.
    (AC_OUTPUT): remove libversit/Makefile

2003-11-11  JP Rosevear <jpr@ximian.com>

    * configure.in: determine the e-d-s version, version the gettext
    files properly

2003-11-07  Dan Winship  <danw@ximian.com>

    * configure.in (AC_OUTPUT): Remove e-util/ename/Makefile

2003-11-07  JP Rosevear <jpr@ximian.com>

    * configure.in: we don't have to configure the libical subdir now

2003-11-07  JP Rosevear <jpr@ximian.com>

    * configure.in: pull in evolution-data-server stuff and remove
    backends from output

2003-10-31  JP Rosevear <jpr@ximian.com>

    * configure.in: set up vars and rules for versioning the .server
    files

    * Makefile.am's: use rules for versioning .server file, ensure
    built files are removed before disting
    
2003-10-30  Chris Toshok  <toshok@ximian.com>

    * configure.in: (AC_OUTPUT): remove smime/tests for now.

2003-10-30  Chris Toshok  <toshok@ximian.com>

    * configure.in: set enable_smime=yes wherever nss would be
    enabled..  fixes manually specifying the nss libs and enabling the
    smime ui.  Also, add a section for generating the correct SMIME UI
    flags.  gross, but necessary.  it should probably be wrapped in
    with all the other nss library crap.
    (AC_OUTPUT): add smime/tests

2003-10-29  Chris Toshok  <toshok@ximian.com>

    * Makefile.am (SUBDIRS): use $SMIME_DIR. instead of explicitly
    including smime.

    * configure.in: add some smime foo - a status message, an
    AM_CONDITIONAL (ENABLE_SMIME)

2003-10-17  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: added a configure check for AI_ADDRCONFIG

2003-10-24  Dan Winship  <danw@ximian.com>

    * libversit/Makefile.am: Change YFLAGS to AM_YFLAGS to stop an
    automake 1.7 warning

2003-10-23  Rodney Dawes  <dobey@ximian.com>

    * confiugre.in: Remove mail/importers/Makefile from AC_OUTPUT
    yet again

2003-10-23  Chris Toshok  <toshok@ximian.com>

    * configure.in: add smime/* dirs. to AC_OUTPUT.

    * Makefile.am (SUBDIRS): add smime/.

2003-10-23  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * configure.in: Check for gnome-thumbnail.h existence 
    (really committed this time).
    
2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * configure.in: Set $ACLOCAL to have the $ACLOCAL_FLAGS in it, so
    it doesn't fail to regenerate the files if you run make without a
    manual autogen after making changes to configure.in and friends.
    [Many thanks to Marco Pesenti Gritti for pointing out the fix to
    me.]

2003-10-22  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Require ORBit 2.8.0 or newer for threading

2003-10-22  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Revert broken previous commit and actually remove
    mail/importers/Makefile from AC_OUTPUT

2003-10-22  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Removed mail/importers/Makefile from AC_OUTPUT

2003-10-22  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Removed addressbook/tools/Makefile from AC_OUTPUT

2003-10-22  Jeffrey Stedfast  <fejj@ximian.com>

    * configure.in: Removed pedantic pgp/mime configure flag.

2003-10-22  Dan Winship  <danw@ximian.com>

    * executive-summary/*: Removed; this code has not been used since
    pre-1.0.

    * importers/*: Removed; the actual importers were moved to
    {mail,calendar}/importers long ago.

    * my-evolution/*: Removed; gone in evolution 2.0.

    * notes/*: Removed; never finished and no one is working on it.

    * omf-install/*: Removed; part of old doc system

    * tests/*: Removed; these are ancient. Camel regression tests are
    in camel/tests now.

    * configure.in (E_UTIL_{CFLAGS,LIBS}): Remove soup-2.0 since
    e-proxy is gone.
    (EVOLUTION_MAIL_{CFLAGS,LIBS}): Remove soup-2.0 since the mailer
    uses CamelHTTPStream now.
    (EVOLUTION_EXECUTIVE_SUMMARY_{CFLAGS,LIBS}): Gone
    (AC_OUTPUT): Remove my-evolution/Makefile

    * README: evolution no longer depends on soup

2003-10-21  Dan Winship  <danw@ximian.com>

    * configure.in (GNOME_COMPILE_WARNINGS): Turn off the annoying
    "comparison between signed and unsigned" warning in gcc 3.3

    * evolution-calendar.pc.in (Cflags): add
    -I${privincludedir}/libical

2003-10-08  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * configure.in: Check for gnome-thumbnail.h existence.

2003-09-04  Dan Winship  <danw@ximian.com>

    * camel.pc.in (Requires): 
    * evolution-addressbook.pc.in (Requires): 
    * evolution-calendar.pc.in (Requires): 
    * evolution-shell.pc.in (Requires): Require gal-2.2

2003-08-27  Bolian Yin <bolian.yin@sun.com>

    * configure.in: add a11y/widgets/Makefile
    * Makefile.am: move a11y directory before widgets directory.

2003-08-21  Not Zed  <NotZed@Ximian.com>

    * HACKING: Wrote one.

2003-08-20  Bolian Yin <bolian.yin@sun.com>

    * configure.in: Add a11y checking, and a11y Makefiles
    * Makefile.am: add a11y subdirectory

2003-08-13  Mike Kestner  <mkestner@ximian.com>

    * configure.in: don't make 1.5 the default version (ie LN_S)
    update to use gal-2.2

2003-08-01  Not Zed  <NotZed@Ximian.com>

    * configure.in: Add option for '--enable-imapp', for 'new' imap
    code.

2003-07-26  Larry Ewing  <lewing@ximian.com>

    * configure.in: use libgtkhtml-3.1 for linking.

2003-07-26  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Bump version to "1.5", so that we end up being
    parallel installable with 1.4 again, but we can still release
    a "1.5.0" tarball when we get to that point in 6 months
    
2003-07-23  Dan Winship  <danw@ximian.com>

    * configure.in: Define EVO_MARSHAL_RULE, which creates glib
    marshaller .c and .h files that don't cause gcc warnings

    * marshal.mk: The Makefile fragment used by EVO_MARSHAL_RULE.
    (Can't include newlines in an AC_SUBST, so we have to use
    AC_SUBST_FILE)

    * Makefile.am (EXTRA_DIST): add marshal.mk

2003-07-20 Hasbullah Bin Pit <sebol@ikhlas.com>

    *configure.in: Added 'ms' (Malay) to ALL_LINGUAS.

2003-07-10  Rodney Dawes  <dobey@ximian.com>

    * configure.in: Change version to 1.4.99 since HEAD is not the
    stable 1.4 branch, as evolution-1-4-branch was created post-1.4.1
    
2003-07-01  Dan Winship  <danw@ximian.com>

    * configure.in: Check for gnome-icon-lookup.h (which could mean
    either plain GNOME 2.2 or Sun GNOME 2.0)

2003-06-30  Rodrigo Moya <rodrigo@ximian.com>

    * configure.in:
    * Makefile.am: removed libwombat from the build.

    * evolution-calendar.pc.in: removed -lwombat.

    * libwombat/*: removed unused directory.

== Version 1.4.1 ==

2003-06-25  Ettore Perazzoli  <ettore@ximian.com>

    * configure.in: Depend on GtkHTML 3.0.6, gal 1.99.8.

    * README: Update

2003-06-23  Ettore Perazzoli  <ettore@ximian.com>

    * data/Makefile.am: Added implicity rule to subst @BASE_VERSION@
    in evolution.desktop.in.in to generate evolution.desktop.in.
    (desktop_in_file): Removed.
    (desktop_in_in_file): New.
    (kdedesktop_file): Update substitution to use
    $(desktop_in_in_file) instead of $(desktop_in_file).
    (noinst_DATA): Add $(desktop_file).
    (install-data-local): Depend on $(mime_file) and $(keys_file).
    (EXTRA_DIST): Remove $(desktop_file), replace $(desktop_in_file)
    with $(desktop_in_in_file).

2003-06-19  Dan Winship  <danw@ximian.com>

    * tools/killev.c (kill_component): clean this up a little and make
    it deal with "evolution" vs "evolution-1.4"

2003-06-19  Danilo Šegan  <dsegan@gmx.net>

    * configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-06-17  Not Zed  <NotZed@Ximian.com>

    * NEWS: Updated for current mail stuff.

2003-06-13  Ettore Perazzoli  <ettore@ximian.com>

    * tools/Makefile.am: Remove evolution-launch-composer since it's
    no longer needed.