summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 8f120020d205c9c9e639bfc67f0812e157548425 (plain)
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
2007-11-01 18:41  anssi

	* Makefile.config, NEWS: 0.38

2007-10-30 22:33  Keld Jørn Simonsen <keld at dkuug.dk>

	* po/da.po: updates

2007-10-28 18:42  anssi

	* NEWS, lib/Xconfig/proprietary.pm: handle fglrx_dri.so handled by
	  alternatives

2007-10-17 20:40  Arpad Biro <biro_arpad at yahoo.com>

	* po/ru.po: update by Alexander

2007-10-08 15:08  Pixel <pixel at mandriva.com>

	* NEWS, lib/keyboard.pm: - display message This setting will be
	  activated after the installation."
	  only during installation

2007-10-04 17:17  Pixel <pixel at mandriva.com>

	* NEWS: fix typo

2007-10-04 17:05  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.37

2007-10-04 17:05  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: - if we probe a monitor EISA_ID but
	  we don't have corresponding
	  HorizSync/VertRefresh, we must not the monitor info
	  
	  yet another regression introduced when modifying is_valid() for
	  automatic
	  resolution

2007-10-04 16:58  Olivier Blin <oblin at mandriva.com>

	* NEWS, lib/Xconfig/proprietary.pm: when checking dkms module
	  packages, check that modules are either available in urpmi media,
	  or already installed (fix detection in live)

2007-10-04 08:50  Pixel <pixel at mandriva.com>

	* NEWS: add the bug number

2007-10-04 08:09  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.36

2007-10-04 08:09  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/main.pm, lib/Xconfig/resolution_and_depth.pm,
	  lib/Xconfig/xfree.pm: - better fix for typo in 0.32: don't
	  wrongly default to "automatic" resolution
	  when creating xorg.conf (in non --auto)

2007-10-03 16:22  Thierry Vignaud <tvignaud at mandriva.com>

	* NEWS: typo fix

2007-10-03 16:22  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config, NEWS: 0.35

2007-10-03 16:21  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: Generated by cvs2cl the 03_Oct

2007-10-03 15:43  Thierry Vignaud <tvignaud at mandriva.com>

	* po/es.po: update (Fabián Mandelbaum)

2007-10-03 15:43  Thierry Vignaud <tvignaud at mandriva.com>

	* po/es.po: update (Fabián Mandelbaum)

2007-10-01 17:40  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config, NEWS: 0.34

2007-10-01 17:39  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: Generated by cvs2cl the 01_Oct

2007-10-01 17:39  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: std changelog aliases

2007-10-01 17:39  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: std changelog aliases

2007-09-30 00:43  anssi

	* po/fi.po: Update Finnish translation.

2007-09-29 16:49  Karl Ove Hufthammer <karl at huftis.org>

	* po/nn.po: Updated Norwegian Nynorsk translation.

2007-09-28 20:17  Olivier Blin <oblin at mandriva.com>

	* Makefile.config, NEWS: 0.33

2007-09-28 16:21  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: - fix typo in 0.32: don't wrongly
	  default to "automatic" resolution when
	  creating xorg.conf (in non --auto)

2007-09-28 15:21  Olivier Blin <oblin at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm, lib/mouse.pm: add support for
	  x11-driver-input-vboxmouse when inside a VirtualBox guest

2007-09-28 15:13  Olivier Blin <oblin at mandriva.com>

	* lib/mouse.pm: make mice list dynamic, since it probes pci bus

2007-09-28 01:36  Willy Sudiarto Raharjo <willysr at gmail.com>

	* po/id.po: Update Indonesian Translations

2007-09-26 17:52  acelli

	* po/it.po: update translation for Italian

2007-09-26 14:59  ybando

	* po/ja.po: Japanese translation updated.

2007-09-26 14:23  Thierry Vignaud <tvignaud at mandriva.com>

	* po/tr.po: restore a translation

2007-09-26 14:18  Thierry Vignaud <tvignaud at mandriva.com>

	* po/tr.po: restore deleted strings

2007-09-26 13:27  guclu

	* po/tr.po: update translation for Turkish

2007-09-26 13:21  Tomasz Bednarski <tbednarski at mandrivalinux.pl>

	* po/pl.po: update

2007-09-26 13:00  guclu

	* po/tr.po: update translation for Turkish

2007-09-26 11:51  Thierry Vignaud <tvignaud at mandriva.com>

	* po/cy.po: update (Rhoslyn Prys)

2007-09-26 11:47  mmodem

	* po/pt.po: up

2007-09-26 11:34  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/proprietary.pm: - we don't
	  set ModulesPath to DRI_GLX_SPECIAL value, so we must read it
	  differently so that Xconfig::various::info() is correct (#31326)

2007-09-26 11:32  Thierry Vignaud <tvignaud at mandriva.com>

	* po/ko.po: revert a wrong bit

2007-09-26 11:26  Thierry Vignaud <tvignaud at mandriva.com>

	* po/ko.po: update (metq.com>)

2007-09-26 10:41  mmodem

	* po/pt.po: up

2007-09-26 10:10  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.32

2007-09-26 10:10  Pixel <pixel at mandriva.com>

	* lib/Xconfig/monitor.pm: add a log

2007-09-26 10:08  Pixel <pixel at mandriva.com>

	* NEWS: do log the typo fix

2007-09-26 10:04  Pixel <pixel at mandriva.com>

	* lib/Xconfig/resolution_and_depth.pm: revert debug code

2007-09-26 10:02  Pixel <pixel at mandriva.com>

	* NEWS: new feature requires monitor-edid 1.12

2007-09-26 10:02  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: - monitor-probe-using-X can now
	  return EDIDs. if Xorg find an EDID (whereas
	  monitor-get-edid-using-vbe failed), defaults to "Plug'n Play"
	  monitor (ie
	  let Xorg do things automatically) instead of
	  good_default_monitor.

2007-09-26 02:02  Funda Wang <fundawang at linux.net.cn>

	* po/et.po: Updated et translation

2007-09-26 02:00  Funda Wang <fundawang at linux.net.cn>

	* po/zh_CN.po: Updated zh_CN translation

2007-09-25 23:22  kamberd

	* po/he.po: update translation for Hebrew

2007-09-25 21:25  Wanderlei Antonio Cavassin <cavassin at mandriva.com>

	* po/pt_BR.po: pt_BR translations

2007-09-25 20:55  Arpad Biro <biro_arpad at yahoo.com>

	* po/hu.po: update

2007-09-25 20:46  Reinout van Schouwen <reinout at cs.vu.nl>

	* po/nl.po: * 2007-09-25 Reinout van Schouwen <reinouts@gnome.org>
	  
	  - nl.po : UPdated Dutch translation

2007-09-25 20:38  jure

	* po/sl.po: Updated Slovenian translation

2007-09-25 20:34  jure

	* po/sl.po: Updated Slovenian translation

2007-09-25 20:30  Michal Bukovjan <bukovjan at mbox.dkm.cz>

	* po/cs.po: Updated Czech translation.

2007-09-25 20:27  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config, NEWS: 0.31

2007-09-25 20:26  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: Generated by cvs2cl the 25_Sep

2007-09-25 19:55  Thierry Vignaud <tvignaud at mandriva.com>

	* po/fr.po: update

2007-09-25 19:54  Thierry Vignaud <tvignaud at mandriva.com>

	* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
	  po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
	  po/da.po, po/de.po, po/drakx-kbd-mouse-x11.pot, po/el.po,
	  po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po,
	  po/fr.po, po/fur.po, po/ga.po, po/gl.po, po/he.po, po/hi.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/ky.po, po/lt.po, po/ltg.po, po/lv.po, po/mk.po,
	  po/mn.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/nn.po,
	  po/pa_IN.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
	  po/sc.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po,
	  po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po,
	  po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po,
	  po/zh_CN.po, po/zh_TW.po: sync with code

2007-09-25 19:51  Thierry Vignaud <tvignaud at mandriva.com>

	* lib/Xconfig/main.pm, lib/Xconfig/monitor.pm, po/af.po, po/am.po,
	  po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/drakx-kbd-mouse-x11.pot, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po,
	  po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po,
	  po/lt.po, po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po,
	  po/mt.po, po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po,
	  po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po,
	  po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po,
	  po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: add
	  context for "Monitor" (#33773)

2007-09-25 19:55  Thierry Vignaud <tvignaud at mandriva.com>

	* po/fr.po: update

2007-09-25 19:54  Thierry Vignaud <tvignaud at mandriva.com>

	* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
	  po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
	  po/da.po, po/de.po, po/drakx-kbd-mouse-x11.pot, po/el.po,
	  po/eo.po, po/es.po, po/et.po, po/eu.po, po/fa.po, po/fi.po,
	  po/fr.po, po/fur.po, po/ga.po, po/gl.po, po/he.po, po/hi.po,
	  po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
	  po/ko.po, po/ky.po, po/lt.po, po/ltg.po, po/lv.po, po/mk.po,
	  po/mn.po, po/ms.po, po/mt.po, po/nb.po, po/nl.po, po/nn.po,
	  po/pa_IN.po, po/pl.po, po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po,
	  po/sc.po, po/sk.po, po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po,
	  po/sv.po, po/ta.po, po/tg.po, po/th.po, po/tl.po, po/tr.po,
	  po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po, po/wa.po,
	  po/zh_CN.po, po/zh_TW.po: sync with code

2007-09-25 19:51  Thierry Vignaud <tvignaud at mandriva.com>

	* lib/Xconfig/main.pm, lib/Xconfig/monitor.pm, po/af.po, po/am.po,
	  po/ar.po, po/az.po, po/be.po, po/bg.po, po/bn.po, po/br.po,
	  po/bs.po, po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po,
	  po/drakx-kbd-mouse-x11.pot, po/el.po, po/eo.po, po/es.po,
	  po/et.po, po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po,
	  po/ga.po, po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po,
	  po/id.po, po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po,
	  po/lt.po, po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po,
	  po/mt.po, po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po,
	  po/pt.po, po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po,
	  po/sl.po, po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po,
	  po/tg.po, po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po,
	  po/uz@Latn.po, po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: add
	  context for "Monitor" (#33773)

2007-09-25 14:51  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.30

2007-09-25 14:44  Pixel <pixel at mandriva.com>

	* lib/Xconfig/resolution_and_depth.pm: - select "Automatic"
	  resolution if it was previously chosen
	  - gray Depth widgets when "Automatic" is selected

2007-09-25 14:15  Pixel <pixel at mandriva.com>

	* lib/Xconfig/monitor.pm: oops, revert debug code

2007-09-25 14:12  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: - when user asks for "Plug'n Play",
	  silently default to Xorg auto-detection
	  when we fail to auto-detect

2007-09-25 14:01  Pixel <pixel at mandriva.com>

	* lib/Xconfig/main.pm, lib/Xconfig/resolution_and_depth.pm,
	  lib/Xconfig/xfree.pm: - add support for "Automatic" resolution
	  (aka "let xorg do everything")

2007-09-25 13:58  Pixel <pixel at mandriva.com>

	* lib/Xconfig/various.pm: cleanup (and prepare for next commits)

2007-09-25 13:30  Pixel <pixel at mandriva.com>

	* lib/Xconfig/main.pm: - cleanup
	  - don't export_to_install_X unset things
	  (will help for next commits)

2007-09-21 12:42  Olivier Blin <oblin at mandriva.com>

	* Makefile.config, NEWS: 0.29

2007-09-21 11:28  Olivier Blin <oblin at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: unload drivers loaded by
	  monitor-probe-using-X (fix fglrx usage when harddrake probes
	  using X and loads radeon driver)

2007-09-20 18:42  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.28

2007-09-20 18:40  Pixel <pixel at mandriva.com>

	* NEWS, lib/mouse.pm: - when using evdev for mice, ensure it
	  doesn't match a keyboard
	  (eg: in case of a mouse+keyboard combo) (#32905)

2007-09-20 07:03  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: - fix regression in 0.24: remove
	  bogus duplicates in monitors tree (#33778)

2007-09-20 04:47  Funda Wang <fundawang at linux.net.cn>

	* po/cy.po: Updated cy translation

2007-09-19 17:40  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.27

2007-09-19 13:43  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm, lib/mouse.pm: - for evdev configured
	  mice, specify bustype
	  (useful for "Macintosh mouse button emulation" which has same
	  vendor/product
	  as "AT Translated Set 2 keyboard")
	  (need drakxtools-backend 10.4.203)

2007-09-18 08:27  Michal Bukovjan <bukovjan at mbox.dkm.cz>

	* po/cs.po: Updated Czech translation.

2007-09-17 13:58  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.26

2007-09-15 19:55  Reinout van Schouwen <reinout at cs.vu.nl>

	* po/nl.po: * 2007-09-15 Reinout van Schouwen <reinouts@gnome.org>
	  
	  - nl.po : Updated Dutch translation

2007-09-15 17:04  anssi

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/proprietary.pm: Handle the
	  new fglrx-hd2000 alternative driver.

2007-09-14 13:18  Per Øyvind Karlsen <peroyvind at mandriva.org>

	* po/nb.po: completed translation

2007-09-13 21:09  acelli

	* po/it.po: update translation for Italian

2007-09-11 20:57  Arpad Biro <biro_arpad at yahoo.com>

	* po/hu.po: update

2007-09-11 20:49  Wanderlei Antonio Cavassin <cavassin at mandriva.com>

	* po/pt_BR.po: updated pt_BR translation

2007-09-10 07:31  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.25

2007-09-10 07:31  Pixel <pixel at mandriva.com>

	* NEWS: - in the list of available Xorg drivers, add "Driver" from
	  Cards+
	  (will ease the maintainance of the list of drivers in
	  Xconfig/card.pm)
	  
	  (see previous commit in card.pm)

2007-09-10 07:29  Pixel <pixel at mandriva.com>

	* lib/Xconfig/card.pm: - in the list of available Xorg drivers, add
	  "Driver" from Cards+
	  (will ease the maintainance of the list of drivers in
	  Xconfig/card.pm)

2007-09-09 10:50  jure

	* po/sl.po: Updated Slovenian translation

2007-09-07 12:31  Tomasz Bednarski <tbednarski at mandrivalinux.pl>

	* po/pl.po: update

2007-09-07 10:40  Pixel <pixel at mandriva.com>

	* NEWS, lib/mouse.pm: - minimal support for allowing to choose
	  evdev on all mice

2007-09-07 09:53  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.24

2007-09-07 09:52  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: revert titi commit which added XFS
	  configuration again.
	  
	  AFAIK, there is no reason to need XFS.
	  as for
	  http://archives.mandrivalinux.com/cooker/2007-07/msg04653.php,
	  it's
	  simply the result of a badly configured X fontpath. We just have
	  to ensure
	  upgrades go smoothly. (nb: XFdrake do not *remove* existing XFS
	  configuration
	  from xorg.conf, it simply to not put one when starting from
	  scratch)

2007-09-06 07:21  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/monitor.pm: - keep the order from MonitorsDB
	  file
	  (allows "Flat Panel 800x600" to be before "Flat Panel 1024x768")
	  (needs a nicely sorted MonitorsDB though)

2007-09-06 07:20  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: - fix default_headers when XFS is
	  installed
	  
	  (ie fixtitypo)
	  (and do we really want to configure for XFS even if it is not
	  enabled?)

2007-09-06 06:37  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.23

2007-09-06 06:37  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/test.pm: - do not start xfs for the test
	  (#33219)

2007-08-29 17:20  nbauer

	* po/de.po: Update German translation (Nicolas Bauer)

2007-08-27 14:32  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.22

2007-08-27 13:36  anssi

	* NEWS, lib/Xconfig/proprietary.pm: handle the renamed proprietary
	  ati driver (ati => x11-driver-video-fglrx)

2007-08-27 13:31  anssi

	* NEWS, lib/Xconfig/card.pm: - use standard.conf as default gl_conf
	  alternative
	  - do not add additional libglx ModulePaths for nvidia anymore

2007-08-27 11:54  Pixel <pixel at mandriva.com>

	* lib/Xconfig/various.pm: (setupFB) don't die if no bootloader is
	  configured
	  (mostly for auto_installs in drakx-in-chroot with broken pci
	  detection)

2007-08-21 18:02  Shiva Huang <blueshiva at giga.net.tw>

	* po/zh_TW.po: updated po file

2007-08-21 12:55  Thierry Vignaud <tvignaud at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: do configure XFS if installed

2007-08-21 12:45  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: Generated by cvs2cl the 21_Aug

2007-08-14 13:25  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: use -rBASE for svn export in order to please blino by
	  making sure local changes do not got exported

2007-08-14 13:25  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: use -rBASE for svn export in order to please blino by
	  making sure local changes do not got exported

2007-08-14 09:26  Olivier Blin <oblin at mandriva.com>

	* NEWS, lib/Xconfig/card.pm: add avivo in the Xorg drivers list

2007-08-10 21:01  Inigo Salvador Azurmendi <xalba at euskalnet.net>

	* po/eu.po: update translation for basque (euskara)

2007-08-10 19:07  Inigo Salvador Azurmendi <xalba at euskalnet.net>

	* po/eu.po: update translation for basque (euskara)

2007-08-09 19:23  Pixel <pixel at mandriva.com>

	* lib/Xconfig/card.pm: fix typo (thanks to Anssi Hannula)

2007-08-09 08:57  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: - when removing/replacing an
	  InputDevice section, ensure we remove the
	  corresponding entry in ServerLayout. ie do not rely on
	  InputDevice sections
	  to use XFdrake-compatible Identifiers (as suggested by fcrozat)

2007-08-09 08:27  Pixel <pixel at mandriva.com>

	* lib/Xconfig/card.pm: perl_checker compliance

2007-08-09 08:25  Pixel <pixel at mandriva.com>

	* lib/Xconfig/card.pm: as suggested by Anssi, do run
	  update-alternatives even if current alternatives
	  is the wanted one to ensure the alternative is switched to manual

2007-08-08 19:43  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.21

2007-08-08 19:42  Pixel <pixel at mandriva.com>

	* NEWS, lib/keyboard.pm: - adapt to kbd instead of console-tools:
	  s/kmap/map/

2007-08-08 19:42  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/proprietary.pm: - handle
	  nvidia-current instead of nvidia97xx (thanks to Anssi)
	  - handle x11-driver-video-$nvidia instead of $nvidia
	  
	  nb: pkg_name_for_Driver2() has been dropped, and
	  pkgs_for_Driver2() arguments
	  have changed. this allows simplifying install::steps, but causes
	  incompatibility

2007-08-07 13:26  Marek Laane <bald at starman.ee>

	* po/et.po: Updated Estonian translation.

2007-08-07 08:23  ybando

	* po/ja.po: Japanese translation updated.

2007-08-03 17:08  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.20

2007-08-03 17:08  Pixel <pixel at mandriva.com>

	* lib/Xconfig/main.pm, lib/Xconfig/xfree.pm: since we don't
	  configure X to use xfs, we don't need to specify a safety
	  fontpath (was useful when xfs was failing)

2007-08-02 14:52  Pixel <pixel at mandriva.com>

	* NEWS, lib/mouse.pm: - fix detection of touchpad on some kernels
	  (#31584)
	  (need drakxtools-backend >= 10.4.145)
	  
	  issue was:
	  
	  H: Handlers=event2 ts0 mouse0
	  
	  in /proc/bus/input/devices instead of the more usual
	  
	  H: Handlers=mouse0 event2 ts0

2007-08-01 21:08  kmashrab

	* po/uz.po, po/uz@Latn.po: Typo fix.

2007-08-01 14:49  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/parse.pm, lib/Xconfig/various.pm: - internal:
	  add many options as having to be used only once, easing their use
	  and fixing setting them
	  (eg #31942 where one can't click "Options" after setting EXA)

2007-08-01 14:45  Pixel <pixel at mandriva.com>

	* lib/Xconfig/parse.pm: get rid of quotes around options, since
	  they really always want a string (or nothing)
	  nb: may break around things though

2007-08-01 09:20  Pixel <pixel at mandriva.com>

	* lib/Xconfig/xfree.pm: ensure "Option" lines ordering is fixed so
	  that XFdrake doesn't ask to save
	  config even when no options was changed

2007-07-31 09:34  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/main.pm,
	  lib/Xconfig/various.pm: - drop support for installing/configuring
	  915resolution
	  (no more needed since x11-driver-video-intel 2.0)

2007-07-30 12:34  Thierry Vignaud <tvignaud at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: do not configure using xfs anymore
	  (#32051)

2007-07-23 06:23  mmodem

	* po/pt.po: update

2007-07-16 22:39  kamberd

	* po/he.po: update translation for Hebrew

2007-07-12 16:45  Karl Ove Hufthammer <karl at huftis.org>

	* po/nn.po: Updated Norwegian Nynorsk translation.

2007-07-09 17:19  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.19

2007-07-09 17:18  Pixel <pixel at mandriva.com>

	* NEWS, lib/mouse.pm: - wacom configuration:
	  o enhance configuration by using /dev/input/by-id/xxx
	  (need drakxtools-backend >= 10.4.144)

2007-07-09 17:11  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/xfree.pm: - wacom configuration: add "pad"
	  InputDevice section

2007-07-08 12:28  berthy

	* po/fr.po: Update fr translation

2007-03-01 16:02  Thierry Vignaud <tvignaud at mandriva.com>

	* NEWS: add changelog entries for 0.1, 0.2, 0.3 & 0.5

2007-03-01 15:57  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: kill doble entries

2007-03-01 15:57  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: Generated by cvs2cl the 01_Mar

2007-03-01 15:56  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: fix path

2007-03-01 15:56  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: make ChangeLog rule working

2007-03-01 15:47  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.6

2007-03-01 15:46  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/proprietary.pm: use
	  ModulePath "/usr/LIB/xorg/modules/extensions/nvidia"
	  instead of Load
	  "/usr/LIB/xorg/modules/extensions/nvidia/libglx.so"
	  (#28779)

2007-03-01 14:55  Pixel <pixel at mandriva.com>

	* lib/Xconfig/parse.pm, lib/Xconfig/xfree.pm: add functions to
	  handle ModulePath (in section "Files")

2007-03-01 15:56  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: fix path

2007-03-01 15:56  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: make ChangeLog rule working

2007-03-01 15:47  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.6

2007-03-01 15:46  Pixel <pixel at mandriva.com>

	* NEWS, lib/Xconfig/card.pm, lib/Xconfig/proprietary.pm: use
	  ModulePath "/usr/LIB/xorg/modules/extensions/nvidia"
	  instead of Load
	  "/usr/LIB/xorg/modules/extensions/nvidia/libglx.so"
	  (#28779)

2007-03-01 14:55  Pixel <pixel at mandriva.com>

	* lib/Xconfig/parse.pm, lib/Xconfig/xfree.pm: add functions to
	  handle ModulePath (in section "Files")

2007-03-01 14:54  Pixel <pixel at mandriva.com>

	* lib/Xconfig/various.pm: use_DRI_GLX is not for proprietary nvidia
	  which doesn't use dri

2007-03-01 10:26  ybando

	* po/ja.po: Japanese translation revised

2007-02-26 18:47  Arpad Biro <biro_arpad at yahoo.com>

	* po/hu.po: update

2007-02-23 13:39  Pablo Saratxaga <pablo at mandriva.com>

	* po/br.po: plural forms

2007-02-23 11:30  Pablo Saratxaga <pablo at mandriva.com>

	* po/pl.po: updated Polish file

2007-02-22 21:11  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: (dis) use svn export instead of tar for preparing the
	  tarball

2007-02-22 21:10  Thierry Vignaud <tvignaud at mandriva.com>

	* po/Makefile: (clean) do not erase drakconf.pot (needed for next
	  commit) and don't
	  try to erase twice *.mo

2007-02-22 17:42  Pjetur G. Hjaltason <pjetur at pjetur.net>

	* po/is.po: few revised strings

2007-02-16 14:25  Pixel <pixel at mandriva.com>

	* lib/Xconfig/resolution_and_depth.pm: handle both vga=0x3.. and
	  vga=7..

2007-02-16 00:48  mmodem

	* po/pt.po: up

2007-02-12 11:19  Thierry Vignaud <tvignaud at mandriva.com>

	* po/cy.po: update (Rhoslyn Prys)

2007-02-08 18:38  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config: bump release

2007-02-08 09:04  Pixel <pixel at mandriva.com>

	* data/pixmaps/colors.png, data/pixmaps/colors16.png,
	  data/pixmaps/colors8.png, data/pixmaps/monitor-1024.png,
	  data/pixmaps/monitor-1152.png, data/pixmaps/monitor-1280.png,
	  data/pixmaps/monitor-1400.png, data/pixmaps/monitor-1600.png,
	  data/pixmaps/monitor-1920.png, data/pixmaps/monitor-2048.png,
	  data/pixmaps/monitor-640.png, data/pixmaps/monitor-800.png,
	  data/pixmaps/monitor.png,
	  soft/drakx/trunk/perl-install/pixmaps/colors.png,
	  soft/drakx/trunk/perl-install/pixmaps/colors16.png,
	  soft/drakx/trunk/perl-install/pixmaps/colors8.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1024.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1152.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1280.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1400.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1600.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-1920.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-2048.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-640.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor-800.png,
	  soft/drakx/trunk/perl-install/pixmaps/monitor.png: move XFdrake
	  images into drakx-kbd-mouse-x11/

2007-02-08 07:46  Funda Wang <fundawang at linux.net.cn>

	* po/zh_CN.po: Updated Simplified Chinese translations.

2007-02-07 19:32  nbauer

	* po/de.po: Update German translation (Nicolas Bauer)

2007-02-07 13:33  Thierry Vignaud <tvignaud at mandriva.com>

	* po/br.po: update

2007-02-07 11:15  ybando

	* po/ja.po: Japanese translation updated.

2007-02-07 09:38  Pablo Saratxaga <pablo at mandriva.com>

	* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
	  po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
	  po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po,
	  po/eu.po, po/fa.po, po/fi.po, po/fur.po, po/ga.po, po/gl.po,
	  po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
	  po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po, po/ltg.po,
	  po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po, po/nb.po,
	  po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po, po/pt_BR.po,
	  po/ro.po, po/ru.po, po/sc.po, po/sk.po, po/sl.po, po/sq.po,
	  po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po, po/th.po,
	  po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po, po/vi.po,
	  po/wa.po, po/zh_CN.po, po/zh_TW.po: updated Uzbek file;
	  retrieved translations from other modules, merged with pot

2007-01-29 10:58  Thierry Vignaud <tvignaud at mandriva.com>

	* po/uz.po, po/uz@Latn.po: update (Mashrab Kuvatov)

2007-01-29 07:51  Pixel <pixel at mandriva.com>

	* Makefile.config, NEWS: 0.4

2007-01-29 07:48  Pixel <pixel at mandriva.com>

	* lib/keyboard.pm: adapt to Xconfig::xfree->read returning a hash
	  instead of an array

2007-01-28 16:29  Marek Laane <bald at starman.ee>

	* po/et.po: Updated Estonian translation.

2007-01-23 23:21  mmodem

	* po/pt.po: up

2007-01-23 19:16  Thierry Vignaud <tvignaud at mandriva.com>

	* .perl_checker, tools/.perl_checker: blacklist enough modules so
	  that keyboardrake, mousedrake & XFdrake are perl_checker-able

2007-01-21 19:11  berthy

	* po/fr.po: Update fr translation

2007-01-21 03:59  Willy Sudiarto Raharjo <willysr at gmail.com>

	* po/id.po: Updated

2007-01-20 23:02  mmodem

	* po/pt.po: up

2007-01-19 18:23  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config: bump release

2007-01-19 18:09  Thierry Vignaud <tvignaud at mandriva.com>

	* tools/XFdrake, tools/keyboarddrake, tools/mousedrake: sync
	  comments with reality

2007-01-19 18:05  Thierry Vignaud <tvignaud at mandriva.com>

	* lib/Xconfig/glx.pm, tools/XFdrake, tools/keyboarddrake,
	  tools/mousedrake: lookup translations into drakx-kbd-mouse-x11
	  domain

2007-01-19 17:35  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile.config: bump release

2007-01-19 17:35  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: install keyboard.pm & mouse.pm too

2007-01-19 14:50  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile: fix installing modules

2007-01-19 14:43  Thierry Vignaud <tvignaud at mandriva.com>

	* ChangeLog: initial log

2007-01-19 14:41  Thierry Vignaud <tvignaud at mandriva.com>

	* COPYING: add license

2007-01-19 12:18  Pixel <pixel at mandriva.com>

	* lib/Xconfig/xfree.pm: - add 2560x1600 (16/10)
	  - add many more, but commented for now

2007-01-19 12:18  Pixel <pixel at mandriva.com>

	* lib/Xconfig/xfree.pm: - add 2560x1600 (16/10)
	  - add many more, but commented for now

2007-01-18 18:11  Thierry Vignaud <tvignaud at mandriva.com>

	* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
	  po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
	  po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po,
	  po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po,
	  po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po,
	  po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po,
	  po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po,
	  po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po,
	  po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po, po/sl.po,
	  po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po,
	  po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: cleanup

2007-01-18 17:52  Thierry Vignaud <tvignaud at mandriva.com>

	* po/af.po, po/am.po, po/ar.po, po/az.po, po/be.po, po/bg.po,
	  po/bn.po, po/br.po, po/bs.po, po/ca.po, po/cs.po, po/cy.po,
	  po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po,
	  po/eu.po, po/fa.po, po/fi.po, po/fr.po, po/fur.po, po/ga.po,
	  po/gl.po, po/he.po, po/hi.po, po/hr.po, po/hu.po, po/id.po,
	  po/is.po, po/it.po, po/ja.po, po/ko.po, po/ky.po, po/lt.po,
	  po/ltg.po, po/lv.po, po/mk.po, po/mn.po, po/ms.po, po/mt.po,
	  po/nb.po, po/nl.po, po/nn.po, po/pa_IN.po, po/pl.po, po/pt.po,
	  po/pt_BR.po, po/ro.po, po/ru.po, po/sc.po, po/sk.po, po/sl.po,
	  po/sq.po, po/sr.po, po/sr@Latn.po, po/sv.po, po/ta.po, po/tg.po,
	  po/th.po, po/tl.po, po/tr.po, po/uk.po, po/uz.po, po/uz@Latn.po,
	  po/vi.po, po/wa.po, po/zh_CN.po, po/zh_TW.po: import translation
	  from drakx/trunk/'s share/po and standalone/po

2007-01-18 17:50  Thierry Vignaud <tvignaud at mandriva.com>

	* po/drakx-kbd-mouse-x11.pot: initial catalog

2007-01-18 17:40  Thierry Vignaud <tvignaud at mandriva.com>

	* Makefile, Makefile.config, data, data/icons, data/pixmaps,
	  data/pixmaps/arrow_down.png, data/pixmaps/arrow_up.png,
	  data/pixmaps/mouse_2b.png, data/pixmaps/mouse_2b_left.png,
	  data/pixmaps/mouse_2b_right.png, data/pixmaps/mouse_3b+.png,
	  data/pixmaps/mouse_3b+_middle.png, data/pixmaps/mouse_3b.png,
	  data/pixmaps/mouse_3b_left.png, data/pixmaps/mouse_3b_middle.png,
	  data/pixmaps/mouse_3b_right.png, lib, lib/Xconfig,
	  lib/keyboard.pm, lib/mouse.pm, lib/xf86misc,
	  lib/xf86misc/Makefile, po, po/Makefile, tools, tools/XFdrake,
	  tools/keyboarddrake, tools/mousedrake: move keyboarddrake,
	  mousedrake and XFdrake in new drakx-kbd-mouse-x11 module

2007-01-11 12:05  Thierry Vignaud <tvignaud at mandriva.com>

	* .: create tree