1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
|
cdrom-detect (1.20etch1) stable; urgency=low
[ Joey Hess ]
* After scanning CDs, scan for things that look like USB floppies to
list-devices, since these can sometimes really be USB CD drives.
(Which is probably a udev or kernel bug). Closes: #410006, 418850
* Needs di-utils 1.45etch1.
-- Frans Pop <fjp@debian.org> Mon, 4 Jun 2007 21:16:51 +0200
cdrom-detect (1.20) unstable; urgency=low
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
* Malayalam (ml.po) by Praveen A
* Dutch (nl.po) by Bart Cornelis
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:41:56 +0100
cdrom-detect (1.19) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Claus Hindsgaul
* Esperanto (eo.po) by Serge Leblanc
* Hebrew (he.po) by Lior Kaplan
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:28:14 +0100
cdrom-detect (1.18) unstable; urgency=low
* Simplify CD-ROM detection (remove automatic retry as code already allows
user to retry), and improve consistency in handling failures.
Patch by Osamu Aoki. Closes: #267168.
* Add missing debconf dependency.
* Add Lintian override for standards-version.
* Add myself to uploaders.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Esperanto (eo.po) by Serge Leblanc
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Giuseppe Sacco
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Romanian (ro.po) by Eddy Petrișor
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Damodharan Rajalingam
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 14:12:11 +0200
cdrom-detect (1.17) unstable; urgency=low
* Put debhelper in Build-Depends rather than in Build-Depends-Indep.
* Use list-devices to look for CD devices. Requires di-utils 1.33.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Gujarati (gu.po) by Kartik Mistry
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by A S Alam
* Traditional Chinese (zh_TW.po) by Tetralet
-- Colin Watson <cjwatson@debian.org> Thu, 31 Aug 2006 17:29:01 +0100
cdrom-detect (1.16) unstable; urgency=low
* Change menu item number from 14 to 13. cdrom-detect, load-iso,
load-cdrom, ethdetect, and s390-netdevice are all changed due to this and
should transition together.
Closes: #373097
-- Joey Hess <joeyh@debian.org> Tue, 13 Jun 2006 20:29:51 -0400
cdrom-detect (1.15) unstable; urgency=low
* prebaseconfig transition
* Remove unused .dirs file.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Catalan (ca.po) by Jordi Mallach
* Basque (eu.po) by Piarres Beobide
* Georgian (ka.po) by Aiet Kolkhi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Northern Sami (se.po) by Børre Gaup
* Vietnamese (vi.po) by Clytie Siddall
-- Joey Hess <joeyh@debian.org> Wed, 7 Jun 2006 21:56:32 -0400
cdrom-detect (1.14) unstable; urgency=low
* Always schedule apt-mirror-setup for installation. Whether it will be used
depends on the type of CD and the user.
* Only schedule apt-cdrom-setup for installation if the base system is
installable from the CD.
[ Updated translations ]
* Danish (da.po) by Claus Hindsgaul
* Dzongkha (dz.po)
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Italian (it.po) by Giuseppe Sacco
* Kurdish (ku.po) by Erdal Ronahi
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Portuguese (pt.po) by Miguel Figueiredo
* Slovenian (sl.po) by Jure Čuhalev
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
-- Frans Pop <fjp@debian.org> Thu, 18 May 2006 01:24:58 +0200
cdrom-detect (1.13) unstable; urgency=low
[ Joey Hess ]
* Rename debconf templates to cdrom/suite and cdrom/codename. These do not
need to be translatable, they are internal use.
Needs apt-setup 1:0.10, base-installer 1.56.
[ Frans Pop ]
* Schedule installation of choose-mirror for CDs that do not contain the
base system packages. Needed to support installation without using network
mirrors again.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Welsh (cy.po) by Dafydd Harries
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Sonam Rinchen
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Irish (ga.po) by Kevin Patrick Scannell
* Galician (gl.po) by Jacobo Tarrio
* Hindi (hi.po) by Nishant Sharma
* Hungarian (hu.po) by SZERVÑC Attila
* Indonesian (id.po) by Parlin Imanuel Toh
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Leang Chumsoben
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Punjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Cuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Wed, 19 Apr 2006 19:40:12 +0200
cdrom-detect (1.12) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Malagasy (pa_IN.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Mon, 23 Jan 2006 20:21:37 +0100
cdrom-detect (1.11) unstable; urgency=low
* Also determine the codename of the release. This can be used later to
set apt sources by codename.
-- Frans Pop <fjp@debian.org> Tue, 15 Nov 2005 20:30:19 +0100
cdrom-detect (1.10) unstable; urgency=low
[ Colin Watson ]
* Synchronise cdrom-detect/wrong-cd text with apt-setup/cd/bad in
base-config, avoiding unnecessary Debian "branding".
[ Joey Hess ]
* Queue apt-cdrom-setup for install, this is part of the apt-setup
replacement that I've not quite gotten around to finishing yet. In the
meantime, queuing it should be harmless.
* Use log-output.
* Updated translations:
- Catalan (ca.po) by Guillem Jover
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Holger Wansing
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Esperanto (eo.po) by Serge Leblanc
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Persian (fa.po) by Arash Bijanzadeh
- French (fr.po) by Christian Perrier
- Galician (gl.po) by Jacobo Tarrio
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Kurdish (ku.po) by Erdal Ronahi
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Macedonian (mk.po) by Georgi Stanojevski
- Bokmål, Norwegian (nb.po) by Bjørn Steensrud
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Slovak (sk.po) by Peter Mann
- Slovenian (sl.po) by Jure Čuhalev
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Vietnamese (vi.po) by Clytie Siddall
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 16:55:44 +0200
cdrom-detect (1.09) unstable; urgency=low
[ Joey Hess ]
* Make indentation consistent.
* Updated translations:
- Catalan (ca.po) by Guillem Jover
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by Piarres Beobide
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Indonesian (id.po) by Arief S Fitrianto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Romanian (ro.po) by Eddy Petrişor
- Tagalog (tl.po) by Eric Pareja
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 16:44:12 +0300
cdrom-detect (1.08) unstable; urgency=low
[Joey Hess ]
* Don't bother messing with mirror/suite's seen flag; this was instead
fixed in base-config.
* Remove udeb extended description.
* Updated translations:
- Catalan (ca.po) by Guillem Jover
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by Piarres Beobide
- Portuguese (pt.po) by Miguel Figueiredo
-- Joey Hess <joeyh@debian.org> Mon, 13 Jun 2005 12:31:52 -0400
cdrom-detect (1.07) unstable; urgency=low
* Joey Hess
- Don't just set mirror/suite; properly preseed it by marking it as seen.
This will allow apt-setup to ask the question at high priority as it
should be, w/o making the question be displayed during initial installs.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Basque (eu.po) by Piarres Beobide
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Russian (ru.po) by Yuri Kozlov
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Recai Oktaş
-- Joey Hess <joeyh@debian.org> Sat, 11 Jun 2005 13:31:25 -0400
cdrom-detect (1.06) unstable; urgency=low
* Stephen R. Marenka
- m68k/atari/aranym workaround long cdrom filenames vs. find.
* Frans Pop
- Fail when the distribution (mirror/suite) cannot be determined.
Currently the user only finds out in base-installation. Closes: #271976
- Add option to not eject the installation CD before the reboot.
Closes: #295476
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Guillem Jover
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernandez-Sanguino Peña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Italian (it.po) by Stefano Canepa
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Frans Pop
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 1 May 2005 17:18:41 -0400
cdrom-detect (1.05) unstable; urgency=low
* Note that this includes variable substitution fixes for translated
templates.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Jordi Mallach
- Welsh (cy.po) by Dafydd Harries
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Gallegan (gl.po) by Hctor Fenndez Lpez
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Davide Viti
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Dmitry Beloglazov
- Slovenian (sl.po) by Jure Čuhalev
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 17:07:46 -0500
cdrom-detect (1.04) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Hungarian (hu.po) by VEROK Istvan
- Indonesian (id.po) by Debian Indonesia Team
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjorn Steensrud
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 6 Oct 2004 14:25:55 -0400
cdrom-detect (1.03) unstable; urgency=low
* Updated translations:
- Italian (it.po) by Davide Viti
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 21:13:10 -0400
cdrom-detect (1.02) unstable; urgency=low
* Colin Watson
- Put up a progress bar while scanning directories.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Italian (it.po) by Davide Viti
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Thu, 23 Sep 2004 16:55:58 +0200
cdrom-detect (1.01) unstable; urgency=low
* Joey Hess
- Remove the failure template, since it's got confusing wording, and
once we fail, main-menu will display its own, sufficient, failure
message. Closes: #265612
* Colin Watson
- Run 'find /cdrom/' once the CD is mounted, to get all the directories
into the dentry cache at once. This cuts down a lot on seek times
later.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Russian (ru.po) by Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Matjaz Horvat
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 6 Sep 2004 20:40:02 -0400
cdrom-detect (1.00) unstable; urgency=low
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Danish (da.po) by Frederik Dannemare
- German (de.po) by Dennis Stampfer
- Croatian (hr.po) by Krunoslav Gernhard
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:13:24 -0400
cdrom-detect (0.59) unstable; urgency=low
* Osamu Aoki
- When CD mount fails, unmount it and try again, to work around DMA
issues. Closes: #255128
- Add logging around CD mounting.
-- Joey Hess <joeyh@debian.org> Mon, 28 Jun 2004 14:56:58 -0400
cdrom-detect (0.58) unstable; urgency=low
* Updated translations:
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 15:30:32 -0300
cdrom-detect (0.57) unstable; urgency=low
* Joey Hess
- Pass the custom title to hw-detect when calling it after loading a
driver floppy.
* Christian Perrier
- Ellipsis typography fixed
* Updated translations:
- Norwegian (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Nikolai Prokoschenko
-- Otavio Salvador <otavio@debian.org> Tue, 18 May 2004 23:56:15 -0300
cdrom-detect (0.56) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:00:36 -0400
cdrom-detect (0.55) unstable; urgency=low
* Updated translations:
- German (de.po) by Alwin Meschede
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Bokmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Eddy Petrisor
- Turkish (tr.po) by Osman Yüksel
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 10:54:30 -0400
cdrom-detect (0.54) unstable; urgency=low
* Joshua Kwan
- Switch to debhelper's new udeb support.
* Updated translations:
- Basque (eu.po) by Piarres Beobide Egaña
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Davide Viti
- Dutch (nl.po) by Bart Cornelis
- Romanian (ro.po) by Eddy Petrisor
-- Joey Hess <joeyh@debian.org> Sat, 10 Apr 2004 00:43:50 -0400
cdrom-detect (0.53) unstable; urgency=low
* Joey Hess
- Pass a custom progress bar title to hw-detect.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Alwin Meschede
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Héctor Fernández López
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by André Dahlqvist
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Sun, 4 Apr 2004 15:59:14 -0400
cdrom-detect (0.52) unstable; urgency=low
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Indonesian (id.po) by Parlin Imanuel Toh
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 15:19:16 -0500
cdrom-detect (0.51) unstable; urgency=low
* Translations:
- Bartosz Fenski
- Some updates to Polish translation (pl.po)
- Giuseppe Sacco (it.po)
- Two lines were incorrectly joined during last commit.
- Russian by Nikolai Prokoschenko (ru.po)
-- Petter Reinholdtsen <pere@debian.org> Sun, 14 Mar 2004 19:11:07 +0100
cdrom-detect (0.50) unstable; urgency=low
* Joey Hess
- Menu item number moves from 20 to 14 to match load-cdrom move.
* Translations:
- Giuseppe Sacco
- Updated italian translation by Davide Viti (it.po)
- Ognyan Kulev
- Updated Bulgarian translation (bg.po).
- Andre Dahlqvist
- Update Swedish translation (sv.po)
- Dafydd Harries : Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Wed, 10 Mar 2004 21:12:09 -0500
cdrom-detect (0.49) unstable; urgency=low
* Joey Hess
- Use three dots in elipses for consistency.
* Petter Reinholdtsen
- Add logging in prebaseconfig script, to try to find out why
the CD isn't ejected some times.
* Translations:
- Miguel Figueiredo (pt.po)
- Updated Portuguese translation (pt.po)
- Bartosz Fenski
- Updated Polish translation (pl.po)
- Pierre Machard
- Update French translation (fr.po)
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Konstantinos Margaritis
- Updated Greek translation (el.po)
- Carlos Z.F. Liu
- Updated Simplified Chinese translation (zh_CN.po)
- Jordi Mallach
- Updated Catalan translation (ca.po)
- André Luís Lopes
- Updated Brazilian Portuguese translation (pt_BR.po)
- Eugeniy Meshcheryakov
- Updated Ukrainian Translation (uk.po)
- Miroslav Kure
- Updated Czech translation (cs.po)
- Claus Hindsgaul
- Update Danish translation (da.po)
- Håvard Korsvoll
- Updated Norwegian, nynorsk (nn.po) translation.
- Peter Mann
- Updated Slovak translation (sk.po)
- Elian Myftiu
- Updated Albanian translation (sq.po)
- Dennis Stampfer
- Update German translation (de.po)
- Changwoo Ryu
- Updated Korean translation (ko.po)
- Bart Cornelis
- Update Dutch translation (nl.po)
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Javier Fernandez-Sanguino
- Spanish translation update (es.po)
- Jure Cuhalev
- Updated Slovenian translation (sl.po)
- Håvard Korsvoll
- Updated Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Petter Reinholdtsen <pere@debian.org> Tue, 2 Mar 2004 07:44:19 +0100
cdrom-detect (0.48) unstable; urgency=low
* Joey Hess
- Add a prebaseconfig progress template.
* Translations:
- Changwoo Ryu
- Added Korean translation (ko.po)
- André Luís Lopes
- Updated Brazilian Portuguese translation (pt_BR.po)
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Claus Hindsgaul
- Update Danish translation (da.po)
- Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po)
- Eugeniy Meshcheryakov
- Updated Ukrainian translation (uk.po)
- Carlos Z.F. Liu
- Updated Simplified Chinese translation (zh_CN.po)
- Konstantinos Margaritis
- Updated Greek translation (el.po)
- Miroslav Kure
- Updated Czech translation (cs.po)
- Elian Myftiu
- Updated Albanian translation (sq.po)
- Jordi Mallach
- Updated Catalan translation (ca.po)
-- Joey Hess <joeyh@debian.org> Sat, 21 Feb 2004 14:49:03 -0500
cdrom-detect (0.47) unstable; urgency=low
* Translations:
- Peter Mann : Updated Slovak translation (sk.po)
- Kenshi Muto : Updated Japanese translation (ja.po)
- Jordi Mallach : Update Catalan translation (ca.po)
- Christian Perrier : Update French translation (fr.po)
- Bart Cornelis : - Update Dutch translation (nl.po)
- Added corrections send by Bastiaan
Eeckhoudt
- Miroslav Kure : Update Czech translation (cs.po)
- Claus Hindsgaul : Update Danish translation (da.po)
- K. Margaritis : Update Greek translation (el.po)
- Miguel Figueiredo : Update Portuguese translation (pt.po)
- André Luís Lopes : Updated Brazilian Portuguese translation (pt_BR.po)
- Dennis Stampfer : Update German translation (de.po)
- Kęstutis Biliūnas : Updated Lithuanian translation (lt.po)
- Carlos Z.F. Liu : Updated Simplified Chinese translation (zh_CN.po)
- Andre Dahlqvist : Update Swedish translation (sv.po)
* Eugen Meshcheryakov : added Ukrainian translation (uk.po)
* Stephen R. Marenka
- Added additional test to see if a cd was already mounted.
- Always save cdrom-detect/cdrom_device.
-- Joey Hess <joeyh@debian.org> Fri, 20 Feb 2004 17:18:29 -0500
cdrom-detect (0.46) unstable; urgency=low
* Remove unnecessary seen flag unsetting.
* If CD drive detection fails, prompt for a driver floppy,
and retry.
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 19:31:55 -0500
cdrom-detect (0.45) unstable; urgency=low
* Joey Hess
- Rename mirror/distribution to the more accurate mirror/suite.
- Improved on the CD suite detection code, now it should
set mirror/suite properly for later base-config use.
* Translations:
- Jordi Mallach: Update Catalan translation (ca.po).
- Carlos Z.F. Liu
- fix some serious errors in Simplified Chinese translation.
- Giuseppe Sacco
- Applied patch for normalizing menus and some italian translation (it.po)
- h3li0s
- Added Albanian translation (sq.po)
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 14:37:20 -0500
cdrom-detect (0.44) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Joey Hess
- Call them CDROM drives, not readers. Closes: #225168
- No need to apt-install discover; hw-detect does that.
- Cleaned up the prompting if the CD device is found and CD is not
auto-mounted. Closes: #213174
- Remove dangling skip-autodetection template.
- Don't give up on a non-debian CD until all drives have been scanned,
and allow the user to insert the right CD to continue.
- Fix debian/rules to use binary-indep, not -arch. Closes: #223087
- Update to debhelper v4.
- Clean up rules file.
- Remove Standards-Version; it's a udeb.
- Remove the mtab hack in the prebaseconfig hack, /etc/mtab is a link to
/proc/mounts in the rootskel.
- Fix prebaseconfig script to eject the right cdrom, by calling eject on
/cdrom. No more coffee spills.
* Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
* Christian Perrier
- Updated French translation (fr.po).
* Kenshi Muto
- Update Japanese translation (ja.po)
* André Luís Lopes
- Updated Brazilian Portuguese (pt_BR) translation.
- Fixed inconsistencies among various pt_BR translations.
Thanks to Christian Perrier for noticing these.
* Bart Cornelis
- Updated Dutch (nl.po) ranslation
* Ognyan Kulev
- Updated bulgarian translation (bg.po).
* Anmar Oueja
- created and translated to Arabic (ar.po)
* Pierre Machard
- Update French translation
- Run debconf-updatepo
* Christian Perrier
- Removed an extra dot in on error template short description
- Unfuzzy translations after debconf-updatepo
* Konstantinos Margaritis
- Update Greek translation (el.po)
* Nikolai Prokoschenko
Update the russian translation (ru.po)
* Teófilo Ruiz Suárez
- Updated Spanish translation (po/es.po)
* Miroslav Kure
- Updated Czech translation
* Peter Mann
- Updated Slovak translation
* Dennis Stampfer
- Updated German translation (de.po)
* Anmar Oueja
- Updated Arabic translation (ar.po)
* Claus Hindsgaul
- Update Danish translation.
* Ming Hua
- Updated Simplified Chinese translation (zh_CN.po)
* Andre Dahlqvist
- Update Swedish translation (sv.po)
* Safir Secerovic
- Update Bosnian translation (bs.po).
* Miguel Figueiredo
- Updated Portuguese translation
-- Christian Perrier <bubulle@debian.org> Tue, 27 Jan 2004 07:43:40 +0100
cdrom-detect (0.43) unstable; urgency=low
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
* Teófilo Ruiz Suárez
- Fixed some inconsistencies in Spanish Translation (es.po)
* Ognyan Kulev
- Updated bulgarian translation (bg.po).
* Christian Perrier
- Fixed obvious mistake in finnish translation which made it inconsistent
with iso-scan and choose-mirror
-- Joey Hess <joeyh@debian.org> Thu, 1 Jan 2004 14:41:32 -0500
cdrom-detect (0.42) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Bokmael (nb.po) translation from skolelinux-cvs
* Dennis Stampfer
- Merged some strings in German translation de.po
* Luis Ferreira
- Initial Portuguese translation (pt.po).
* Peter Mann
- Updated Slovak translation
* Claus Hindsgaul
- Update Danish translation.
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:55:49 -0500
cdrom-detect (0.41) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* André Dahlqvist
- Update Swedish translation. (sv.po)
* Christian Perrier
- Update French translation.
* Claus Hindsgaul
- Update Danish translation.
* Konstantinos Margaritis
- Update Greek translation (el.po)
* Teófilo Ruiz Suárez
- Updated Spanish translation (es.po)
- Switched to UTF-8
* Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
* Alwin Meschede
- Updated German translation (de.po)
* Miroslav Kure
- Updated Czech translation (cs.po)
* Marco d'Itri
- Add preliminary support for .ko kernel modules.
* Joey Hess
- sed -re does not work with busybox, use 2 sed calls instead
* Giuseppe Sacco
- First italian translation by Davide Viti (it.po)
* Bart Cornelis
- Updated Dutch translation (nl.po)
- fixed mistakes found by debian-l10n-dutch review process
* Steinar H. Gunderson
- Updated Norwegian translation (nb.po).
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Petter Reinholdtsen
- Updated Norwegian Nynorsk (nn.po), thanks to Gaute Hvoslef Kvalnes.
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
* Teófilo Ruiz Suárez
- Updated es.po
-- Bart Cornelis <cobaco@linux.be> Tue, 23 Dec 2003 15:52:48 +0100
cdrom-detect (0.40) unstable; urgency=low
* Verok Istvan
- Initial Hungarian translation.
* Joey Hess
- Per discussion on debian-boot, use symbolic distribution names in
mirror/distribution.
- Remove release code name stuff.
- Look for a testing distro on the iso before stable, as our current isos
have a (bogus) stable symlink, which would end up with debootstrap being
asked to bootstrap woody..
-- Joey Hess <joeyh@debian.org> Fri, 12 Dec 2003 16:37:35 -0500
cdrom-detect (0.39) unstable; urgency=low
* Peter Mann
- Initial Slovak translation (sk.po).
* Ilgiz Kalmetev
- Initial Russian translation.
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* Christian Perrier/Joe Nahmias
- Refined and standardized templates. Closes: #220180
* Christian Perrier
- Update French translation.
* Claus Hindsgaul
- Update da (Danish) translation.
* Safir Šećerović
- Update Bosnian translation.
* Miroslav Kure
- Update Czech translation.
* Jordi Mallach
- Update Catalan translation.
* Kęstutis Biliūnas
- Updated Lithuanian translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 16:05:52 -0500
cdrom-detect (0.38) unstable; urgency=low
* Kenshi Muto
- Update Japanese translation (ja.po)
* Kęstutis Biliūnas
- Add Lithuanian translation (lt.po)
-- Petter Reinholdtsen <pere@debian.org> Sat, 8 Nov 2003 20:25:01 +0100
cdrom-detect (0.37) unstable; urgency=low
* Bart Cornelis
- updated Dutch translation (nl.po)
* Pierre Machard
- Fix Changelog.
* Christian Perrier
- Update French translation.
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Miroslav Kure
- Update Czech translation.
* Tommi Vainikainen
- Update Finnish translation.
* Petter Reinholdtsen
- Updated nb.po.
-- Joey Hess <joeyh@debian.org> Fri, 7 Nov 2003 13:04:50 -0500
cdrom-detect (0.36) unstable; urgency=low
* Joey Hess
- Simplify menu item text.
- Versioned dependencies are not allowed in udebs, removed version from
cdebconf-udeb dependency.
- ORed dependencies are not allowed either, removed modutils-basic |
modutils-full, which was obsolete anyway.
-- Joey Hess <joeyh@debian.org> Wed, 5 Nov 2003 00:04:38 -0500
cdrom-detect (0.35) unstable; urgency=low
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po)
* Joey Hess
- Change Installer-Menu-Number from 15 to 20 as part of the 10-30
renumbering.
-- Joey Hess <joeyh@debian.org> Sat, 1 Nov 2003 22:20:06 -0500
cdrom-detect (0.34) unstable; urgency=low
* Jure Cuhalev
- New Slovenian translation. Closes: #218021.
* Petter Reinholdtsen
- Update nb.po, avoid comma in menu entry.
-- Petter Reinholdtsen <pere@debian.org> Sat, 1 Nov 2003 09:57:32 +0100
cdrom-detect (0.33) unstable; urgency=low
* Claus Hindsgaul
- Update da (Danish) translation.
* Miroslav Kure
- Initial Czech translation.
* Christian Perrier
- Update French translation.
* Petter Reinholdtsen
- Drop Raphael Hertzog and Tollef Fog Heen from uploaders lists.
Neither have touched this package in a long time.
- Updated nb.po.
* Tommi Vainikainen
- Add Finnish (fi.po) translation.
-- Petter Reinholdtsen <pere@debian.org> Tue, 28 Oct 2003 18:09:42 +0100
cdrom-detect (0.32) unstable; urgency=low
* André Luís Lopes :
- Update pt_BR (Brazilian Portuguese) translation
* Bart Cornelis
- Updated dutch translation (nl.po)
-- Bart Cornelis <cobaco@linux.be> Wed, 8 Oct 2003 22:14:45 +0200
cdrom-detect (0.31) unstable; urgency=low
* André Luís Lopes :
- debian/po/pt_BR.po :
- Fix one translation to be consistent with the rest
of the same sentence within choose-mirror package.
* Alastair McKinstry
- Fix changelog UTF-8 brokenness
- Move to Standards-Version: 3.6.1
* Petter Reinholdtsen
- Correct the text of a few templates.
- Use the 'error' template type for error reporting.
- Make menu entry translatable.
* Pierre Machard
- Update French po-debconf translation.
* Kenshi Muto
- Update Japanese po (ja.po)
* Denis Barbier
- Add a comment in templates file, which is copied into PO files,
to tell translators which string is a main menu item.
-- Petter Reinholdtsen <pere@debian.org> Sat, 4 Oct 2003 01:30:38 +0200
cdrom-detect (0.30) unstable; urgency=low
* André Luís Lopes :
- Update pt_BR (Brazilian Portuguese) translation.
* Bart Cornelis
- updated dutch translation
-- Petter Reinholdtsen <pere@debian.org> Sun, 28 Sep 2003 15:05:39 +0200
cdrom-detect (0.29) unstable; urgency=low
* Chris Tillman
- Update English usage in message templates
* Jordi Mallach
- Added Catalan (ca) translation.
* Pierre Machard
- Update French po-debconf translation [Christian Perrier]
* Kenshi Muto
- Update ja.po
* Petter Reinholdtsen
- Update nb.po.
-- Petter Reinholdtsen <pere@debian.org> Wed, 24 Sep 2003 20:40:55 +0200
cdrom-detect (0.28) unstable; urgency=low
* Sebastian Ley
- Typo: CDROM -> $CDROM
-- Petter Reinholdtsen <pere@debian.org> Tue, 9 Sep 2003 20:37:52 +0200
cdrom-detect (0.27) unstable; urgency=low
* Javier Fernandez-Sanguino:
- Minor changes to the spanish translation
* Kenshi Muto
- Added Japanese translation (ja.po)
-- Petter Reinholdtsen <pere@debian.org> Fri, 5 Sep 2003 23:10:53 +0200
cdrom-detect (0.26) unstable; urgency=low
* Log to syslog instead of /var/log/messages.
-- Petter Reinholdtsen <pere@debian.org> Mon, 28 Jul 2003 15:48:51 +0200
cdrom-detect (0.25) unstable; urgency=low
* Petter Reinholdtsen
- Updated de.po. Thanks to from Maximilian Wilhelm.
* Alastair McKinstry
- Converted changelog to UTF-8, in accordance with Standards-Version 3.6.0
-- Petter Reinholdtsen <pere@debian.org> Sat, 26 Jul 2003 23:59:46 +0200
cdrom-detect (0.24) unstable; urgency=low
* Thorsten Sauter
- update german translation (de.po)
* Denis Barbier
- update debian/po/POTFILES.in to take file renaming into account
* Matt Kraai
- Update nl.po, thanks to Bart Cornelis.
* Alastair McKinstry
- Remove cdrom-detect.menutest, as it isn't needed and will break things
-- Alastair McKinstry <mckinstry@computer.org> Mon, 19 May 2003 22:08:57 +0200
cdrom-detect (0.23) unstable; urgency=low
* Petter Reinholdtsen
- Updated nb.po.
* Thorsten Sauter
- Insert german translation (de.po)
-- Petter Reinholdtsen <pere@debian.org> Fri, 16 May 2003 21:13:22 +0200
cdrom-detect (0.22) unstable; urgency=low
* Martin Sjögren
- Fix the looping on the is_cd_inserted question.
-- Petter Reinholdtsen <pere@debian.org> Sun, 4 May 2003 23:20:01 +0200
cdrom-detect (0.21) unstable; urgency=low
* Update nb.po.
-- Petter Reinholdtsen <pere@debian.org> Sun, 4 May 2003 15:29:22 +0200
cdrom-detect (0.20) unstable; urgency=low
* Fix typo in nb.po.
* Adjust postinst to call the correct script (hw-detect instead of
hwdetect) now that we are using the new hw-detect package.
-- Petter Reinholdtsen <pere@debian.org> Wed, 23 Apr 2003 17:55:30 +0200
cdrom-detect (0.19) unstable; urgency=low
* Depend on and use the new hw-detect package instead of
calling discover directly.
* Give package control files 'cdrom-detect.' prefixes.
* Depend on modutils-basic or modutils-full instead of only modutils-full.
* Pierre Machard:
- Update fr debconf template translation.
-- Petter Reinholdtsen <pere@debian.org> Mon, 21 Apr 2003 09:52:18 +0200
cdrom-detect (0.18) unstable; urgency=low
* Move the active part of postinst into separate script hwdetect.
* Describe the structure of a driver floppy when asking if one
should be used.
* Only try to load missing modules from floppy if the device is
available.
* Always try to load the floppy driver.
* Check if module already is loaded before trying to load it again.
* Improve description of the modules that is always loaded.
* Improve the text when asking for driver floppy.
* Add debconf title.
* Ask for kernel module parameters as a low priority question.
* Ran 'debconf2po-update' to update the translator files.
* André Luís Lopes :
- Update pt_BR debconf template translation.
-- Petter Reinholdtsen <pere@debian.org> Sat, 19 Apr 2003 01:04:21 +0200
cdrom-detect (0.17) unstable; urgency=low
* Pierre Machard
- Update debian/po/fr.po
* Petter Reinholdtsen
- Unmount the CD if it isn't a Debian install CD.
- Report the error using debconf if the CD is missing, or not a Debian
install CD.
-- Petter Reinholdtsen <pere@debian.org> Sat, 12 Apr 2003 11:04:29 +0200
cdrom-detect (0.16) unstable; urgency=low
* Martin Sjogren
- Silence the depmod -a run.
* Petter Reinholdtsen
- Updated nn.po, thanks to Gaute Hvoslef Kvalnes.
- Load sd_mod if SCSI device was detected. (Closes: #183716).
- Correct code to quiet down 'depmod -a'.
-- Petter Reinholdtsen <pere@debian.org> Fri, 21 Mar 2003 15:13:56 +0100
cdrom-detect (0.15) unstable; urgency=low
* Correct typo in progress bar handling. Calling db_progress STOP after
db_progress STOP crashes cdebconfig.
-- Petter Reinholdtsen <pere@debian.org> Sun, 16 Mar 2003 10:29:58 +0100
cdrom-detect (0.14) unstable; urgency=low
* André Luís Lopes :
- Update pt_BR template translations.
* Petter Reinholdtsen
- Add usr/lib/prebaseconfig.d to debian/dirs.
- Avoid progress bar from 0 to 0 (it crashes cdebconf/newt).
- Rewrite some part of the script to handle 'set -e'.
- Avoid crashing when the module name or HW name is empty.
- Stop trying to mount on /cdrom after first successfull try.
-- Petter Reinholdtsen <pere@debian.org> Sat, 15 Mar 2003 23:39:05 +0100
cdrom-detect (0.13) unstable; urgency=low
* Upgraded Standards-Version from 3.5.2 to 3.5.8.
* Add depend on modutils-full to have the programs depmod and
modprobe available (Closes: #183542).
* Output progress to /var/log/messages instead of stdout.
* Add progress bar support, let the user know which HW was detected.
* Depend on cdebconf-udeb 0.31 or newer to get progress bar support.
* General code cleanup.
* Ran debconf2po-update to update the .po files.
-- Petter Reinholdtsen <pere@debian.org> Sat, 15 Mar 2003 19:43:30 +0100
cdrom-detect (0.12) unstable; urgency=low
* Sync hw detection code with the code in disk-detect.
* Remove out-commented code from postinst.
* Report module name when trying to load a module.
-- Petter Reinholdtsen <pere@debian.org> Tue, 4 Mar 2003 16:36:39 +0100
cdrom-detect (0.11) unstable; urgency=low
* Added Norwegian Nynorsk translations (nn.po) recieved from
Gaute Hvoslef Kvalnes.
* Updated nb.po recieved from Bjørn Steensrud.
* Fetch the distribution code name from the Release file, instead of
guessing based on the symlinks in cdrom/dists/.
* Use 'apt-install eject' to get the tool used in the prebaseconfig script
to eject the CD (Closes: #175187).
* Package cdrom-detect no longer need discover-data at build time.
* Martin Sjögren
- Change installer-menu-item to 15, as per doc/menu-item-numbers.txt
-- Petter Reinholdtsen <pere@debian.org> Sun, 23 Feb 2003 15:05:49 +0100
cdrom-detect (0.10) unstable; urgency=low
* Added Norwegian Bokmål (nb.po) translations recieved from
Bjørn Steensrud.
* Use new package discover-data-udeb instead of including the lists
ourself. A better fix might be to add discover-data-udeb as a
dependency for discover-udeb.
-- Petter Reinholdtsen <pere@debian.org> Tue, 4 Feb 2003 00:24:23 +0100
cdrom-detect (0.09) unstable; urgency=low
* In the prebaseconfig script, get rid of then error message when
failing to find eject in PATH. Use only /target/usr/bin/eject,
and only if it exists.
-- Petter Reinholdtsen <pere@debian.org> Mon, 20 Jan 2003 19:36:15 +0100
cdrom-detect (0.08) unstable; urgency=low
* Try harder to eject CDROM (Closes: #166952).
-- Petter Reinholdtsen <pere@debian.org> Thu, 16 Jan 2003 20:54:18 +0100
cdrom-detect (0.07) unstable; urgency=low
* Copy prebaseconfig.d script from prebaseconfig. Ejecting CDs belong
here, not in prebaseconfig.
* Remove discover/detect workaround. Tollef Fog Heen told me it is
no longer needed (Closes: #157735).
-- Petter Reinholdtsen <pere@debian.org> Sat, 11 Jan 2003 00:23:44 +0100
cdrom-detect (0.06) unstable; urgency=low
* Log the detected distribution.
* Set priority to low for debconf questions asking if missing kernel
module should be loaded from floppy, and question letting the user
know that a working CD was found.
* Add myself to uploaders.
-- Petter Reinholdtsen <pere@debian.org> Sun, 15 Dec 2002 18:22:51 +0100
cdrom-detect (0.05) unstable; urgency=low
* Petter Reinholdtsen
- Move content of /etc/modules.conf to the rootskel udeb, and remove
the file to avoid package conflict.
* Tollef Fog Heen
- Remove rm of conffile in debian/rules, since it made the package not
build.
-- Tollef Fog Heen <tfheen@debian.org> Sat, 7 Dec 2002 17:39:56 +0100
cdrom-detect (0.04) unstable; urgency=low
* Martin Sjögren
- Replace XBC with XB so our special control fields don't confuse the
changes files.
* André Luís Lopes
- Update pt_BR.po template translation.
-- Tollef Fog Heen <tfheen@debian.org> Thu, 14 Nov 2002 02:24:20 +0100
cdrom-detect (0.03) unstable; urgency=low
* exit 0 if the cd is already mounted.
* Set debconf answer mirror/distribution using info from the
detected CD.
* Convert to po-debconf, set Build-Depends-Indep: debhelper (>= 4.1.13)
to ensure that generated templates are right, and set output encoding
to UTF-8.
* Drop depend on non-existant package discover-basic-udeb.
* Correct floppy device, and try to load the floppy driver module
before mounting floppies.
* Make sure driver modules fetched from floppy are owned by root, to
avoid rejections from depmod -a.
* Use the same way as discover to find out if a module is available.
* Avoid error message if /usr/share/discover is missing (Closes: #157735).
-- Petter Reinholdtsen <pere@hungry.com> Mon, 28 Oct 2002 14:04:03 +0100
cdrom-detect (0.02) unstable; urgency=low
* Fix up using discover somewhat
* Remove emacs changelog variables
* Make _all udeb, not _$(ARCH)
* Strip off the Package header in the templates file, since it could
confuse cdebconf.
* Get rid of the build-dep on cdebconf-dev, we don't build-dep on it at
all.
* Use discover's database instead of detect, build-dep accordingly.
* Add Brazilian Portuguese and Danish debconf templates.
* Make debian-boot maintainer with hertzog and tfheen in uploaders.
-- Tollef Fog Heen <tfheen@debian.org> Tue, 24 Sep 2002 00:13:28 +0200
* Fix up language on templates.
-- Chris Tillman <tillman@voicetrak.com> Sun, 1 Sep 2002
cdrom-detect (0.01) unstable; urgency=low
* Initial Release.
* Create all the cdrom devices when launched.
* Include a modules.conf to stop complaints about net-pf-1 (unix)
missing.
-- Raphael Hertzog <hertzog@debian.org> Thu, 2 Aug 2001 21:54:56 +0200
|