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
|
user-setup (1.88) unstable; urgency=medium
* Team upload
[ Michel Le Bihan ]
* Allow underscore in username of first account. Closes: #977214
[ Updated translations ]
* Hindi (hi.po) by KushagraKarira
* Tamil (ta.po) by Vasudevan Tirumurti
* Traditional Chinese (zh_TW.po) by louies0623
-- Holger Wansing <hwansing@mailbox.org> Sat, 20 Feb 2021 17:27:21 +0100
user-setup (1.87) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Occitan (oc.po) by Quentin PAGÈS
* Romanian (ro.po) by Sergiu
-- Holger Wansing <hwansing@mailbox.org> Thu, 31 Dec 2020 00:12:24 +0100
user-setup (1.86) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by Vangelis Skarmoutsos
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Persian (fa.po) by سهیل خانعلیپور
* Marathi (mr.po) by Prachi Joshi
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Wed, 04 Nov 2020 19:58:43 +0100
user-setup (1.85) unstable; urgency=medium
* Team upload
[ Updated translations ]
* French (fr.po) by Baptiste Jammet
* Serbian (sr.po) by Filipovic Dragan
-- Holger Wansing <hwansing@mailbox.org> Mon, 21 Sep 2020 22:09:01 +0200
user-setup (1.84) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Icelandic (is.po) by Sveinn í Felli
* Norwegian Bokmal (nb.po) by Allan Nordhøy
-- Holger Wansing <hwansing@mailbox.org> Sun, 05 Jul 2020 22:00:27 +0200
user-setup (1.83) unstable; urgency=medium
* Team upload
[ Colin Watson ]
* Add input, kvm, and render to reserved-usernames; udev.postinst adds
these as system groups.
[ Holger Wansing ]
* Fix missing package name in 'Project-Id-Version' header of template.pot
file, to allow correct declaration in po|pot files.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
-- Holger Wansing <hwansing@mailbox.org> Sat, 01 Feb 2020 07:16:14 +0100
user-setup (1.82) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years!
[ Philip Hands ]
* enable salsa-CI pipeline
[ Updated translations ]
* Croatian (hr.po) by gogogogi
* Icelandic (is.po) by Sveinn í Felli
* Portuguese (pt.po) by Miguel Figueiredo
-- Holger Wansing <hwansing@mailbox.org> Sat, 12 Oct 2019 23:34:49 +0200
user-setup (1.81) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Wed, 06 Mar 2019 23:17:33 +0100
user-setup (1.80) unstable; urgency=medium
* Team upload
* Remove trailing whitespace from changelog file, to fix lintian tag.
[ Updated translations ]
* Persian (fa.po) by nima sahraneshin
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sat, 09 Feb 2019 22:50:35 +0100
user-setup (1.79) unstable; urgency=medium
* Team upload
[ Colin Watson ]
* Change priority of user-setup binary package to optional, since
"Priority: extra" is now deprecated.
[ Updated translations ]
* Croatian (hr.po) by Valentin Vidic
-- Holger Wansing <hwansing@mailbox.org> Wed, 31 Oct 2018 21:56:36 +0100
user-setup (1.78) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Updated translations ]
* German (de.po) by Holger Wansing
* Hebrew (he.po) by Yaron Shahrabani
* Telugu (te.po) by Praveen Illa
-- Holger Wansing <hwansing@mailbox.org> Mon, 13 Aug 2018 19:47:12 +0200
user-setup (1.77) unstable; urgency=medium
[ Updated translations ]
* Arabic (ar.po) by ButterflyOfFire
-- Christian Perrier <bubulle@debian.org> Wed, 11 Apr 2018 09:08:23 +0200
user-setup (1.76) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Tue, 20 Feb 2018 18:58:21 +0100
user-setup (1.75) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 29 Jan 2018 19:04:39 +0100
user-setup (1.74) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
-- Christian Perrier <bubulle@debian.org> Thu, 18 Jan 2018 19:03:42 +0100
user-setup (1.73) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Wed, 03 Jan 2018 06:56:33 +0100
user-setup (1.72) unstable; urgency=medium
[ Updated translations ]
* Lithuanian (lt.po) by Rimas Kudelis
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Mon, 27 Nov 2017 07:19:09 +0100
user-setup (1.71) unstable; urgency=medium
[ Didier Raboud ]
* As kdesudo got removed from stretch, remove the kde-specific
pre-pkgsel debconf-set-selection that preconfigured it.
[ Christian Perrier ]
* Drop spepcific handling of logins for some users including
myself..:-). Closes: #875909
[ Updated translations ]
* Albanian (sq.po) by Redon Skikuli
-- Christian Perrier <bubulle@debian.org> Sat, 16 Sep 2017 07:38:12 +0200
user-setup (1.69) unstable; urgency=medium
[ Steve McIntyre ]
* Add myself to uploaders
* Cope with a different *disabled* root password ("!*") in /etc/shadow as
well as the normal unset one ("*"). Closes: #866206, fixing a major
bug in the live installer.
-- Christian Perrier <bubulle@debian.org> Fri, 21 Jul 2017 07:18:27 +0200
user-setup (1.68) unstable; urgency=medium
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Yangfl
-- Christian Perrier <bubulle@debian.org> Sun, 02 Jul 2017 08:16:17 +0200
user-setup (1.67) unstable; urgency=medium
[ Colin Watson ]
* Update reserved-usernames from base-passwd 3.5.41.
* Add dnsmasq to reserved-usernames.
-- Christian Perrier <bubulle@debian.org> Mon, 28 Nov 2016 06:49:41 +0100
user-setup (1.66) unstable; urgency=medium
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Fri, 23 Sep 2016 18:03:19 +0200
user-setup (1.65) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 15 Aug 2016 17:53:23 +0200
user-setup (1.64) unstable; urgency=medium
* Update reserved-usernames from base-passwd 3.5.39.
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Thu, 04 Feb 2016 18:54:00 +0100
user-setup (1.63) unstable; urgency=medium
[ Updated translations ]
* Thai (th.po) by Theppitak Karoonboonyanan
-- Christian Perrier <bubulle@debian.org> Fri, 02 Oct 2015 14:33:55 +0200
user-setup (1.62) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Wed, 22 Jul 2015 06:51:24 +0200
user-setup (1.61) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Ioan Eugen Stan
-- Christian Perrier <bubulle@debian.org> Fri, 10 Apr 2015 13:07:02 +0200
user-setup (1.60) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Mon, 09 Mar 2015 08:55:14 +0100
user-setup (1.59) unstable; urgency=low
[ Updated translations ]
* Dutch (nl.po) by Frans Spiesschaert
-- Christian Perrier <bubulle@debian.org> Fri, 06 Feb 2015 07:07:12 +0100
user-setup (1.58) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 20 Sep 2014 14:43:00 +0200
user-setup (1.57) unstable; urgency=medium
* Drop powerdev from groups to which the first created user is added.
Thanks to Michael Biebl for pointing this.
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Estonian (et.po) by Mattias Põldaru
-- Christian Perrier <bubulle@debian.org> Sat, 06 Sep 2014 09:38:28 +0200
user-setup (1.56) unstable; urgency=medium
[ Updated translations ]
* Hungarian (hu.po) by Judit Gyimesi
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 19:08:58 +0100
user-setup (1.55) unstable; urgency=low
* Add first created user to lpadmin group so that it can use local
printers when installed. Closes: #697331
* Update Standards to 3.9.5 (checked)
-- Christian Perrier <bubulle@debian.org> Sun, 05 Jan 2014 12:33:09 +0100
user-setup (1.54) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
* Hungarian (hu.po) by Judit Gyimesi
-- Christian Perrier <bubulle@debian.org> Tue, 10 Dec 2013 15:33:06 +0100
user-setup (1.53) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Sun, 10 Nov 2013 14:57:08 +0100
user-setup (1.52) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Timo Jyrinki
-- Christian Perrier <bubulle@debian.org> Sun, 08 Sep 2013 19:24:50 +0200
user-setup (1.51) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 17 Aug 2013 10:55:40 +0200
user-setup (1.50) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
[ Christian Perrier ]
* Add myself to Uploaders
-- Christian Perrier <bubulle@debian.org> Sun, 14 Jul 2013 13:12:58 +0200
user-setup (1.49) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 19 May 2013 18:31:54 +0200
user-setup (1.48) unstable; urgency=low
[ Updated translations ]
* Japanese (ja.po) by Kenshi Muto
-- Christian Perrier <bubulle@debian.org> Thu, 13 Dec 2012 05:56:11 +0100
user-setup (1.47) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by ivarela
* Spanish (es.po) by Javier Fernández-Sanguino
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Wed, 17 Oct 2012 08:00:18 +0200
user-setup (1.46) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Holger Wansing
-- Christian Perrier <bubulle@debian.org> Sat, 18 Aug 2012 18:13:54 +0200
user-setup (1.45) unstable; urgency=low
* Team upload
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Fri, 22 Jun 2012 06:45:52 +0200
user-setup (1.44) unstable; urgency=low
* Team upload
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Wed, 20 Jun 2012 00:32:57 +0200
user-setup (1.43) unstable; urgency=low
* Team upload
* Replace XC-Package-Type with Package-Type
* Explicitly link GPL-2 document in debian/copyright
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by ivarela
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Timo Jyrinki
* Galician (gl.po) by Jorge Barreiro
* Hebrew (he.po) by Omer Zak
* Hungarian (hu.po) by SZERVÁC Attila
* Icelandic (is.po) by Sveinn í Felli
* Lao (lo.po) by Anousak Souphavanh
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by ioan-eugen stan
* Slovenian (sl.po) by Vanja Cvelbar
* Tamil (ta.po) by Kumar Appaiah
* Vietnamese (vi.po) by Hai-Nam Nguyen
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 18:19:02 +0200
user-setup (1.42) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Ayesha Akhtar
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 15:29:21 -0300
user-setup (1.41) unstable; urgency=low
* Check that usernames are no more than 32 characters long (closes:
#571750).
[ Updated translations ]
* Arabic (ar.po) by Ossama Khayat
* Asturian (ast.po) by Mikel González
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Besirovic
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Joe Hansen
* German (de.po) by Holger Wansing
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Estonian (et.po) by Mattias Põldaru
* Persian (fa.po) by Hamid
* French (fr.po) by Christian Perrier
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Kannada (kn.po) by Prabodh C P
* Korean (ko.po) by Changwoo Ryu
* Marathi (mr.po) by sampada
* Dutch (nl.po) by Jeroen Schot
* Polish (pl.po) by Marcin Owsiany
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Sinhala (si.po) by Danishka Navin
* Slovak (sk.po) by Ivan Masár
* Serbian (sr.po) by Karolina Kalic
* Swedish (sv.po) by Martin Bagge / brother
* Thai (th.po) by Kiatkachorn Ratanatharathorn
* Turkish (tr.po) by Mert Dirik
* Uyghur (ug.po) by Sahran
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Colin Watson <cjwatson@debian.org> Wed, 07 Mar 2012 23:56:11 +0000
user-setup (1.40) unstable; urgency=low
[ Christian Perrier ]
* Fix typo in German translation. Closes: #633553
[ Joey Hess ]
* Add first user to debian-tor group, which will allow vidalia to be used
to control tor.
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Kannada (kn.po) by vignesh prabhu
* Macedonian (mk.po) by Arangel Angov
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po) by Danishka Navin
* Turkish (tr.po) by Mert Dirik
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Sat, 19 Nov 2011 16:21:23 -0200
user-setup (1.39) unstable; urgency=low
* Bump Standards to 3.9.2
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Korean (ko.po) by Changwoo Ryu
* 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 Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Telugu (te.po) by Arjuna Rao Chavala
* Thai (th.po) by Theppitak Karoonboonyanan
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Sun, 24 Apr 2011 08:57:14 +0200
user-setup (1.38) unstable; urgency=low
[ Updated translations ]
* Russian (ru.po) by Yuri Kozlov
-- Christian Perrier <bubulle@debian.org> Thu, 30 Dec 2010 12:05:54 +0100
user-setup (1.37) unstable; urgency=low
[ Updated translations ]
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Lao (lo.po) by Anousak Souphavanh
* Northern Sami (se.po) by Børre Gaup
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 21:08:07 -0200
user-setup (1.36) unstable; urgency=low
[ Otavio Salvador ]
* Configure aptitude to use sudo if possible. Thanks to Mehdi Dogguy
by reporting it.
[ Updated translations ]
* Sinhala (si.po) by Danishka Navin
* Slovenian (sl.po) by Vanja Cvelbar
-- Otavio Salvador <otavio@debian.org> Wed, 24 Nov 2010 09:55:39 -0200
user-setup (1.35) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* Icelandic (is.po) by Sveinn í Felli
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 16:34:00 -0200
user-setup (1.34) unstable; urgency=low
* Add the newly created user to the sudo group if root is disabled
to be inline with introduction of the sudo group in sudo
1.7.2-2. Closes: #597239
-- Christian Perrier <bubulle@debian.org> Sun, 19 Sep 2010 08:58:26 +0200
user-setup (1.33) unstable; urgency=low
* Drop Serbian Latin translation until issues related to debconf
have been solved. Closes: #591630
-- Christian Perrier <bubulle@debian.org> Thu, 05 Aug 2010 14:11:59 +0200
user-setup (1.32) unstable; urgency=low
[ Christian Perrier ]
* Extend the existing system user check to UIDs from 1000 to 59999
as per Policy 3.9.0.0. Thanks to Kazuhiro NISHIYAMA for reporting
Closes: #590489
[ Colin Watson ]
* Skip user-setup questions in rescue mode.
[ Updated translations ]
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Serbian Latin (sr@latin.po) by Karolina Kalic
-- Colin Watson <cjwatson@debian.org> Tue, 03 Aug 2010 08:24:00 +0100
user-setup (1.31) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Bosnian (bs.po) by Armin Beširović
* Dzongkha (dz.po) by Jurmey Rabgay
* Persian (fa.po) by acathur
* Croatian (hr.po) by Josip Rodin
* Indonesian (id.po) by Arief S Fitrianto
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Nepali (ne.po)
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Tagalog (tl.po) by Eric Pareja
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 18:19:09 +0200
user-setup (1.30) unstable; urgency=low
[ Petter Reinholdtsen ]
* Move main-menu item before partitioning and installation of the base
system, to get more questions earlier during installation.
[ Updated translations ]
* Asturian (ast.po) by Iñigo Varela
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Omer Zak
* Georgian (ka.po) by Aiet Kolkhi
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by ioan-eugen stan
* Slovenian (sl.po) by Vanja Cvelbar
* Tamil (ta.po) by Dr,T,Vasudevan
-- Petter Reinholdtsen <pere@debian.org> Mon, 14 Jun 2010 00:08:14 +0200
user-setup (1.29) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
[ Frans Pop ]
* Add first user to group dip instead of dialout (see #568895; with thanks
to Marco d'Itri).
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Arabic (ar.po) by Ossama M. Khayat
* Asturian (ast.po) by astur
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Danish (da.po) by Ask Hjorth Larsen
* German (de.po) by Holger Wansing
* Greek, Modern (1453-) (el.po) by Emmanuel Galatoulas
* Estonian (et.po) by Mattias Põldaru
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Marce Villarino
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Milo Casagrande
* 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
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Vanja Cvelbar
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by 苏运强
-- Otavio Salvador <otavio@debian.org> Sun, 21 Feb 2010 23:56:30 -0300
user-setup (1.28) unstable; urgency=low
[ Joey Hess ]
* Add initial user to new bluetooth group (split from netdev group
in bluez-utils 4.40-3)
-- Otavio Salvador <otavio@ossystems.com.br> Tue, 21 Jul 2009 12:28:09 -0300
user-setup (1.27) unstable; urgency=low
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Basque (eu.po) by pi
* Finnish (fi.po) by Esko Arajärvi
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Christian Perrier <bubulle@debian.org> Sun, 14 Jun 2009 19:26:17 +0200
user-setup (1.26) unstable; urgency=low
[ Frans Pop ]
* user-setup-apply: remove unused variable OPTS.
* user-setup-apply: restore compatibility with Lenny version of passwd
(without PAM support).
[ Otavio Salvador ]
* user-setup-apply: use dpkg-query instead of dpkg -s to get the passwd
package version. Thanks to Adeodato Simó for the tip.
-- Christian Perrier <bubulle@debian.org> Sun, 24 May 2009 15:07:22 +0200
user-setup (1.25) unstable; urgency=low
* Brown paper bag release
* Do not use chpasswd when the password has been preseeded.
Thanks to Nicolas François for pointing this.
-- Christian Perrier <bubulle@debian.org> Wed, 20 May 2009 19:31:55 +0200
user-setup (1.24) unstable; urgency=low
[ Colin Watson ]
* Be more careful about test arguments in the root_password function, in
case (for example) the encrypted password string is "!" (thanks, Uli
Heller; LP: #307443).
[ Joey Hess ]
* Add initial user to scanner group, (created by libsane).
[ Frans Pop ]
* Remove myself as uploader.
[ Luk Claes ]
* Add myself as uploader.
* Disable root account and activate sudo when there is no root passwd given.
[ Christian Perrier ]
* No longer use the "-m" switch of chpasswd. It uses PAM now and no
longer has this switch. The password will use settings from
libpam-runtime, so MD5 by default.
Closes: #529475
* Replace chpasswd by usermod to set pre-encrypted passwords.
Thanks to Jordi Pujol for the patch.
Closes: #528610
* Use 6 as debhelper compatibility level
* Bump Standards to 3.8.1 (checked, no change)
* Add lintian overrides
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by marce villarino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Wed, 20 May 2009 09:40:54 +0200
user-setup (1.23) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bosnian (bs.po) by Armin Besirovic
* Danish (da.po)
* Croatian (hr.po) by Josip Rodin
* Latvian (lv.po) by Peteris Krisjanis
* Macedonian (mk.po) by Arangel Angov
* Serbian (sr.po) by Veselin Mijušković
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 20:52:37 -0300
user-setup (1.22) unstable; urgency=low
[ Jérémy Bobbio ]
* Source confmodule in pre-pkgsel.d/10kdesudo.
* As cdebconf is now fixed, on errors in root password, return to root
password dialog (and not the one before it).
Depends: cdebconf-udeb (>= 0.133)
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* French (fr.po) by Christian Perrier
* Kurdish (ku.po) by Erdal Ronahi
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Turkish (tr.po) by Mert Dirik
-- Jérémy Bobbio <lunar@debian.org> Tue, 26 Aug 2008 10:56:42 +0200
user-setup (1.21) unstable; urgency=low
[ Frans Pop ]
* user-setup-apply: avoid locale errors from perl when used in D-I.
* Add pre-pkgsel hook script to setup kdesudo for KDE desktop installs
without root account (#485655). Thanks to Didier Raboud for bringing up
the subject and suggesting the solution.
[ Colin Watson ]
* Don't exit user-setup-apply if update-gconf-defaults fails.
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Finnish (fi.po) by Esko Arajärvi
* Italian (it.po) by Milo Casagrande
* Turkish (tr.po) by Mert Dirik
* Simplified Chinese (zh_CN.po) by Kov Chai
-- Frans Pop <fjp@debian.org> Wed, 16 Jul 2008 13:52:07 +0200
user-setup (1.20) unstable; urgency=low
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Gujarati (gu.po) by Kartik Mistry
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po) by Sampada
* Dutch (nl.po) by Frans Pop
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 00:47:15 -0300
user-setup (1.19) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Arief S Fitrianto
* Latvian (lv.po) by Viesturs Zarins
* Panjabi (pa.po) by Amanpreet Singh Alam
* Turkish (tr.po) by Recai Oktaş
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 09:28:30 -0200
user-setup (1.18) unstable; urgency=low
* In shadow version 4.1.0, the chpassword -e and -m options are
mutially exclusive. Avoid sending both options when a pre-encrypted
password is provided by preseeding. Thanks, Jordi-Pujol. Closes: #462387
-- Joey Hess <joeyh@debian.org> Thu, 24 Jan 2008 17:05:00 -0500
user-setup (1.17) unstable; urgency=low
[ Joey Hess ]
* Call dh_md5sums.
[ Otavio Salvador ]
* Bump Standards-Version to 3.7.2 (no changes needed).
[ Colin Watson ]
* Fix comment attached to passwd/user-default-groups.
* hal was renamed to haldaemon in hal 0.5.7.1-1; Hal is also a reasonably
common human name. Remove it from reserved-usernames.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Basque (eu.po) by Piarres Beobide
* Italian (it.po) by Stefano Canepa
* Korean (ko.po) by Changwoo Ryu
* Malayalam (ml.po) by Praveen|പരവീണ A|എ
* Panjabi (pa.po) by A S Alam
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Vietnamese (vi.po) by Clytie Siddall
-- Christian Perrier <bubulle@debian.org> Fri, 11 Jan 2008 18:56:46 +0100
user-setup (1.16) unstable; urgency=low
* Move menu item to come after base-installer, and just before apt-setup.
[ Updated translations ]
* Bengali (bn.po) by Jamil Ahmed
* Punjabi (Gurmukhi) (pa.po) by A S Alam
* Portuguese (pt.po) by Miguel Figueiredo
-- Joey Hess <joeyh@debian.org> Wed, 25 Jul 2007 13:39:40 -0400
user-setup (1.15) unstable; urgency=low
[ Otavio Salvador ]
* Add support to control which default groups the initial user will be
added. Preseed it at passwd/user-default-groups. Closes: #426452
-- Christian Perrier <bubulle@debian.org> Fri, 29 Jun 2007 06:33:38 +0200
user-setup (1.14) unstable; urgency=low
* Additionally, fix chroot call bug in sudo installation code.
-- Joey Hess <joeyh@debian.org> Tue, 01 May 2007 17:12:03 -0400
user-setup (1.13) unstable; urgency=low
[ Colin Watson ]
* Add mythtv to reserved-usernames (https://launchpad.net/bugs/86358).
[ Joey Hess ]
* Fix user-setup-apply to properly set up gksu alternatives for sudo mode.
The chroot calls were broken. Closes: #421323
-- Joey Hess <joeyh@debian.org> Tue, 01 May 2007 17:10:31 -0400
user-setup (1.12) unstable; urgency=low
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:34:34 -0400
user-setup (1.11) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Jens Seidel
* Basque (eu.po) by Piarres Beobide
* 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 17:01:40 +0100
user-setup (1.10) unstable; urgency=low
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:57:11 +0100
user-setup (1.9) unstable; urgency=low
[ Colin Watson ]
* Refuse to apply an empty root password. I don't think this can happen,
but it's a useful sanity check.
[ Frans Pop ]
* Revert the change from 1.5 and return to STATE 0 again on errors in root
password. Doing the logical thing triggers a bug in cdebconf (#407577).
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Danish (da.po) by Claus Hindsgaul
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hebrew (he.po) by Lior Kaplan
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Mon, 29 Jan 2007 21:34:39 +0100
user-setup (1.8) unstable; urgency=low
[ Joey Hess ]
* Fix backing up after having chosen to not enable root logins, and changing
it to enable root logins. Since the crypted password was set to a locked
password in the first pass, the second pass failed to ask for a root
password. Closes: #400766, #388003.
[ Frans Pop ]
* Add myself to uploaders.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Rêzan Tovjîn
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by A S Alam
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Thu, 30 Nov 2006 15:38:33 +0100
user-setup (1.7) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Prasad Pokharel
* Dutch (nl.po) by Bart Cornelis
* Romanian (ro.po) by Eddy Petrișor
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 16:31:47 +0200
user-setup (1.6) unstable; urgency=low
[ Colin Watson ]
* Detect and error out on reserved usernames, i.e. those that are already
used by some parts of the system. Unfortunately there's no particularly
straightforward way to identify a reserved username, and the only way I
can think of is to maintain a blacklist; so I've collated this from the
base-passwd master files and those user and group names I found on some
of my systems. Feel free to extend this as the need arises.
[ Christian Perrier ]
* Spell "username" consistently.
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay
* Greek (el.po) by quad-nrg.net
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* 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
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmal (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* 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
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Fri, 6 Oct 2006 03:17:43 +0200
user-setup (1.5) unstable; urgency=low
[ Frans Pop ]
* On errors in root password, return to root password dialog (and not the
one before it).
* As the password and password confirmation are now asked at the same
priority, remove code in password check to support differing priorities.
[ Joey Hess ]
* Configure gksu to use sudo, via an alternative, if libgksu2-0 version
1.9.8-2 is installed, and sudo is being used. Closes: #382670
[ 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
* Hebrew (he.po) by Lior Kaplan
* Indonesian (id.po) by Arief S Fitrianto
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Tagalog (tl.po) by Eric Pareja
* Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 6 Sep 2006 15:13:22 -0400
user-setup (1.4) unstable; urgency=low
[ Colin Watson ]
* Fix non-POSIX shell use that confuses busybox if the root password is
currently set to "!".
-- Christian Perrier <bubulle@debian.org> Mon, 24 Jul 2006 18:32:00 +0200
user-setup (1.3) unstable; urgency=low
* Add first user to two additional groups: netdev and powerdev
Note that this assumes that something creates these groups during
the task installation, as hal does with powerdev. The first user is added
to the groups in finish-install so the groups need not be static.
Closes: #352713
[ Updated translations ]
* Estonian (et.po) by Siim Põder
* Dutch (nl.po) by Bart Cornelis
* Portuguese (pt.po) by Miguel Figueiredo
* Swedish (sv.po) by Daniel Nylander
-- Joey Hess <joeyh@debian.org> Mon, 10 Jul 2006 18:23:44 -0400
user-setup (1.2) unstable; urgency=low
[ Christian Perrier ]
* Space-indentation cleanup in user-setup-ask.
* Switch from prebaseconfig.d to finish-install.d
[ Joey Hess ]
* Comment out STATE debugging message.
* Check for the passwd file before grepping it.
[ Colin Watson ]
* Be more paranoid about clearing passwords from the cdebconf database.
* Fix up permissions of user's home directory in case a mount point was
created underneath it by partman (closes:
https://launchpad.net/bugs/16640).
[ Joey Hess ]
* Rename finish-install template.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po)
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Italian (it.po) by Giuseppe Sacco
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Portuguese (pt.po) by Miguel Figueiredo
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Wed, 7 Jun 2006 22:13:44 -0400
user-setup (1.1) unstable; urgency=low
[ Tollef Fog Heen ]
* Don't use perl to pass parameters to chpasswd.
[ Joey Hess ]
* Add passwd/root-login question (asked at medium priority), currently
defaulting to true.
* If root-login is false, skip root password prompts, lock the root account,
always make a user account, install sudo, and configure /etc/sudoers to
allow the user to become root. Closes: #344873
[ 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 (Brazil) (pt_BR.po) by André Luís Lopes
* Portuguese (pt.po) by Miguel Figueiredo
* 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
* 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
-- Christian Perrier <bubulle@debian.org> Mon, 17 Apr 2006 18:42:25 +0200
user-setup (1.0) unstable; urgency=low
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Hindi (hi.po) by Nishant Sharma
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Punjabi (Gurmukhi) (pa_IN.po) by Amanpreet Singh Alam
* Romanian (ro.po) by Eddy Petrişor
* Slovenian (sl.po) by Jure Cuhalev
* Albanian (sq.po) by Elian Myftiu
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
[ Christian Perrier ]
* Bump to 1.0 as is fairly stable now
-- Christian Perrier <bubulle@debian.org> Tue, 24 Jan 2006 22:14:22 +0100
user-setup (0.05) unstable; urgency=low
[ Colin Watson ]
* Change the types of error questions from "note" to "error".
[ Updated translations ]
* Bulgarian (bg.po) by Ognyan Kulev
* Hebrew (he.po) by Lior Kaplan
* Traditional Chinese (zh_TW.po) by Tetralet
[ Christian Perrier ]
* Have the udeb depend on cdebconf-udeb and use a better dependency for
the deb
-- Christian Perrier <bubulle@debian.org> Wed, 11 Jan 2006 07:58:27 +0100
user-setup (0.04) unstable; urgency=low
[ Colin Watson ]
* Add /usr/share/common-licenses/GPL reference to debian/copyright.
* Add a primitive user-setup.deb, to replace the old 'dpkg-reconfigure
passwd.config'; may be of some use in live CD-style environments.
* Rename user-setup to user-setup-ask to make room for a user-setup
wrapper script in the .deb.
* Add myself to Uploaders.
[ Christian Perrier ]
* Call commands using [a-z] intervals under a C locale
Closes: #343636
[ Joey Hess ]
* Exit 10 on backup out of the program, to work properly with main-menu.
* Use -m flag of chpasswd rather than doing the md5 generation by hand.
[ Updated translations ]
* Catalan (ca.po) by Guillem Jover
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Finnish (fi.po) by Tapio Lehtonen
* Galician (gl.po) by Jacobo Tarrio
* Indonesian (id.po) by Parlin Imanuel Toh
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Dutch (nl.po) by Frans Pop
* Polish (pl.po) by Bartosz Fenski
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
-- Colin Watson <cjwatson@debian.org> Mon, 2 Jan 2006 14:05:32 +0000
user-setup (0.03) unstable; urgency=low
[ Christian Perrier ]
* Add the first created user to useful groups (code coming
from base-config)
* log all calls to adduser
[ Colin Watson ]
* Fix setpassword: perl is already run in the chroot, so there's no need
to try to chroot again.
[ Joey Hess ]
* Add po/output file to ensure utf-8 encoding.
-- Christian Perrier <bubulle@debian.org> Sun, 4 Dec 2005 07:11:30 +0100
user-setup (0.02) unstable; urgency=low
[ Colin Watson ]
* Fix clearing of encrypted user passwords from the debconf database.
* Remove a few bits of dead code.
* Exit with code 10 to back up to main menu, not 30.
* Use a prebaseconfig script and prompt the user earlier
* Remove some unnecessary calls to chroot.
* Simplify state machine so that one fewer line has to be changed when
adding or removing states.
[ Christian Perrier ]
* Add a main menu title
* Add a template for the prebaseconfig progress bar
* Removed useless and harmful db_settitle in user-setup
-- Christian Perrier <bubulle@debian.org> Sun, 27 Nov 2005 19:59:52 +0100
user-setup (0.01) unstable; urgency=low
[ Christian Perrier ]
* First release as a udeb broken out from shadow (and base-config)
and rewritten.
-- Christian Perrier <bubulle@debian.org> Sun, 13 Nov 2005 20:07:32 +0100
|