-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.pre-git
3171 lines (1864 loc) · 78.3 KB
/
ChangeLog.pre-git
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
2009-04-14 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.26.2
==================== 2.26.1 ====================
2009-04-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.26.1
2009-03-16 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.26.1
==================== 2.26.0 ====================
2009-03-16 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.26.0
2009-03-09 Vincent Untz <vuntz@gnome.org>
* configure.in: remove scrollkeeper check. This has to be done by
gnome-doc-utils, not ourselves.
2009-03-03 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.26.0
==================== 2.25.92 ====================
2009-03-03 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.25.92
2009-02-17 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.25.92
==================== 2.25.91 ====================
2009-02-17 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.25.91
2009-02-17 Vincent Untz <vuntz@gnome.org>
* configure.in: require GTK+ 2.15.1 for orientable GtkBox.
2009-02-03 Vincent Untz <vuntz@gnome.org>
* configure.in: late post-release bump to 2.25.91
==================== 2.25.90 ====================
2009-02-03 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.25.90
2009-01-21 Vincent Untz <vuntz@gnome.org>
* configure.in: late post-release bump to 2.25.90
==================== 2.25.5.1 ====================
2009-01-21 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.25.5.1
2009-01-20 Vincent Untz <vuntz@gnome.org>
* configure.in: late post-release bump to 2.25.90
==================== 2.25.5 ====================
2009-01-20 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.25.5
2009-01-06 Vincent Untz <vuntz@gnome.org>
* configure.in: late post-release bump to 2.25.5
==================== 2.25.3 ====================
2008-12-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: prepare files for 2.25.3 release, in case I can't do it myself
2008-12-11 Vincent Untz <vuntz@gnome.org>
* configure.in: applets now no longer depend on libgnomeui!
Also add some specific pkg-config checks for notification-area
2008-12-09 Vincent Untz <vuntz@gnome.org>
* configure.in: libpanel-applet doesn't need gdk-pixbuf, and doesn't
need libgnomeui anymore; wncklet applets don't need gdk-pixbuf
2008-12-09 Vincent Untz <vuntz@gnome.org>
* configure.in: remove help/de/
2008-12-08 Vincent Untz <vuntz@gnome.org>
* configure.in: require glib 2.18.0 for C_().
Fix bug #558418, part of a GNOME Goal.
2008-11-25 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.24.3.
==================== 2.24.2 ====================
2008-11-25 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.24.2
2008-10-22 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.24.2.
==================== 2.24.1 ====================
2008-10-22 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.24.1
2008-10-20 Dan Winship <danw@gnome.org>
* configure.in: require libgweather 2.24.1 (for
weather_info_network_error())
2008-09-22 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.24.1.
==================== 2.24.0 ====================
2008-09-22 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.24.0
2008-09-09 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.24.0.
==================== 2.23.92 ====================
2008-09-09 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.92
2008-09-02 Vincent Untz <vuntz@gnome.org>
* configure.in: fix eds icon detection when forcing eds support
2008-09-02 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.92.
==================== 2.23.91 ====================
2008-09-02 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.91
2008-08-21 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.91.
==================== 2.23.90.1 ====================
2008-08-21 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.90.1
2008-08-18 Olav Vitters <olav@bkor.dhs.org>
* configure.in: post-release bump to 2.23.91.
==================== 2.23.90 ====================
2008-08-18 Olav Vitters <olav@bkor.dhs.org>
* NEWS:
* README:
* configure.in: version 2.23.90.
2008-08-04 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.90.
==================== 2.23.6 ====================
2008-08-04 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.6
2008-08-04 Vincent Untz <vuntz@gnome.org>
* configure.in: require libgweather 2.23.6
2008-08-04 Vincent Untz <vuntz@gnome.org>
* configure.in: explicitly require gio-unix-2.0
2008-08-03 Vincent Untz <vuntz@gnome.org>
* configure.in: require GTK+ 2.13.1 for GtkMountOperation
2008-07-23 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.6.
==================== 2.23.5 ====================
2008-07-23 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.5
2008-06-17 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.5.
==================== 2.23.4 ====================
2008-06-17 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.4
2008-06-17 Vincent Untz <vuntz@gnome.org>
* configure.in: require intltool 0.40.0
* Makefile.am: remove old intltool cruft
2008-06-05 Vincent Untz <vuntz@gnome.org>
* configure.in: updated for consort-panel/libpanel-util/
2008-06-03 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.4.
==================== 2.23.3 ====================
2008-06-03 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.3
2008-05-14 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.3.
==================== 2.23.2.1 ====================
2008-05-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.2.1
2008-05-14 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.3.
==================== 2.23.2 ====================
2008-05-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.2
2008-04-21 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.23.2.
==================== 2.23.1 ====================
2008-04-21 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.23.1
2008-04-15 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.2.
==================== 2.22.1.3 ====================
2008-04-15 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.22.1.3
2008-04-10 Lucas Rocha <lucasr@gnome.org>
* consort-panel/consort-panel.desktop.in.in: added three new
keys (X-GNOME-Autostart-Phase, X-GNOME-Provides, and
X-GNOME-Autostart-Notify) which are needed to make consort-panel
work nicely with new gnome-session. Fixes bug #525052.
2008-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.2.
==================== 2.22.1.2 ====================
2008-04-10 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.22.1.2
2008-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in: add gio check for CLOCK_MECHANISM, because of the use
of system-timezone.c
2008-04-09 Vincent Untz <vuntz@gnome.org>
* configure.in: if compiling with networkmanager support, require NM
0.6 at least. Maybe it should require 0.7, but I don't know...
Fix bug #527098
2008-04-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.2.
==================== 2.22.1.1 ====================
2008-04-08 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.22.1.1
2008-04-07 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.2.
==================== 2.22.1 ====================
2008-04-07 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.22.1
2008-04-07 Vincent Untz <vuntz@gnome.org>
* configure.in: require gweather 2.22.1, do not check for libxml and
the locations.xml file for the clock applet
End of bug #519823.
2008-04-02 Vincent Untz <vuntz@gnome.org>
* configure.in: require a recent version of gweather instead of no
specific version. Fix bug #521374.
2008-04-02 Vincent Untz <vuntz@gnome.org>
* configure.in: updated for e-map removal
2008-03-10 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.1.
==================== 2.22.0 ====================
2008-03-10 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.22.0
2008-02-26 Matthias Clasen <mclasen@redhat.com>
* configure.in: When compiling with PolicyKit support,
check for polkit-policy-file-validate.
2008-02-26 Olav Vitters <olav@bkor.dhs.org>
* configure.in: post-release bump to 2.21.93.
==================== 2.21.92 ====================
2008-02-26 Olav Vitters <olav@bkor.dhs.org>
* NEWS:
* README:
* configure.in: version 2.21.92
2008-02-25 Alexander Larsson <alexl@redhat.com>
* configure.in:
Require glib 2.15.6 for the g_file_has_prefix change.
2008-02-24 Olav Vitters <olav@bkor.dhs.org>
* applets/clock/set-timezone-dummy.c: Add set_system_timezone_async,
needed when compiling without polkit.
Fix bug #517685.
Patch by Frederic Peters.
2008-02-11 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.21.92.
==================== 2.21.91 ====================
2008-02-11 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.21.91
2008-02-11 Vincent Untz <vuntz@gnome.org>
* configure.in: require gio 2.15.5
2008-02-11 Vincent Untz <vuntz@gnome.org>
* configure.in: we don't need gnome-vfs anymore! Free hugs for
everyone!
2008-02-09 Vincent Untz <vuntz@gnome.org>
* configure.in: require gio for the panel
2008-02-09 Vincent Untz <vuntz@gnome.org>
* configure.in: require gio for the clock
2008-01-29 Elijah Newren <newren gmail com>
* configure.in: post-release bump to 2.21.91.
==================== 2.21.90 ====================
2008-01-29 Elijah Newren <newren gmail com>
* NEWS:
* README:
version 2.21.90
2008-01-28 Vincent Untz <vuntz@gnome.org>
* configure.in: look for Locations.xml through pkg-config.
Fix bug #509888.
Patch by Patryk Zawadzki <patrys@pld-linux.org>
2008-01-22 Matthias Clasen <mclasen@redhat.com>
* configure.in:
* icons/Makefile.am:
* icons/48x48/*: Add a 48x48 version of consort-panel.svg, which is
one of the more frequently rendered svgs on the desktop.
2008-01-21 Vincent Untz <vuntz@gnome.org>
* configure.in: move AM_PROG_CC_C_O towards the top, to try to keep
things readable. I know, it's not possible :-)
2008-01-16 Christian Persch <chpe@gnome.org>
* configure.in: Use AM_PROG_CC_C_O. Bug #509781, patch by Christian
Kirbach.
2008-01-15 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.21.90.
==================== 2.21.5 ====================
2008-01-15 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.21.5
2008-01-14 Federico Mena Quintero <federico@novell.com>
* configure.in: Remove the check for _NL_MEASUREMENT_MEASUREMENT.
2008-01-14 Federico Mena Quintero <federico@novell.com>
INTLCLOCK MERGE ENDS HERE
* applets/clock/*: Merged the International Clock applet into
applets/clock.
2008-01-02 Federico Mena Quintero <federico@novell.com>
* configure.in: Add a test for _NL_MEASUREMENT_MEASUREMENT.
2008-01-02 Federico Mena Quintero <federico@novell.com>
* configure.in (CLOCK_MECHANISM): Check the libraries that the
clock / timezone mechanism needs.
2007-12-05 Federico Mena Quintero <federico@novell.com>
* configure.in: Check for extra modules needed for the clock
applet: rsvg, d-bus, polkit.
INTLCLOCK MERGE BEGINS HERE
2007-10-15 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.20.2.
==================== 2.20.1 ====================
2007-10-15 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.20.1
2007-09-18 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.20.1.
==================== 2.20.0.1 ====================
2007-09-18 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.20.0.1
2007-09-17 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.20.1.
==================== 2.20.0 ====================
2007-09-17 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.20.0
2007-09-04 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.20.0.
==================== 2.19.92 ====================
2007-09-04 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.92
2007-08-31 Vincent Untz <vuntz@gnome.org>
* MAINTAINERS: update to new format
2007-08-13 Lucas Rocha <lucasr@gnome.org>
* configure.in: post-release bump to 2.19.90.
==================== 2.19.6 ====================
2007-08-13 Lucas Rocha <lucasr@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.6
2007-07-30 Wouter Bolsterlee <wbolster@svn.gnome.org>
* NEWS: Fix last-translator extraction bug, even if I
change history doing so :)
2007-07-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.6.
==================== 2.19.5 ====================
2007-07-08 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.5
2007-07-05 Vincent Untz <vuntz@gnome.org>
Changes needed for the support for timezones in the clock applet.
Bug #88754.
* configure.in: check for glade for the clock applet, check for
solaris build and add new Makefile
* icons/world_map-960.png: new
* icons/Makefile.am: add new file
2007-07-03 Bastien Nocera <hadess@hadess.net>
* doc/consort-panel-action-protocol.txt: Update the documentation
for the action protocol, following the addition of
_CONSORT_PANEL_ACTION_KILL_DIALOG (Closes: #442625)
2007-06-29 Vincent Untz <vuntz@gnome.org>
* configure.in: add libbonobo and libbonoboui pkgconfig checks for the
panel to make compilation work. It seems some pkgconfig file changed,
and we didn't have the bonobo headers anymore...
2007-06-26 Vincent Untz <vuntz@gnome.org>
* configure.in: require libwnck 2.19.5 for the new tasklist sizing
stuff.
2007-06-18 Vincent Untz <vuntz@gnome.org>
* configure.in: require libwnck 2.19.4
2007-06-17 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.5.
==================== 2.19.4 ====================
2007-06-17 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.4
2007-06-14 Vincent Untz <vuntz@gnome.org>
* configure.in: require gtk+ 2.11.3
2007-06-14 Vincent Untz <vuntz@gnome.org>
* configure.in: require glib 2.13.0
2007-06-03 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.4.
==================== 2.19.3 ====================
2007-06-03 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.3
2007-05-25 Vincent Untz <vuntz@gnome.org>
* configure.in: detect the datadir of e-d-s, since we need it for
icons. This adds a dependency on e-d-s (for packagers who split e-d-s
in many small libraries)
2007-05-21 Vincent Untz <vuntz@gnome.org>
* configure.in: rework x libraries detection
Patch by Lo?c Minier <lool@dooz.org>
Fix bug #409557
2007-05-18 Vincent Untz <vuntz@gnome.org>
* configure.in: require libwnck 2.19.3
2007-05-15 Sebastien Bacher <seb128@ubuntu.com>
* configure.in: fix CLOCK_TIME_UTILITY typo (Closes: #438603)
2007-05-14 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.3.
==================== 2.19.2 ====================
2007-05-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.19.2
2007-05-13 Vincent Untz <vuntz@gnome.org>
* icons/Makefile.am: install data in $(datadir)/consort-panel/ instead
of $(datadir)/gnome/panel/
Fix bug #436461
2007-05-13 Vincent Untz <vuntz@gnome.org>
* configure.in: update for .desktop file translation
2007-05-12 Vincent Untz <vuntz@gnome.org>
* icons/16x16/Makefile.am (update-icon-cache):
* icons/24x24/Makefile.am (update-icon-cache):
* icons/22x22/Makefile.am (update-icon-cache):
* icons/32x32/Makefile.am (update-icon-cache):
* icons/scalable/Makefile.am (update-icon-cache): fix
gtk-update-icon-cache for uninstall-hook.
Fix bug #436213. Patch by Brian Pepple <bpepple@fedoraproject.org>
2007-05-08 Vincent Untz <vuntz@gnome.org>
* configure.in: add new --with-clock-time-utility configure parameter
2007-05-01 Changwoo Ryu <cwryu@debian.org>
* configure.in: Removed help/ko/* output for gnome-doc-utils
migration.
2007-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.18.2.
==================== 2.18.1 ====================
2007-04-10 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.18.1
2007-03-12 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.18.1.
==================== 2.18.0 ====================
2007-03-12 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.18.0
2007-03-06 Vincent Untz <vuntz@gnome.org>
* configure.in: require pango 1.15.4 for the clock, generate
consort-panel/consort-panel.desktop
2007-02-26 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.18.0.
==================== 2.17.92 ====================
2007-02-26 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.17.92
2007-02-20 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: Dist MAINTAINERS.
2007-02-18 Vincent Untz <vuntz@gnome.org>
* configure.in: require pango 1.15.4 for voodoo magic (vertical text
with automatic gravity)
2007-02-17 Vincent Untz <vuntz@gnome.org>
* */.cvsignore: kill
2007-02-17 Vincent Untz <vuntz@gnome.org>
* configure.in: check for gconf for libpanel-applet
Fix bug #382307
2007-02-12 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.17.92.
==================== 2.17.91 ====================
2007-02-12 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.17.91
2007-01-30 Brian Cameron <brian.cameron@sun.com>
* configure.in: Now add libedataserver to the CLOCK_LIBS to
fix compile issue on Solaris. Also, good for pkg-config to
check to make sure the right version of edataserver is on
the system.
2007-01-21 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.17.91.
==================== 2.17.90 ====================
2007-01-21 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.17.90
2007-01-17 Vincent Untz <vuntz@gnome.org>
* configure.in: check for langinfo.h and nl_langinfo
Fix bug #394893
Remove check for lockf (was for egg code)
2007-01-14 Vincent Untz <vuntz@gnome.org>
* configure.in: check for environ for darwin
Part of bug #394896
* configure.in: set warnings to maximum
2007-01-14 Vincent Untz <vuntz@gnome.org>
* icons/*: add launcher icon
Fix bug #351832
2007-01-14 Vincent Untz <vuntz@gnome.org>
* doc/panel-keynav.txt: fix typos
Fix bug #395654, patch by Yang Hong <yanghong@ccoss.com.cn>
2006-11-29 Stepan Kasal <skasal@redhat.com>
* configure.in: AM_PROG_LIBTOOL was renamed to AC_PROG_LIBTOOL.
2006-11-20 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.16.3.
==================== 2.16.2 ====================
2006-11-20 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.16.2
2006-11-13 Vincent Untz <vuntz@gnome.org>
* configure.in: better fix
2006-11-13 Vincent Untz <vuntz@gnome.org>
* configure.in: try to work around issues on old distros
Should fix bug #372685
2006-10-19 Tom Tromey <tromey@redhat.com>
* launcher.c (panel_launcher_delete): Ensure 'location' is
initialized. Fix bug #359707
2006-10-08 Vincent Untz <vuntz@gnome.org>
* configure.in: check for libXau
Fix bug #352239. Patch by Matt Keenan <matt.keenan@sun.com>
2006-10-02 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.16.2.
==================== 2.16.1 ====================
2006-10-02 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.16.1
2006-10-01 Vincent Untz <vuntz@gnome.org>
* configure.in: require libecal >= 1.6.0
Fix bug #354377
2006-09-04 Vincent Untz <vuntz@gnome.org>
* .cvsignore: updated
2006-09-04 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.16.1.
==================== 2.16.0 ====================
2006-09-04 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.16.0
2006-09-01 Vincent Untz <vuntz@gnome.org>
* configure.in:
* icons/Makefile.am:
* icons/24x24: add 24x24 version of icons, created with
convert -bordercolor Transparent -border 1x1 22x22icon.png 24x24icon.png
2006-08-23 Paolo Borelli <pborelli@katamail.com>
* consort-panel/menu.c:
* consort-panel/panel-widget.c:
plug a couple of leaks.
2006-08-22 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.16.0.
==================== 2.15.92 ====================
2006-08-22 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.15.92
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in: add new --with-in-process-applets to make it possible
to compile applets as in-process applets
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in: require GTK+ 2.10.0
2006-08-08 Vincent Untz <vuntz@gnome.org>
* icons/16x16/Makefile.am:
* icons/16x16/consort-panel-force-quit.xcf.bz2: kill this source since
we have the svg
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in: remove killed Makefiles
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.15.92.
==================== 2.15.91 ====================
2006-08-08 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: version 2.15.91
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in:
* icons/Makefile.am:
* icons/16x16/*:
* icons/22x22/*:
* icons/32x32/*:
* icons/scalable/*: add new icons
* icons/gnome-main-menu.png:
* icons/panel-force-quit.png: