-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog-20080310
1598 lines (903 loc) · 37.7 KB
/
ChangeLog-20080310
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
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: Version 2.22.0.
2008-03-06 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.22.0
==================== 2.21.93 ====================
2008-03-06 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.21.93.
2008-02-28 Bastien Nocera <hadess@hadess.net>
* configure.in: Remove hard requirement on esound,
as we use the gnome-sound APIs, and let the
gnome-settings-daemon launch the sound server
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: Version 2.21.92.
2008-02-20 Vincent Untz <vuntz@gnome.org>
* configure.in: require gnome-keyring 2.21.92
* gnome-session/gsm-keyring.c: (gsm_keyring_daemon_start): use
gnome_keyring_daemon_prepare_environment_sync(), and set appropriate
g-k environment variables
Fix bug #503278.
Based on patch by Stef Walter <stef@memberwebs.com>
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: Version 2.21.91.
2008-01-28 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.21.91
==================== 2.21.90 ====================
2008-01-28 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.21.90.
2008-01-15 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.21.90
==================== 2.21.5 ====================
2008-01-14 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.21.5.
2007-11-18 Lucas Rocha <lucasr@gnome.org>
* gnome-session/Makefile.am, gnome-session/gsm-xrandr.c,
gnome-session/main.c: remove gsm_set_display_properties() call and
xrandr related code as this is now handled by gnome-settings-daemon
See bug #434982.
2007-11-13 Vincent Untz <vuntz@gnome.org>
Move session .desktop file from GDM to gnome-session.
Patch by William Jon McCann <mccann@jhu.edu>
Fix bug #493535.
* data/gnome.desktop.in: new file
* data/Makefile.am: updated
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: Version 2.20.1.
2007-09-20 Sebastian Dröge <slomo@circular-chaos.org>
* configure.in: Update Gtk requirement to >= 2.11.1 because of
gdk_window_set_opacity. (Fixes: #478553)
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: 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-03 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.91
==================== 2.19.90 ====================
2007-08-13 Lucas Rocha <lucasr@gnome.org>
* NEWS:
* README: Version 2.19.90.
2007-07-30 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.90
==================== 2.19.6 ====================
2007-07-30 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.19.6.
2007-07-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.5
==================== 2.19.5 ====================
2007-07-08 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.19.5.
2007-07-08 Vincent Untz <vuntz@gnome.org>
* configure.in: use %e (instead of %d) to get the day of the month
since there's no leading 0 there, and use sed to remove the leading 0
in date +%m.
Fix compilation breaking on some dates (bug #454797)
2007-06-18 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.5
==================== 2.19.4 ====================
2007-06-18 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.19.4.
2007-06-18 Vincent Untz <vuntz@gnome.org>
* configure.in: define GNOME_SESSION_TARBALL_DAY,
GNOME_SESSION_TARBALL_MONTH, and GNOME_SESSION_TARBALL_YEAR in a
POSIX-compliant way. Needed for bug #444670.
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: Version 2.19.3.
2007-05-13 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.19.3
==================== 2.19.2 ====================
2007-05-13 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.19.2.
2007-05-09 Vincent Untz <vuntz@gnome.org>
* configure.in: we don't need libgnome-desktop anymore
2007-05-09 Vincent Untz <vuntz@gnome.org>
* configure.in: add --with-time-utility
2007-05-06 Vincent Untz <vuntz@gnome.org>
* configure.in: small fixes, create bzip2 tarballs, require glib
2.12.0
Based on patch by Christian Persch <chpe@gnome.org>
2007-05-06 Vincent Untz <vuntz@gnome.org>
* configure.in: make it possible to redefine libexecdir when running
make.
Fix bug #420283. Patch by Andreas Hanke <andreas.hanke@gmx-topmail.de>
2007-05-06 Vincent Untz <vuntz@gnome.org>
* configure.in: don't check for xrdb
Fix bug #420313. Patch by Andreas Hanke <andreas.hanke@gmx-topmail.de>
2007-04-13 Bastien Nocera <hadess@hadess.net>
* configure.in: Remove check for usleep
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: Version 2.18.0.
2007-03-11 Christian Kirbach <Christian.Kirbach@googlemail.com>
* data/session-properties.desktop.in.in:
Removed invalid category.
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: Version 2.17.92.
2007-02-20 Kjartan Maraas <kmaraas@gnome.org>
* MAINTAINERS: Add Vincent, remove Mark.
* Makefile.am: Dist MAINTAINERS.
2007-02-19 Sebastien Bacher <seb128@ubuntu.com>
* data/session-properties.desktop.in.in:
use "X-GNOME-PersonalSettings" desktop category (Fixes: #409407)
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: Version 2.17.91.
2007-01-22 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.17.91
==================== 2.17.90.1 ====================
2007-01-22 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS:
* README: Version 2.17.90.1.
2007-01-21 Vincent Untz <vuntz@gnome.org>
* data/Makefile.am: install default.session and not default.session.in
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: Version 2.17.90.
2007-01-21 Vincent Untz <vuntz@gnome.org>
* data/Makefile.am: fix distcheck
2007-01-21 Vincent Untz <vuntz@gnome.org>
* data/session-properties.desktop.in.in: use new icon for the desktop
file
2007-01-17 Vincent Untz <vuntz@gnome.org>
* configure.in:
* data/Makefile.am:
* data/icons: add icon for session properties
Fix bug #396181
Icons provided by Jakub Steiner <jimmac@ximian.com>
2007-01-17 Vincent Untz <vuntz@gnome.org>
* data/Makefile.am: forgot this file
2007-01-17 Vincent Untz <vuntz@gnome.org>
* configure.in:
* data/*:
* gnome-session/gnome-session.schemas.in:
* gnome-session/default.in:
* gnome-session/session-properties.desktop.in.in:
* gnome-session/gnome-splash.png:
* gnome-session/Makefile.am: move data files to data/ subdir
* configure.in: set warnings to maximum
2007-01-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.17.90
==================== 2.17.5 ====================
2007-01-08 Vincent Untz <vuntz@gnome.org>
* configure.in:
* NEWS:
* README: Version 2.17.5.
2007-01-06 Vincent Untz <vuntz@gnome.org>
* configure.in: improve autodetection of the default directory for
at-spi-registryd
2007-01-06 Vincent Untz <vuntz@gnome.org>
* gnome-session.spec.in:
* configure.in:
* Makefile.am: kill the spec file since nobody has updated it for a
very long time
2007-01-06 Vincent Untz <vuntz@gnome.org>
* configure.in: use gnome-common to define the deprecated flags
2007-01-06 Vincent Untz <vuntz@gnome.org>
* configure.in: add a configure option to specify the directory of
at-spi-registryd
Fix bug #383428, based on patch by Ariel Rios <ariel@gnu.org>
2006-12-01 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Post release bump.
======================= 2.17.3 =======================
2006-11-15 Vincent Untz <vuntz@gnome.org>
* man/gnome-wm.1: Updated (we don't update gconf anymore)
2006-11-15 Vincent Untz <vuntz@gnome.org>
* man/gnome-session-save.1: Document --silent option, and small
update. Bug #149447
2006-11-14 Vincent Untz <vuntz@gnome.org>
* configure.in: and make this work by default (ie, automatically
detect whether to use it or not)
2006-11-14 Vincent Untz <vuntz@gnome.org>
* configure.in: allow enabling/disabling of tcpwrappers
Patch by Saleem Abdulrasool <compnerd@gentoo.org>
Fix bug #326242
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-11-06 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.17.3.
==================== 2.17.2 ====================
2006-11-06 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.17.2.
2006-11-06 Vincent Untz <vuntz@gnome.org>
* configure.in: add configure switch to disable esd support
Fix bug #310979.
Patch by Leonardo Boshell <p@kapcoweb.com>
2006-10-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Fix build. (Frederic Peters).
Closes bug #362541.
2006-10-08 Vincent Untz <vuntz@gnome.org>
* configure.in: check for libXau existence
Fix bug #314079
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: Version 2.16.1.
2006-09-26 Kjartan Maraas <kmaraas@gnome.org>
* man/default.session.5.in:
* man/gnome-session.1.in:
* man/gnome-wm.1:
Man page fixes from debian.
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: Version 2.16.0.
2006-08-30 Vincent Untz <vuntz@gnome.org>
* gnome-session/gnome-splash.png: update splash screen for 2.16
(really, this is the 2.14 one without the version number)
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: Version 2.15.92.
2006-08-08 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.15.92.
==================== 2.15.92 ====================
2006-08-08 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.15.91.
2006-07-26 Vincent Untz <vuntz@gnome.org>
* configure.in: add check for gnome-keyring
2006-07-24 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.15.91.
==================== 2.15.90 ====================
2006-07-24 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.15.90.
2006-07-11 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.15.5.
==================== 2.15.4 ====================
2006-07-11 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.15.4.
2006-07-11 Vincent Untz <vuntz@gnome.org>
* configure.in: really add dbus dependency
2006-07-11 Vincent Untz <vuntz@gnome.org>
* configure.in: require intltool 0.35.0
2006-06-25 Sergey Udaltsov <svu@gnome.org>
* configure.in, gnome-session/gsm-gsd.c: added DBUS dependency,
require gnome-settings-daemon.pc from pkgconfig,
now g-s-d is launched using DBUS interface.
2006-05-24 Kjartan Maraas <kmaraas@gnome.org>
* gnome-session/gsm-remove-client.c: (session_initialized):
Patch from Fedora to fix a critical warning. Closes bug #341115.
* po/ChangeLog: Fix a typo.
2006-05-10 Claudio Saavedra <csaavedra@alumnos.utalca.cl>
* configure.in: Use IT_PROG_INTLTOOL.
* po/LINGUAS: New file listing translations. (#337982).
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* MAINTAINERS: Update some.
* configure.in: Remove obsolete entry for no_NO
* po/no.po: And the translation.
2006-04-24 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.15.2.
==================== 2.15.1 ====================
2006-04-24 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.15.1.
2006-04-24 Vincent Untz <vuntz@gnome.org>
* configure.in: fix cosmetic typo. Fix bug #316677
2006-04-10 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.14.2.
==================== 2.14.1 ====================
2006-04-10 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.14.1.
2006-03-24 Tommi Vainikainen <thv@iki.fi>
* configure.in (ALL_LINGUAS): Added Dzongkha (dz).
2006-03-20 Vladimer Sichinava <vlsichinava@gmail.com>
* configure.in: Added "ka" (Georgian) to ALL_LINGUAS
2006-03-13 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.14.1.
==================== 2.14.0 ====================
2006-03-13 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.14.0.
2006-02-27 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.92.
==================== 2.13.92 ====================
2006-02-27 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.13.92.
2006-02-25 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: Add "zh_HK" to ALL_LINGUAS.
2006-02-13 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.92.
==================== 2.13.91 ====================
2006-02-13 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.13.91.
2006-01-27 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.91.
==================== 2.13.90 ====================
2006-01-27 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.13.90.
2005-01-16 Rodrigo Moya <rodrigo@novell.com>
* gnome-session/save.c (read_desktop_entries_in_dir): fixed patching
conflict.
2006-01-16 Rodrigo Moya <rodrigo@novell.com>
* gnome-session/startup-programs.c:
* gnome-session/session-properties-capplet.[ch]:
* gnome-session/save.c: implement program autostart with .desktop
files in known directories.
* configure.in: require gnome-desktop-2.0.
2006-01-16 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.90.
==================== 2.13.5 ====================
2006-01-16 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README: Version 2.13.5.
2006-01-06 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.13.5.
==================== 2.13.4 ====================
2006-01-06 Vincent Untz <vuntz@gnome.org>
* NEWS:
* README:
* configure.in: Version 2.13.4.
2005-12-15 Elijah Newren <newren@gmail.com>
* configure.in: Uh, we're at version 2.13.3 now, not 2.12.1
2005-11-04 Thomas Wood <thos@gnome.org>
* gnome-session/gnome-splash.png: 2.13 development splash
2005-09-24 Erdal Ronahi <erdal.ronahi@gmail.com>
* configure.in: Added "ku" (Kurdish) to ALL_LINGUAS
2005-09-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.12.1.
==================== 2.12.0 ====================
2005-09-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.12.0.
2005-08-09 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.11.92.
==================== 2.11.91 ====================
2005-08-09 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.11.91.
2005-07-26 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.11.91
==================== 2.11.90 ====================
2005-07-26 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.11.90
2005-07-25 Mark McLoughlin <mark@skynet.ie>
Remove gnome-smproxy. See:
http://mail.gnome.org/archives/desktop-devel-list/2005-July/msg00527.html
* smproxy/*: remove.
* Makefile.am: remove smproxy from SUBDIRS.
* configure.in: remove smproxy.
* README: remove mention of smproxy.
* man/: remove smproxy manpages.
2005-07-03 Aivars Kalvans <aivars.kalvans@inbox.lv>
* configure.in: smproxy requires glib-2.0, does not require libgnome
* smproxy/save.c: (WriteProxyFile):
* smproxy/smproxy.c: (ProxySaveYourselfPhase2CB), (main):
Fix memory leaks, remove libgnome dependency. Closes bug#308205.
2005-06-01 Christian Rose <menthos@menthos.com>
* configure.in: Added "hy" to ALL_LINGUAS.
2005-05-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.11.1.
==================== 2.11.1 ====================
2005-05-17 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.11.1.
2005-05-17 Kjartan Maraas <kmaraas@gnome.org>
* gnome-session/headers.h:
* gnome-session/ice.c: (startup_clean_ice), (initialize_ice),
(read_authfile): Clean up the ICE code slightly. Patch from Iain
Holmes. Closes bug #154042.
2005-05-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: bump version to 2.11.1 - 2.10.x
releases continue on the gnome-2-10 branch.
2005-03-31 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-07 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.10.1.
==================== 2.10.0 ====================
2005-03-07 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.10.0.
2005-03-03 Adi Attar <aattar@cvs.gnome.org>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-01-25 Kjartan Maraas <kmaraas@gnome.org>
* gnome-session/gnome-session.schemas.in: Improved string
from Bryan Clark. Closes bug #153910.
2005-01-11 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.9.5.
==================== 2.9.4 ====================
2005-01-11 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.9.4.
2005-01-10 Mark McLoughlin <mark@skynet.ie>
* configure.in: remove --reboot-command and
--halt-command options.
2004-12-02 Dwayne Bailey <dwayne@translate.org.za>
* configure.in: Added "zu" to ALL_LINGUAS.
2004-11-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.9.3.
==================== 2.9.2 ====================
2004-11-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.9.2.
2004-11-29 Christoffer Olsen <co@deworks.net>
* configure.in:
Generates gnome-session/session-properties.desktop.in from
AC_OUTPUT
2004-11-27 Dwayne Bailey <dwayne@translate.org.za>
* configure.in: Added "nso" to ALL_LINGUAS.
2004-11-09 Mark McLoughlin <mark@skynet.ie>
* configure.in: bump version to 2.9.1. 2.8.x
development continues on the gnome-2-8 branch.
2004-10-12 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.8.2.
==================== 2.8.1 ====================
2004-10-12 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.8.1.
2004-10-07 James Henstridge <james@jamesh.id.au>
* acinclude.m4: remove, since the only macro in it wasn't being
used anymore.
* Makefile.am: get rid of intltool stuff on "make distclean"
* configure.in: modernise configure script a bit.
* autogen.sh (REQUIRED_AUTOMAKE_VERSION): request Automake 1.7.
2004-09-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.8.1.
==================== 2.8.0 ====================
2004-09-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.8.0.
2004-09-10 Jakub Steiner <jimmac@ximian.com>
* gnome-session/gnome-splash.png: 2.8
2004-08-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.93.
==================== 2.7.92 ====================
2004-08-30 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.92.
2004-08-16 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add nb to ALL_LINGUAS.
2004-08-16 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.92.
==================== 2.7.91 ====================
2004-08-16 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.91.
2004-08-13 Gurban M. Tewekgeli <gmtavakkoli@yahoo.com>
* po/tk.po: Added Turkmen translation.
* configure.in: Added "tk" to ALL_LINGUAS.
2004-07-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.5.
==================== 2.7.4 ====================
2004-07-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.4.
2004-07-12 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne Nepali in ALL_LINGUAS
2004-07-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.4.
==================== 2.7.3 ====================
2004-07-06 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.3.
2004-05-31 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.7.2.
==================== 2.7.1 ====================
2004-05-31 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.7.1.
2004-05-13 Mark McLoughlin <mark@skynet.ie>
* configure.in: bump version to 2.7.1. 2.6.x development
is now on the gnome-2-6 branch.
2004-04-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.2
==================== 2.6.1 ====================
2004-04-19 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.1.
2004-04-09 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
2004-04-09 John C Barstow <jbowtie@amathaine.com>
* configure.in: Added "mi" to ALL_LINGUAS.
2004-03-31 Christian Rose <menthos@menthos.com>
* configure.in: Added "af" to ALL_LINGUAS.
2004-03-22 Mark McLoughlin <mark@skynet.ie>
* configure.in: post-release bump to 2.6.1
==================== 2.6.0 ====================
2004-03-22 Mark McLoughlin <mark@skynet.ie>
* configure.in: Version 2.6.0.
2004-03-18 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "mr" for Marathi to ALL_LINGUAS.
2004-03-15 Alexander Winston <alexander.winston@comcast.net>
* configure.in: Added en_CA to ALL_LINGUAS.
==================== 2.5.92 ====================
2004-03-15 Mark McLoughlin <mark@skynet.ie>