-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
11183 lines (7319 loc) · 439 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-11-10 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-11-10 xfce
* xfce_theme/xfce_theme_draw.c: Backport latest changes from
gtk-xfce-engine-2.x
2002-11-10 xfce
* Makefile.in, aclocal.m4, configure, backdrops/Makefile.in,
cursors/Makefile.in, docs/Makefile.in, docs/html/Makefile.in,
docs/html/stylesheet-images/Makefile.in, docs/images/Makefile.in,
docs/sgml/Makefile.in, dt/Makefile.in, fonts/Makefile.in,
gdm/Makefile.in, icons/Makefile.in, libs/Makefile.in,
other/Makefile.in, palettes/Makefile.in, po/xfce.pot,
scripts/Makefile.in, sounds/Makefile.in, textures/Makefile.in,
xfbd/Makefile.in, xfce/Makefile.in, xfce_theme/Makefile.in,
xfclock/Makefile.in, xfdiff/Makefile.in, xfdiff/icons/Makefile.in,
xfglob/Makefile.in, xfglob/icons/Makefile.in, xfgnome/Makefile.in,
xfmenu/Makefile.in, xfmouse/Makefile.in, xfpager/Makefile.in,
xfrun/Makefile.in, xfsamba/Makefile.in, xfsamba/icons/Makefile.in,
xfskin/Makefile.in, xfsound/Makefile.in, xftree/Makefile.in,
xftree/icons/Makefile.in, xfumed/Makefile.in,
xfumed/icons/Makefile.in, xfwm/Makefile.in: Checkpoint.
2002-10-31 edscott
* xfsamba/xfsamba.h: - update version
2002-10-31 edscott
* xfsamba/TODO: - notes on the pending bugs for cyrillic
characters.
2002-10-30 edscott
* xfsamba/: xfsamba.h, xfsamba_download.c, xfsamba_list.c,
xfsamba_masterresolve.c, xfsamba_mem.c, xfsamba_mkdir.c,
xfsamba_rm.c, xfsamba_upload.c: - bug fixes for the dos codepage
bug workaround
2002-10-23 xfce
* palettes/Redmond: [no log message]
2002-10-15 huysmans
* po/: nl.gmo, nl.po: Small (tiny) update to Dutch translation
2002-10-15 edscott
* xftree/icons/: dir_open_dot.xpm, dir_open_hidden.xpm,
dir_ro_open_dot.xpm, dir_ro_open_hidden.xpm: - fixed color code for
hidden files
2002-10-15 edscott
* xftree/icons/: dir_open_dot.xpm, dir_open_hidden.xpm,
dir_ro_open_dot.xpm, dir_ro_open_hidden.xpm: - better color code
for hidden files
2002-10-15 edscott
* xfglob/xfglob.c: - fixed about text
2002-10-15 edscott
* xftree/TODO: - some ideas for xftree2
2002-10-12 xfce
* po/es.gmo: [no log message]
2002-10-12 xfce
* xfce_theme/xfce_theme_draw.c: Fix backport problem.
2002-10-12 xfce
* xfce_theme/xfce_theme_draw.c: Fix a compilation problem with old
style enabled.
2002-10-05 xfce
* xfce_theme/xfce_theme_main.c: [no log message]
2002-10-05 xfce
* xfce_theme/: xfce_theme_draw.c, xfce_theme_main.c: Remove frame
in trough
2002-10-05 xfce
* xfce_theme/xfce_theme_draw.c: BAckport gtk-xfce-engine 2.x
drawing routine.
2002-09-30 edscott
* po/es.po: Fixes by Diego.
2002-09-26 edscott
* other/: xfce3rc.bg, xfce3rc.es, xfce3rc.es.in, xinitrc: - spanish
(from spain) translations
2002-09-26 edscott
* po/es.po: - corrections to po file (up to date to 3.8.16)
2002-09-26 mstaszyszyn
* libs/xfcolor.c: gtkrc error for old-style fixed
2002-09-26 mstaszyszyn
* docs/taskbar.txt, xfce/taskbar.c: option HidePanel added
2002-09-26 mstaszyszyn
* other/taskbarrc, xfce/taskbar.c: option HidePanel added
2002-09-12 xfce
* ChangeLog, xfce-3.8.18.lsm, libs/xfcolor.c, other/COPYING.in,
palettes/Default: Minor fixes before release.
2002-09-11 xfce
* libs/xfcolor.c, palettes/Default: [no log message]
2002-09-11 xfce
* libs/xfcolor.c, palettes/Default: [no log message]
2002-09-10 xfce
* xfce_theme/xfce_theme_draw.c: Revert changes in theme.
2002-09-09 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-09-02 xfce
* Makefile.am, Makefile.in: Replace "rpm -ta" with "rpmbuild -ta"
2002-09-01 xfce
* ChangeLog, libs/xpmext.c, other/xfce3rc.cs.in,
other/xfce3rc.de.in, other/xfce3rc.fr.in, other/xfce3rc.hu.in,
other/xfce3rc.in, other/xfce3rc.ja.in, other/xfce3rc.ko.in,
other/xfce3rc.nl.in, other/xfce3rc.sr.in, other/xfce3rc.uk.in,
other/xfce3rc.zh_CN.GB2312.in, other/xfce3rc.zh_TW.Big5.in,
po/cs.gmo, po/cs.po, po/xfce.pot, po/zh_TW.Big5.gmo,
po/zh_TW.Big5.po, xfwm/xfwm.c: Implement esetroot_pmap_id as
suggested by Thomas Leonard Update Czech translation by Rudolf Ulc
<rudolf.ulc@oku-st.cz> Small fixes
2002-09-01 xfce
* po/bg.gmo, po/bg.po, po/ca.po, po/cs.gmo, po/cs.po, po/da.gmo,
po/da.po, po/de.gmo, po/de.po, po/en_GB.po, po/es.gmo, po/es.po,
po/et.gmo, po/et.po, po/fi.po, po/fr.gmo, po/fr.po, po/gl.gmo,
po/gl.po, po/he.gmo, po/he.po, po/hu.gmo, po/hu.po, po/it.gmo,
po/it.po, po/ja.po, po/ms.gmo, po/ms.po, po/nl.gmo, po/nl.po,
po/pl.po, po/pt_BR.gmo, po/pt_BR.po, po/ro.gmo, po/ro.po, po/ru.po,
po/sk.po, po/sr.gmo, po/sr.po, po/sv.po, po/uk.gmo, po/uk.po,
po/zh.po, po/zh_CN.po, po/zh_TW.Big5.gmo, po/zh_TW.Big5.po,
xfdiff/Makefile.am, xfdiff/Makefile.in, xfdiff/icons/Makefile.am,
xfdiff/icons/Makefile.in: Fix a problem with xfdiff Makefile.am:x
2002-09-01 xfce
* libs/fileutil.c, po/et.gmo, po/xfce.pot, xfdiff/Makefile.in,
xfwm/builtins.c: Reset SIGCHLD to SIGDFL before execl() a child
process.
2002-08-31 edscott
* xftree/io.c: - uncomment a line which should not be commented
2002-08-31 edscott
* xftree/: io.c, xtree.c: - uncommented lines which should not be
commented.
2002-08-31 edscott
* xftree/xtree_mess.c: - fix a small bobo
2002-08-31 edscott
* xftree/xtree_cpy.c: - unplug the pipe clogging which causes a
hang in FreeBSD
2002-08-30 edscott
* xftree/xtree_mess.c: - remove debugging information output
2002-08-30 edscott
* xftree/: xtree_icons.c, xtree_mess.c: - save last -p option
2002-08-30 xfce
* libs/xfcolor.c, palettes/Default: [no log message]
2002-08-29 edscott
* xftree/: xtree.c, xtree_icons.c: - correct for compilation of
xfsamba
2002-08-29 edscott
* xftree/: xtree.c, xtree_functions.c, xtree_icons.c: - added -p
option to set icon level to: 0 = no icons at all 1 = basic icon
set, no scaling done 2 = extended icon set, no scaling done 3 =
extended icon set with scaling to font size
2002-08-29 edscott
* xftree/reg.c: - only remove stale entries from xtree.reg if
DISPLAY=:0.0
2002-08-29 edscott
* xftree/: io.c, xtree_rpm.c: - Make a clean compile in FreeBSD 4.6
2002-08-29 edscott
* xfdiff/Makefile.am: - Make a clean compile in freeBSD
2002-08-28 edscott
* xftree/io.c: - removed a debugging line
2002-08-28 xfce
* xfce_theme/xfce_theme_draw.c: BAckport gtk-xfce-theme
2002-08-27 edscott
* xftree/: gtk_exec.c, io.c, reg.c, xtree.c, xtree_mess.c: - fixed
a referencing null pointer bug in reg.c - fixed incorrect register
application parsing in gtk_exec.c
2002-08-26 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-08-26 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-08-26 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-08-26 xfce
* xfce_theme/xfce_theme_draw.c: Backport latest gtk-xfce-engine.
2002-08-26 peetervois
* po/et.po: Translations for 3.8.18
2002-08-24 xfce
* xfce_theme/xfce_theme_draw.c: Backport latest xfce_engine from
xfce4
2002-08-21 xfce
* palettes/Redmond: [no log message]
2002-07-22 xfce
* palettes/: Xfce-light, Xfce-light: [no log message]
2002-07-20 xfce
* palettes/Makefile.am, palettes/Makefile.in, palettes/Xfce-light,
po/xfce.pot: Add a new palette to match gtk-xfce-engine-2 serie
(and, yes, I like to share the same look across gtk+-1.2 and
gtk+-2.0 apps ;-)
2002-07-15 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-07-15 xfce
* xfce_theme/xfce_theme_draw.c: Change shadows
2002-07-14 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-07-07 edscott
* xfce/taskbar.c: - got rid of a gtk warning while moving the
panel.
2002-07-06 edscott
* xfce/configfile.c: - avoid a sigsegv when corrupt config file
found
2002-07-05 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.in,
backdrops/Makefile.in, cursors/Makefile.in, docs/Makefile.in,
docs/html/Makefile.in, docs/html/stylesheet-images/Makefile.in,
docs/images/Makefile.in, docs/sgml/Makefile.in, dt/Makefile.in,
fonts/Makefile.in, gdm/Makefile.in, icons/Makefile.in,
libs/Makefile.in, other/Makefile.in, palettes/Makefile.in,
po/he.gmo, po/he.po, po/xfce.pot, scripts/Makefile.in,
sounds/Makefile.in, textures/Makefile.in, xfbd/Makefile.in,
xfce/Makefile.in, xfce_theme/Makefile.in, xfclock/Makefile.in,
xfdiff/Makefile.in, xfdiff/icons/Makefile.in, xfglob/Makefile.in,
xfglob/icons/Makefile.in, xfgnome/Makefile.in, xfmenu/Makefile.in,
xfmouse/Makefile.in, xfpager/Makefile.in, xfrun/Makefile.in,
xfsamba/Makefile.in, xfsamba/icons/Makefile.in, xfskin/Makefile.in,
xfsound/Makefile.in, xftree/Makefile.in, xftree/icons/Makefile.in,
xfumed/Makefile.in, xfumed/icons/Makefile.in, xfwm/Makefile.in: Add
Hebrew locate by Solomon Gruber <piql7@yahoo.com>, migrate to
autoconf 1.6.2 and automake 2.53
2002-06-27 xfce
* libs/xfcolor.c: [no log message]
2002-06-24 mstaszyszyn
* xfce/: configfile.c, setup_cb.c, taskbar.c, taskbar.h: fixed
taskbar bug when 12 menus used
2002-06-20 edscott
* xftree/xtree_gui.c: - make sure iconname is not NULL before
calling set_icon().
2002-06-20 mstaszyszyn
* xfce/taskbar.c: FIX: remove taskjar entry when closing a window
2002-06-17 xfce
* po/xfce.pot: [no log message]
2002-06-14 xfce
* Makefile.in, aclocal.m4, configure, docs/taskbar.txt,
libs/Makefile.am, libs/Makefile.in, libs/fileutil.c,
libs/fileutil.h, other/Makefile.am, other/Makefile.in,
other/taskbarrc, po/xfce.pot, scripts/xfce_setup.in,
xfce/configfile.c, xfce/taskbar.c, xfce/taskbar.h, xfce/xfce.c: Add
taskbar update by Marcin Staszyszyn <mstaszyszyn@heiler.com>
2002-06-13 xfce
* depcomp: Add depcomp for automake 1.6
2002-06-13 xfce
* Makefile.in, aclocal.m4, compile, configure, missing,
backdrops/Makefile.in, cursors/Makefile.in, docs/Makefile.in,
docs/html/Makefile.in, docs/html/stylesheet-images/Makefile.in,
docs/images/Makefile.in, docs/sgml/Makefile.in, dt/Makefile.in,
fonts/Makefile.in, gdm/Makefile.in, icons/Makefile.in,
libs/Makefile.in, other/Makefile.in, palettes/Makefile.in,
po/hu.gmo, po/it.gmo, po/it.po, scripts/Makefile.in,
sounds/Makefile.in, textures/Makefile.in, xfbd/Makefile.in,
xfce/Makefile.in, xfce_theme/Makefile.in, xfclock/Makefile.in,
xfdiff/Makefile.in, xfdiff/icons/Makefile.in, xfglob/Makefile.in,
xfglob/icons/Makefile.in, xfgnome/Makefile.in, xfmenu/Makefile.in,
xfmouse/Makefile.in, xfpager/Makefile.in, xfrun/Makefile.in,
xfsamba/Makefile.in, xfsamba/icons/Makefile.in, xfskin/Makefile.in,
xfsound/Makefile.in, xftree/Makefile.in, xftree/icons/Makefile.in,
xfumed/Makefile.in, xfumed/icons/Makefile.in, xfwm/Makefile.in:
Update Italian translation by Yuri Bongiorno
<yuri.bongiorno@logika.com> Autoconf 1.6
2002-06-09 xfce
* config.guess, config.sub, ltmain.sh: libtoolize
2002-06-09 xfce
* Makefile.in, aclocal.m4, configure, backdrops/Makefile.in,
cursors/Makefile.in, docs/html/Makefile.in,
docs/html/stylesheet-images/Makefile.in, docs/images/Makefile.in,
docs/sgml/Makefile.in, fonts/Makefile.in, icons/Makefile.in,
libs/Makefile.in, other/Makefile.in, po/hu.po, scripts/Makefile.in,
sounds/Makefile.in, textures/Makefile.in, xfbd/Makefile.in,
xfce/Makefile.in, xfce_theme/Makefile.in, xfclock/Makefile.in,
xfdiff/Makefile.in, xfdiff/icons/Makefile.in, xfglob/Makefile.in,
xfglob/icons/Makefile.in, xfgnome/Makefile.in, xfmenu/Makefile.in,
xfmouse/Makefile.in, xfpager/Makefile.in, xfrun/Makefile.in,
xfsamba/Makefile.in, xfsamba/icons/Makefile.in,
xfsound/Makefile.in, xftree/Makefile.in, xftree/icons/Makefile.in,
xfumed/Makefile.in, xfumed/icons/Makefile.in, xfwm/Makefile.in:
Update Hungarian translation by Horn Gabor <Horn.Gabor@aktiv.co.hu>
2002-06-06 xfce
* libs/xfcolor.c: [no log message]
2002-06-05 xfce
* libs/xfcolor.c: [no log message]
2002-06-05 xfce
* palettes/Default, libs/xfcolor.c: Slightly change default color
theme
2002-06-03 xfce
* palettes/Kindaker, palettes/Makefile.am, palettes/Makefile.in,
xfwm/resize.c: [no log message]
2002-05-31 xfce
* libs/xfcolor.c: [no log message]
2002-05-31 xfce
* libs/xfcolor.c, palettes/Default: [no log message]
2002-05-24 xfce
* libs/constant.h, libs/xfcolor.c, palettes/Default: Remove
relative path in generated .gtkrc (gtk+-2.0 complains about this)
2002-05-22 xfce
* other/xfwmrc.in, other/xinitrc.in, xfwm/add_window.c,
xfwm/move.c, xfwm/screen.h, xfwm/style.c, xfwm/xfwm.h: Add
"AllowFreeMove" to style list in order to move title/borderless
windows using the Alt+Click shortcut
2002-05-22 xfce
* libs/constant.h, palettes/Default: Change default engine to
default gtk instead of xfce engine
2002-05-21 xfce
* palettes/Monkey: [no log message]
2002-05-16 xfce
* aclocal.m4, configure, libs/xfcolor.c, palettes/Default: [no log
message]
2002-05-16 xfce
* aclocal.m4, configure, configure.in, other/Makefile.in: Try to
fix the configure issue
2002-05-16 xfce
* aclocal.m4, configure, configure.in, other/Makefile.in,
po/nl.gmo, po/xfce.pot: Add mandatory check for autoconf 2.52
2002-05-15 xfce
* xfce/: taskbar.c, taskbar.h: Whoops, forgot to actually add the
code for the taskbar !
2002-05-15 xfce
* acconfig.h, config.h.in, configure, configure.in, xfce.spec,
libs/xfcolor.c, xfce/Makefile.am, xfce/Makefile.in, xfce/handle.h,
xfce/xfce.c, xfce/xfwm.c: Taskbar! Contributed by Staszyszyn,
Marcin <mstaszyszyn@heiler.com> ACtivate at compile time by using
--enable-taskbar
2002-05-11 edscott
* xfsamba/: xfsamba.c, xfsamba.h, xfsamba_download.c,
xfsamba_list.c, xfsamba_mkdir.c, xfsamba_rm.c, xfsamba_smblookup.c,
xfsamba_tar.c, xfsamba_upload.c: - modifications to take into
account changes in smaba 2.2.3
2002-05-03 huysmans
* docs/images/Makefile.am, docs/images/Makefile.in,
xfglob/icons/Makefile.am, xfglob/icons/Makefile.in,
xfwm/Makefile.am, xfwm/Makefile.in: fixed docs/images installation
and removed some trailing backslashes
2002-05-02 xfce
* xfce-3.8.18.lsm, palettes/Redmond: Minor updates
2002-04-30 xfce
* palettes/Redmond: [no log message]
2002-04-30 xfce
* palettes/Redmond: [no log message]
2002-04-30 xfce
* xfwm/move.c: Let move icons even for windows w/out title and
borders
2002-04-30 xfce
* palettes/Redmond: [no log message]
2002-04-29 xfce
* palettes/Redmond: [no log message]
2002-04-29 xfce
* aclocal.m4, config.h.in, configure, palettes/Makefile.am,
palettes/Makefile.in, palettes/Redmond, po/bg.gmo, po/cs.gmo,
po/da.gmo, po/de.gmo, po/es.gmo, po/et.gmo, po/fr.gmo, po/gl.gmo,
po/hu.gmo, po/ms.gmo, po/pt_BR.gmo, po/ro.gmo, po/sr.gmo,
po/uk.gmo, po/xfce.pot, po/zh_TW.Big5.gmo: Add a new palette
2002-04-29 edscott
* xfsamba/xfsamba.h, xftree/xtree_gui.h: [no log message]
2002-04-28 xfce
* ChangeLog, xfce-3.8.18.lsm: Update ChangeLog
2002-04-28 edscott
* xftree/xtree_functions.c: - Previous bug fix was somehow undone.
Causes sigsegv on startup.
2002-04-28 xfce
* configure, configure.in, xfce-3.8.16.lsm, xfce-3.8.18.lsm,
xfce.spec, other/COPYING.in, po/bg.gmo, po/bg.po, po/ca.gmo,
po/ca.po, po/cs.gmo, po/cs.po, po/da.gmo, po/da.po, po/de.gmo,
po/de.po, po/en_GB.gmo, po/en_GB.po, po/es.gmo, po/es.po,
po/et.gmo, po/et.po, po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po,
po/gl.gmo, po/gl.po, po/hu.gmo, po/hu.po, po/it.gmo, po/it.po,
po/ja.po, po/ms.gmo, po/ms.po, po/nl.gmo, po/nl.po, po/pl.gmo,
po/pl.po, po/pt_BR.gmo, po/pt_BR.po, po/ro.gmo, po/ro.po,
po/ru.gmo, po/ru.po, po/sk.gmo, po/sk.po, po/sr.gmo, po/sr.po,
po/sv.gmo, po/sv.po, po/uk.gmo, po/uk.po, po/xfce.pot, po/zh.gmo,
po/zh.po, po/zh_CN.gmo, po/zh_CN.po, po/zh_TW.Big5.gmo,
po/zh_TW.Big5.po, xfce/info.c, xfclock/xfclock_cb.c: Update
copyright date
2002-04-27 edscott
* xftree/xtree_gui.h: - version update
2002-04-26 edscott
* xfce.spec, xftree/xtree_tar.c: - fixed some bugs on tar expansion
for xftree
2002-04-23 edscott
* xfsamba/: xfsamba.h, xfsamba_gui.c, xfsamba_mem.c: - fixed the
segv bug when selecting with keyboard arrows.
2002-04-18 edscott
* xftree/xtree.c: getenv/putenv chagnes
2002-04-17 xfce
* xfce-3.8.16.lsm, po/sv.gmo, po/sv.po: Update Swedish xtion by
Joakim Andreasson <joakim.andreasson@gmx.net>
2002-04-15 xfce
* ChangeLog, configure, configure.in, xfce-3.8.14.lsm,
xfce-3.8.16.lsm, xfce.spec, other/Makefile.in, po/ms.gmo, po/ms.po,
po/xfce.pot: Prepare for 3.8.16 release
2002-04-15 xfce
* xfce/xfce.c: Put back colored screen buttons when "old-style" is
enabled
2002-04-15 xfce
* xfce/popup.c: Improve label alignment in popup menus
2002-04-15 xfce
* palettes/XLight, po/bg.gmo, other/xfce3rc.bg.in, po/bg.po,
po/zh_TW.Big5.gmo, po/zh_TW.Big5.po: Update xlations
2002-04-12 huysmans
* xfmenu/xfmenu.c: add /opt/kde3 to list of menu dirs
2002-04-08 huysmans
* po/: nl.gmo, nl.po: Updated translations for xfce-3.8.16 (?) 2nd
attempt
2002-04-08 huysmans
* po/nl.po: Updated translations for xfce-3.8.16 (?)
2002-04-08 edscott
* po/: es.gmo, es.po: - spanish translation update
2002-04-08 edscott
* po/: es.gmo, es.po: - spanish translation update
2002-04-08 xfce
* po/: bg.po, ca.po, cs.po, da.po, de.po, en_GB.po, es.po, et.po,
fi.po, fr.po, gl.po, hu.po, it.po, ja.po, ms.po, nl.po, pl.po,
pt_BR.po, ro.po, ru.po, sk.po, sr.po, sv.po, uk.po, zh.po,
zh_CN.po, bg.gmo, ca.gmo, cs.gmo, da.gmo, zh_TW.Big5.po, de.gmo,
en_GB.gmo, es.gmo, et.gmo, fi.gmo, fr.gmo, gl.gmo, hu.gmo, it.gmo,
ja.gmo, ms.gmo, nl.gmo, pl.gmo, pt_BR.gmo, ro.gmo, ru.gmo, sk.gmo,
sr.gmo, sv.gmo, uk.gmo, zh.gmo, zh_CN.gmo, zh_TW.Big5.gmo: make
update-po
2002-04-08 xfce
* configure, configure.in, other/Makefile.am, other/Makefile.in,
other/xfce3rc.bg, other/xfce3rc.bg.in, po/bg.gmo, po/bg.po: Add
Bulgarian translation by Rumen Bogdanovski <rbogdanovski@yahoo.com>
2002-04-08 peetervois
* po/et.po: All translated in todays CVS
2002-04-05 xfce
* po/: ms.gmo, ms.po: Update Malay translation by Harun Musa
<mharun@gmx.net>
2002-04-05 xfce
* po/: ms.gmo, ms.po: Update Malay translation by Harun Musa
<mharun@gmx.net>
2002-04-04 xfce
* xfce_theme/xfce_theme_draw.c: [no log message]
2002-04-03 xfce
* configure, configure.in, po/ja.gmo, po/ja.po, po/ms.po: Update
Japanese translation by Yosuke Nakajima <ynakajim@janis.or.jp> Add
Malay translation by Harun Musa <mharun@gmx.net>
2002-03-29 xfce
* palettes/: XLight, XLight: [no log message]
2002-03-29 xfce
* xfce/configfile.c, xfce/configfile.h, xfce/setup.c, xfce/setup.h,
xfce/xfce_main.c, xfce/xfwm.c, xfmenu/xfmenu.c, xfwm/read.c,
xfwm/xfwm.c: Include patch for Debian menu
2002-03-28 edscott
* xftree/: gtk_exec.c, reg.c, reg.h, xtree_gui.c: - included
program arguments in openwith dialog
2002-03-28 edscott
* xfce.spec: [no log message]
2002-03-28 edscott
* xftree/: xtree_cb.c, xtree_gui.c: - tweaks to the autotype
function
2002-03-28 edscott
* xftree/xtree_cpy.c: - fix the sigsegv on move of "real long"
filenames.
2002-03-28 edscott
* xftree/: xtree_dnd.c, xtree_functions.c, xtree_functions.h,
xtree_gui.c, xtree_pasteboard.c: - Use only WM_CLIENT_MACHINE for
rsync/scp determination
2002-03-26 xfce
* xfwm/: builtins.c, screen.h, themes.c, xfwm.c: Change internal
enum name
2002-03-25 xfce
* xfskin/Makefile.in: [no log message]
2002-03-25 xfce
* palettes/KStyle2: [no log message]
2002-03-25 xfce
* xfwm/themes.c: [no log message]
2002-03-25 xfce
* other/: xfce3rc.cs.in, xfce3rc.de.in, xfce3rc.fr.in,
xfce3rc.hu.in, xfce3rc.in, xfce3rc.ja.in, xfce3rc.ko.in,
xfce3rc.nl.in, xfce3rc.sr.in, xfce3rc.uk.in,
xfce3rc.zh_CN.GB2312.in, xfce3rc.zh_TW.Big5.in: Update defaults
2002-03-25 xfce
* xfsound/xfdsp.h: Use artswrapper instead of artsd to launch arts
daemon
2002-03-23 xfce
* Makefile.in, aclocal.m4, config.h.in, configure,
backdrops/Makefile.in, cursors/Makefile.in, docs/Makefile.in,
docs/html/Makefile.in, docs/html/stylesheet-images/Makefile.in,
docs/images/Makefile.in, docs/sgml/Makefile.in, dt/Makefile.in,
fonts/Makefile.in, gdm/Makefile.in, icons/Makefile.in,
libs/Makefile.in, other/Makefile.in, other/xfce3rc.cs.in,
other/xfce3rc.de.in, other/xfce3rc.fr.in, other/xfce3rc.hu.in,
other/xfce3rc.in, other/xfce3rc.ja.in, other/xfce3rc.ko.in,
other/xfce3rc.nl.in, other/xfce3rc.sr.in, other/xfce3rc.uk.in,
other/xfce3rc.zh_CN.GB2312.in, other/xfce3rc.zh_TW.Big5.in,
palettes/Makefile.in, po/et.gmo, po/xfce.pot, scripts/Makefile.in,
sounds/Makefile.in, textures/Makefile.in, xfbd/Makefile.in,
xfce/Makefile.in, xfce_theme/Makefile.in, xfclock/Makefile.in,
xfdiff/Makefile.in, xfdiff/icons/Makefile.in, xfglob/Makefile.in,
xfglob/icons/Makefile.in, xfgnome/Makefile.in, xfmenu/Makefile.in,
xfmouse/Makefile.in, xfpager/Makefile.in, xfrun/Makefile.in,
xfsamba/Makefile.in, xfsamba/icons/Makefile.in,
xfsound/Makefile.in, xftree/Makefile.in, xftree/icons/Makefile.in,
xfumed/Makefile.in, xfumed/icons/Makefile.in, xfwm/Makefile.in,
xfwm/xfwm.c: [no log message]
2002-03-22 xfce
* xfwm/: events.c, placement.c: Fix placement problem with some
apps.
2002-03-22 xfce
* xfwm/placement.c: [no log message]
2002-03-22 xfce
* xfwm/placement.c: [no log message]
2002-03-22 veerh01
* icons/: Makefile.am, rp7.xpm: [no log message]
2002-03-22 xfce
* xfwm/themes.c: [no log message]
2002-03-22 xfce
* xfwm/themes.c: [no log message]
2002-03-22 xfce
* xfce/xfwm.c, xfwm/themes.c: Completely change trench engine
2002-03-20 xfce
* libs/xfcolor.c, palettes/Default, xfwm/xfwm.c: [no log message]
2002-03-20 xfce
* libs/xfcolor.c, palettes/Default, xfwm/xfwm.c: [no log message]
2002-03-20 xfce
* palettes/SaltLake: [no log message]
2002-03-20 veerh01
* other/xinitrc.in: small addition -> xmodmap (commented though)
2002-03-20 xfce
* libs/xfcolor.c, palettes/Default: [no log message]
2002-03-19 edscott
* xfsamba/xfsamba.h: - version
2002-03-19 xfce
* palettes/Default, libs/xfcolor.c, xfwm/xfwm.c: [no log message]
2002-03-19 edscott
* xfsamba/xfsamba_gui.c: - fixed a bug when cancelling password
query.
2002-03-19 xfce
* xfce_theme/xfce_theme_draw.c, xfwm/themes.c: [no log message]
2002-03-19 edscott
* xfsamba/icons/Makefile.am: - another make rpm detail missing
2002-03-19 edscott
* xftree/Makefile.am: - another bit missing for make rpm
2002-03-19 edscott
* xftree/Makefile.am: - rpm build fix
2002-03-19 edscott
* po/POTFILES.in: - xftree and xfsamba files added.
2002-03-19 edscott
* xftree/xtree_cpy.c: - dialogs for ssh, scp and rsync in case they
are not found when requested.
2002-03-19 edscott
* xftree/xtree_gui.h, xfce.spec: - version
2002-03-19 edscott
* xftree/: TODO, xtree_gui.c: - menu modification
2002-03-19 edscott
* xftree/: TODO, xtree_cpy.c, xtree_cpy.h, xtree_dnd.c,
xtree_gui.c, xtree_mess.c, xtree_mess.h, xtree_pasteboard.c: -
details for pasting from xfsamba - rsync/rcp options
2002-03-18 xfce
* libs/xfcolor.c, backdrops/Default.xpm, palettes/Default: [no log
message]
2002-03-18 xfce
* backdrops/Default.xpm: [no log message]
2002-03-18 veerh01
* icons/playball.xpm: [no log message]
2002-03-18 veerh01
* xfskin/xfskin.1: mmmm Manual Pages
2002-03-18 xfce
* palettes/KStyle2: [no log message]
2002-03-18 xfce
* palettes/SoftBlue: [no log message]
2002-03-18 xfce
* palettes/SaltLake: [no log message]
2002-03-18 xfce
* po/: zh_CN.gmo, zh_CN.po: XFCE Chinese po file updated as per
submitted by merlin@turbolinux.com.cn
2002-03-18 xfce
* backdrops/: Makefile.am, Makefile.in, Metal-blue.jpg: [no log
message]
2002-03-18 veerh01
* xfskin/: ChangeLog, xfskin, xfskin.in: added checkbox for
win-engine support
2002-03-15 veerh01
* Makefile.in, aclocal.m4, config.h.in, configure,
backdrops/Blue.list, backdrops/Makefile.in,
backdrops/Toulouse.list, cursors/Makefile.in, docs/Makefile.in,
docs/html/Makefile.in, docs/html/stylesheet-images/Makefile.in,
docs/images/Makefile.in, docs/sgml/Makefile.in, dt/Makefile.in,
fonts/Makefile.in, gdm/Makefile.in, icons/Makefile.in,
libs/Makefile.in, other/Makefile.in, palettes/Makefile.in,
scripts/Makefile.in, scripts/startxfce, scripts/xfce_setup,
scripts/xfce_upgrade, scripts/xfhelp, sounds/Makefile.in,
textures/Makefile.in, xfbd/Makefile.in, xfce/Makefile.in,
xfce_theme/Makefile.in, xfclock/Makefile.in, xfdiff/Makefile.in,
xfdiff/icons/Makefile.in, xfglob/Makefile.in,
xfglob/icons/Makefile.in, xfgnome/Makefile.in, xfmenu/Makefile.in,
xfmouse/Makefile.in, xfpager/Makefile.in, xfrun/Makefile.in,
xfsamba/Makefile.in, xfsamba/icons/Makefile.in,
xfsound/Makefile.in, xftree/Makefile.in, xftree/icons/Makefile.in,
xfumed/Makefile.in, xfumed/icons/Makefile.in, xfwm/Makefile.in: [no
log message]
2002-03-15 xfce
* xfwm/themes.c: [no log message]
2002-03-15 veerh01
* xfskin/: ChangeLog, xfskin, xfskin.in: xfskin up to 0.2.2,
including window-engine support!!
2002-03-15 veerh01
* xfskin/: xfskin, xfskin.in: xfskin updated
2002-03-15 xfce
* palettes/Win3: [no log message]
2002-03-15 xfce
* palettes/Win: [no log message]
2002-03-15 veerh01
* other/: Makefile.in, xfce3rc.cs.in, xfce3rc.de.in, xfce3rc.fr.in,
xfce3rc.hu.in, xfce3rc.in, xfce3rc.ja.in, xfce3rc.ko.in,
xfce3rc.nl.in, xfce3rc.sr.in, xinitrc, xinitrc.mwm: sorry, forgot
lines in xfce3rc
2002-03-15 edscott
* xfsamba/xfsamba_gui.c: - initial default view set to 2
2002-03-15 edscott
* xftree/: xtree_cb.c, xtree_gui.c: - corrected argument processing
for cb_autotype and doubleclick.
2002-03-15 xfce
* xfwm/xfwm.c, other/xfce3rc.cs.in, other/xfce3rc.de.in,
other/xfce3rc.fr.in, other/xfce3rc.hu.in, other/xfce3rc.in,
other/xfce3rc.ja.in, other/xfce3rc.ko.in, other/xfce3rc.nl.in,
other/xfce3rc.sr.in, other/xfce3rc.uk.in,
other/xfce3rc.zh_CN.GB2312.in, other/xfce3rc.zh_TW.Big5.in: Change
defaults
2002-03-15 xfce
* xfce_theme/xfce_theme_draw.c, xfwm/themes.c: [no log message]
2002-03-15 veerh01
* Makefile.am, configure, configure.in, other/xfce3rc.cs.in,
other/xfce3rc.de.in, other/xfce3rc.fr.in, other/xfce3rc.hu.in,
other/xfce3rc.in, other/xfce3rc.ja.in, other/xfce3rc.ko.in,
other/xfce3rc.nl.in, other/xfce3rc.sr.in: adding xfskin to the make
procedure
2002-03-15 veerh01
* xfskin/: Makefile.am, xfskin.1: [no log message]
2002-03-15 veerh01
* other/xfwmrc.in: [no log message]
2002-03-15 xfce
* backdrops/Default.xpm: [no log message]
2002-03-15 edscott
* xfsamba/: TODO, xfsamba_gui.c: - details for freeBSD. Discovered
a crash in freeBSD, not yet fixed.
2002-03-15 edscott
* xfsamba/Makefile.am: - Slight modifications for error free
compile in FreeBSD
2002-03-14 edscott
* xftree/xtree_pasteboard.c: - mistake in new pasteboard format
corrected