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
|
newt (0.52.2-10+etch1) oldstable-security; urgency=high
* Non-maintainer upload by the security team
* Include patch to fix buffer overflow in content processing code
Fixes: CVE-2009-2905
-- Steffen Joeris <white@debian.org> Tue, 22 Sep 2009 14:52:22 +0200
newt (0.52.2-10) unstable; urgency=low
* Correction to Slovenian translation: thanks to Matej Kovacic.
Closes: #405582.
* Fix whiptail --help response: --defaultno not -defaultno. Closes: #400972.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 22 Jan 2007 16:54:48 +0000
newt (0.52.2-9) unstable; urgency=low
* Add Tamil translation from Senthil Kumar B. Closes: #404670.
* Add entry to LINGUAS file so that Kurdish translation is included.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 31 Dec 2006 10:29:31 +0000
newt (0.52.2-8) unstable; urgency=low
* Change libnewt0.52 priority to important, as it is required by whiptail,
which is important.
* Fix by Eugeniy Meshcheryakov for inputbox breakage under non-ASCII
locales. Closes: #384391, #384787.
* Moved debhelper dependency to >= 5.0.37.2, to ensure latest python policy
support.
* libcheck: Remove unnecessary dependencies on -lm, -lslang, -lpopt from
libnewt and executables.
* When fribidi lookup fails, record the fact so we don't try to dlopen()
libfribidi on every text string printed.
* newt-tcl: rename /usr/lib/libtwhiptcl.so/ to /usr/lib/whiptcl for clarity.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 29 Sep 2006 13:25:33 +0100
newt (0.52.2-7) unstable; urgency=low
* debian/patches/222_fix_gauge_crash.patch
- prevent a negative number input to the gauge dialog from crashing
whiptail by smashing the stack. Thanks to Ryan Lortie.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 10 Aug 2006 10:18:08 +0100
newt (0.52.2-6) experimental; urgency=low
* Acknowledge NMU with thanks. Closes: #379566.
* Updated python change patch to only build on python2.3, python2.4; makes
no assumptions about python2.5, etc. Thanks to Matthias Klose.
Closes: #372811.
* Clear dlerror() state before trying dlopen(), to try fixing
failures in loading.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 28 Jul 2006 09:41:39 +0100
newt (0.52.2-5.1) unstable; urgency=low
* NMU
* Apply patch from Eugeniy Meshcheryako to regenerate configure during build
so that bidi support is enabled again. Closes: #379566
-- Joey Hess <joeyh@debian.org> Mon, 24 Jul 2006 12:24:38 -0400
newt (0.52.2-5) unstable; urgency=low
* Acknowledge NMU with thanks. Closes: #372811.
* Move to new Python policy. This package should now work on
python2.3 and python2.4.
* Move to Standards-Version: 3.7.2 : No changes required.
* Patches from Fedora 0.52.2-7 :
- Make the default colours more friendly to 8-color terminals
- handle listbox and checkboxtree focus better. Closes: #189038.
- turn off cursor when entry terminated form
- fix handling windows larger than screen size
- fix checkboxtree positioning.
* Translations:
- Thai, thanks to Theppitak Karoonboonyanan. Closes: #367230.
- Esperanto, thanks to Serge Leblanc. Closes: #366077, #369240.
- Nepali, thanks to Paras pradhan. Closes: #369357.
* Fixed bug that meant Bengali was not properly included.
* libnewt0.52: Move priority from required to standard, to match
overrides.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 20 Jun 2006 21:15:43 +0100
newt (0.52.2-4.1) experimental; urgency=low
* Build for python2.4.
* Hardcode the python dependencies for this upload, so that we can build
without 2.4 as the default version.
-- Matthias Klose <doko@debian.org> Sun, 11 Jun 2006 15:07:35 +0000
newt (0.52.2-4) unstable; urgency=low
* Translations:
- Dzongkha, thanks to Pema Geyleg. Closes: #361793.
* Further accessability improvements by Samuel Thibault. Closes: #337171.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 11 Apr 2006 17:52:56 +0100
newt (0.52.2-3) unstable; urgency=low
* Translations:
- Khmer, thanks to Khoem Sokhem. Closes: #359671.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 28 Mar 2006 21:52:06 +0100
newt (0.52.2-2) unstable; urgency=low
* Change Punjabi from pa_IN to pa, following debian-i18n discussion.
Closes: #357611.
* Release as unstable, causing a transition to new libnewt0.52.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 19 Mar 2006 14:25:06 +0000
newt (0.52.2-1) experimental; urgency=low
* New upstream release.
* Change whiptail section: from base to utils to match override.
* Updated Greek translation from Kostas Papadimas. Closes: #344583.
* Patches from RedHat:
- pgupdown-crash: fixes crash in checkboxtree using pgup/down
- scrollbar: more pleasing scrollbars.
* Include cursor-a11y.patch for better accessability. Closes: #337171.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 19 Jan 2006 21:44:03 +0000
newt (0.52.1-3) experimental; urgency=low
* New Bengali translation by Progga. Closes: #340650.
* snack.py: function EntryWindow now works with preset values for entries.
Closes: #340366.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 25 Nov 2005 20:50:49 +0000
newt (0.52.1-2) experimental; urgency=low
* Include a11y patches by Samuel Thibault for accessability.
Closes: #337171.
* move to DH_COMPAT=5; include ${misc:Depends} to Dependencies.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 19 Nov 2005 12:05:48 +0000
newt (0.52.1-1) experimental; urgency=low
* New upstream release.
* New Kurdish translation by Erdal Ronahi. Closes: #335077.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 22 Oct 2005 20:20:38 +0100
newt (0.51.6-31) unstable; urgency=low
* don't free() a pointer that will be NULL if fribidi is not installed.
Closes: #317451, #326068.
* Build-Depend on libfribid-dev, libnewt0.51 recommends libfribidi0.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 8 Sep 2005 22:30:22 +0100
newt (0.51.6-30) unstable; urgency=low
* Improved BIDI patch from Eugeniy Meshcheryakov. Closes: #323832.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 22 Aug 2005 19:03:02 +0100
newt (0.51.6-29) unstable; urgency=low
* Translations:
- Xhosa thanks to Xhosa team and Canonical. Closes: #319480.
* Fixed syntax errors in changelog that lintian now complains of.
* Better dependency generation for whiptail; no doubled dependencies
on libnewt0.51
-- Alastair McKinstry <mckinstry@debian.org> Thu, 4 Aug 2005 18:56:34 +0100
newt (0.51.6-28) unstable; urgency=low
* Patch from Eugeniy Meshcheryakov to do fribidi in newt. Closes: #318239.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 14 Jul 2005 21:54:38 +0100
newt (0.51.6-27) unstable; urgency=low
* Translations:
- Wolof (wo) thanks to Mouhamadou Mamoune Mbacke. Closes: #317535.
* Add explanation to whiptail man page as to how to start text with a dash
'-'. Closes: #284708.
* Move to Standards-Version: 3.6.2
-- Alastair McKinstry <mckinstry@debian.org> Sun, 10 Jul 2005 08:32:24 +0100
newt (0.51.6-26) unstable; urgency=low
* Build against libslang2-dev (>= 2.0.4-2) for fribidi patch.
* Upload to unstable.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 26 Jun 2005 10:20:18 +0100
newt (0.51.6-25) experimental; urgency=low
* libslang2: use SLutf8_enable(-1) to enable UTF8 handling.
* Patch from Eugeniy Meshcheryakov to handle incorrect input in
non-ASCII modes. Closes: #304657.
* libnewt0.51: set priority to required, to match override.
* whiptail: set priority to important, to match override.
* Generate newt.pot during package build. Closes: #313523.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 25 Jun 2005 13:12:54 +0100
newt (0.51.6-24) experimental; urgency=low
* Build against libslang2
* Translations:
- Punjabi (pa_IN) thanks to Amanpreet Singh Alam. Closes: #309793.
- Estonian thanks to Siim Põder. Closes: #312465.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 13 Jun 2005 21:23:47 +0100
newt (0.51.6-23) unstable; urgency=low
* Build against libc6 from unstable, not experimental. Closes: #308550.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 13 May 2005 07:43:48 +0100
newt (0.51.6-22) unstable; urgency=low
* Translations:
- Vietnamese, thanks to Clytie Siddall. Closes: #306612.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 9 May 2005 20:53:22 +0100
newt (0.51.6-21) unstable; urgency=low
* Translations:
- Tagalog, thanks to Eric Pareja. Closes: #288908.
* Corrections for typos in whiptail man page. Thanks to A. Costa.
Closes: #287349.
* whiptail: textbox help should say <file> not <text>. Closes: #287352.
* Interpret C-u as discard. Thanks to Matt Kraai for patch;
Closes: #275588.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 20 Feb 2005 15:33:50 +0000
newt (0.51.6-20) unstable; urgency=low
* Upgrade bug; lbnewt0.51 was supplying /usr/lib/libnewt.so in conflict
with libnewt-dev. Closes: #283185.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 27 Nov 2004 09:49:00 +0000
newt (0.51.6-19) unstable; urgency=low
* Translations:
- Welsh, thanks to Dafydd Harries. Closes: #282178.
- Galician, thanks to Jacobo Tarrio. Closes: #282231.
- Albanian, thanks to Elian Myftiu. Closes: #282158.
- Malagasy, thanks to Jaonary Rabarisoa. Closes: #282444.
- Hindi, thanks to Ravishankar Shrivastava. Closes: #282445.
* Fix regression: Tradition Chinese translations that were over-written
by Simplified Chinese by mistake. Closes: #282948.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 25 Nov 2004 20:44:04 +0000
newt (0.51.6-18) unstable; urgency=low
* Macedonian translation thanks to Georgi Stanojevski. Closes: #275778.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 17 Oct 2004 20:18:57 +0100
newt (0.51.6-17) unstable; urgency=low
* Romanian translation thanks to Eddy Petrisor. Closes: #275121.
* Traditional Chinese translation thanks to Tetralet. Closes: #272618.
-- Alastair McKinstry <mckinstry@debian.org> Wed, 6 Oct 2004 20:52:22 +0100
newt (0.51.6-16) unstable; urgency=low
* Include Bulgarian translation by Ognyan Kulev.
Closes: #271425, #272378.
* Remove reference to hot-key numbers (a dialog-only feature) from
whiptail man-page. Closes: #267965.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 20 Sep 2004 21:45:32 +0100
newt (0.51.6-15) unstable; urgency=low
* Ensure whiptail depends on ${Source-Version} of libnewt0.51.
Closes: #269835.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 5 Sep 2004 20:41:08 +0100
newt (0.51.6-12) unstable; urgency=low
* Build for sid.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 27 Aug 2004 22:20:01 +0100
newt (0.51.6-6sarge) testing-proposed-updates; urgency=low
* Set reset charset properly when doing line-drawing; Closes: #263780
* FTBFS on AMD64,alpha. Closes: #265214.
* Build whiptail against shared libnewt.so; Closes: #265721
-- Alastair McKinstry <mckinstry@debian.org> Sat, 14 Aug 2004 23:08:41 +0100
newt (0.51.6-11) unstable; urgency=low
* Acknowledging NMU: Closes: #262107.
# Ensure wstrlen is visible to newt binaries. Closes: #264723.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 13 Aug 2004 20:29:31 +0100
newt (0.51.6-10.1) unstable; urgency=high
* NMU
* libnewt-dev should depend on 0.51, not itself.
-- Joey Hess <joeyh@debian.org> Thu, 29 Jul 2004 15:01:19 -0400
newt (0.51.6-10) unstable; urgency=low
* Tighten dependencies to latest versions of newt, slang.
Closes: #261314, #260992.
* Translations:
- ar.po thanks to Arabeyes project. Closes: #260646.
- hr.po thanks to Krunoslav Gernhard. Closes: #261421.
* Add debian/watch file.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 26 Jul 2004 22:32:54 +0100
newt (0.51.6-9) unstable; urgency=low
* Build against the correct slang libraries. Closes: #259283.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 13 Jul 2004 22:44:40 +0100
newt (0.51.6-8) unstable; urgency=low
* FIx garbled display in top line of boxes. Closes: #257488.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 12 Jul 2004 19:22:55 +0100
newt (0.51.6-7) unstable; urgency=low
* Fix display problem with 'hidden' checkbox entries in whiptail being
shown. Closes: #257807.
* Used versioned symbols in libnewt.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 8 Jul 2004 20:49:22 +0100
newt (0.51.6-6) unstable; urgency=low
* Echo '*' in password field in whiptail. Closes: #254411.
* Fix segfaults on bad parameters (box sizes). Closes: #253512.
* Update copyright file to point to better source. Closes: #254975.
* ENTER in multiselect (check and radio lists) now selects;
tabbing to OK not required. Closes: #252751.
* Removed XSI:'isms from python-newt.prerm.in ; Closes: #256508.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 28 Jun 2004 20:45:09 +0100
newt (0.51.6-5) unstable; urgency=low
* Correction to Catalan translation. Closes: #251790.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 8 Jun 2004 22:29:40 +0100
newt (0.51.6-4) unstable; urgency=low
* Change Catalan po file to reflect UTF-8 encoding.
Closes: #251790, #251811.
* Bosnian translationi by Safir Šećerović. Closes: #251138.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 31 May 2004 21:30:06 +0100
newt (0.51.6-3) unstable; urgency=low
* Don't free ptr in entry.c twice. Closes: #246378.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 4 May 2004 20:24:09 +0100
newt (0.51.6-2) unstable; urgency=low
* Translations:
- Portuguese by Miguel Figueiredo. Closes: #241311.
- Slovak by Peter Mann. Closes: #246099.
* Fix python indentation in snack.py. Closes: #236837.
* Don't truncate strings in UTF-8 mode in whiptail. Closes: #232426.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 26 Apr 2004 20:27:23 +0100
newt (0.51.6-1) unstable; urgency=low
* New Upstream release.
* Switched to dbs:
- Cleanup of debian/rules
- broke 0.51.4 changes into debian/patches
* newt.c: Don't spin on the terminal window dying. Closes: #203988.
* Use terminfo bindings: patch from Henning Makholm. Closes: #219043.
* Trim long titles rather than failing. Closes: #236114.
* Add GNU options --help, --version to whiptail.
* Translations:
- Turkish by Recai Oktas. Closes: #239149.
- Korean by Changwoo Ryu. Closes: #241988.
- Indonesian by I Gede Wijaya S. Closes: #243454.
- Basque by Piarres Beobide Egaña. Closes: #243587.
- Hebrew by Lior Kaplan.
* Patch for non-ASCII input, thanks to Eugeniy Meshcheryakov.
Closes: #238873.
Special thanks to Eugeniy Meshcheryakov for fixes and testing.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 25 Apr 2004 19:12:19 +0000
newt (0.51.4-21) unstable; urgency=low
* zh_CN.po: Simplified Chinese translation from Carlos Z.F. Liu.
Closes: #232134.
* whiptail.c: guessSize: fix wrapping/truncation of text when autosizing
dialogs. Closes: #224333, #231634.
* whiptail.c: Translate "\n" in text to newlines. Closes: #218991, #212255.
-- Alastair McKinstry <mckinstry@debian.org> Wed, 11 Feb 2004 15:37:07 +0000
newt (0.51.4-20) unstable; urgency=low
The "Further adventures in translation" release.
* cs.po: Czech translation from Miroslav Kure. Closes: #227116.
* nl.po: Dutch translation from Bart Cornelis. Closes: #227102.
* sl.po: Slovenian translation from Jure Cuhalev. Closes: #227519.
* lt.po: Lithuanian translation from Kęstutis Biliūnas. Closes: #227566.
* es.po: Improved Spanish translation from Carlos Valdivia Yagüe.
* da.po: Danish translation from Claus Hindsgaul.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 6 Feb 2004 18:04:25 +0000
newt (0.51.4-19) unstable; urgency=medium
The "Do translators travel in packs?" release.
* fi.po: Finnish translation from Tommi Vainikainen. Closes: #226993.
* fr.po, ja.po: Fix comments; these are not German translations.
Closes: #226964.
* ga.po: Convert to UTF-8.
* it.po: Italian translation from Giuseppe Sacco, and build fix
for ja.po.
Closes: #226942, #226943.
* sl.po: Slovenian translation from Jure Cuhalev. Closes: #226901.
* hu.po: New Hungarian translation from VEROK Istvan. Closes: #226982.
* ru.po: New Russian translation from Nikolai Prokoschenko. Closes: #226945.
* sv.po: Fix spelling mistake. Thanks to André Dahlqvist.
* el.po: New Greek translation from Konstantinos Margaritis.
Closes: #226922.
* pl.po: New Polish translation from Bartosz Fenski aka fEnIo.
Closes: #226921.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 10 Jan 2004 07:28:36 +0000
newt (0.51.4-18) unstable; urgency=low
* whiptail / whiptcl: Resize listboxes to fit on screen.
Closes: #201619, #206616.
* ESC key now works. Closes: #52477, #110268.
* Add examples to libnewt-dev.
* Update version, authors in whiptail(1).
-- Alastair McKinstry <mckinstry@debian.org> Fri, 19 Sep 2003 20:52:48 +0000
newt (0.51.4-17) unstable; urgency=low
* whiptail: Return -1 on error, to distinguish Ok, Cancel, Error.
Closes: #86400. Closes: #209029.
* Add documentation for python-newt. Closes: #151783.
* Fix build error for po/Makefile.in.in. Closes: #207047.
* newt should Build-Depend on gettext. Closes: #207477.
* Build-Depend on debhelper >= 4.1.1. Closes: #207037.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 15 Sep 2003 20:35:56 +0100
newt (0.51.4-16) unstable; urgency=low
* Ship files for python2.3, not python2.2. Closes: #205481, #205505.
* Change es.po to UTF-8, to correct charset error
* Correct spelling in sv.po.
Closes: #206218, #206219, #206220, #206221.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 18 Aug 2003 22:02:11 +0100
newt (0.51.4-15) unstable; urgency=low
* Removed unnecessary dependencies on python << 2.3; Closes: #204876.
* Changed maintainer email to mckinstry@debian.org
* Moved to Standards-Version: 3.6.0; no changes required.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 12 Aug 2003 22:09:43 +0100
newt (0.51.4-14) unstable; urgency=low
* Added Brazilian Portugese translation from Andre Luis Lopes.
Closes: #202101.
* chmod +x ./mkinstalldirs. Closes: #202078.
-- Alastair McKinstry <mckinstry@computer.org> Sun, 20 Jul 2003 09:28:44 +0100
newt (0.51.4-13) unstable; urgency=low
* Fix installation of .mo files. Closes: #202003.
* Added french translation for whiptail from Christian Perrier. Closes: #201864.
* Added Japanese translation for whipatil from Tomohiro KUBOTA. Closes: #202005.
-- Alastair McKinstry <mckinstry@computer.org> Sat, 19 Jul 2003 08:31:49 +0100
newt (0.51.4-12) unstable; urgency=low
* Re-enabled Ctrl-U key. Closes: #184486, #191487.
* Enable i18n, with whiptail button translations to
Catalan, Spanish, Irish, German, Swedish and Norwegian. Closes: #54536.
-- Alastair McKinstry <mckinstry@computer.org> Sun, 13 Jul 2003 12:33:58 +0100
newt (0.51.4-11) unstable; urgency=low
* Fixed misleading colors in compact buttons. Closes: #195775,#198800.
* Updated to policy 3.6.0; no changes needed.
-- Alastair McKinstry <mckinstry@computer.org> Mon, 14 Jul 2003 10:16:11 +0100
newt (0.51.4-10) unstable; urgency=low
* libnewt0.51 replaces libnewt0, libnewt-utf8; whiptail can also use tcl8.4.
Closes: #196570.
* Add README.whiptail to document the purpose of whiptail. Closes: #67356.
* Added --default-item option added to whiptail, whiptcl.
Closes: #49352, #49796.
* Added shlibs fix from Daniel Schepler for whiptail dependency on alpha.
Closes: #196290.
* malloc, realloc failures in whiptail, whiptcl now generate a DLG_ERROR
return, not a segfault.
-- Alastair McKinstry <mckinstry@computer.org> Mon, 16 Jun 2003 20:54:30 +0100
newt (0.51.4-9) unstable; urgency=low
* libnewt0 replaces libnewt-utf8
-- Alastair McKinstry <mckinstry@computer.org> Sun, 8 Jun 2003 08:28:55 +0100
newt (0.51.4-8) unstable; urgency=low
* Fix problem with cursor position when no border drawn. Closes: #195545.
* Add --notags option to whiptail. Closes: #45957.
* Change newt-tcl whiptcl.so to libwhiptcl.so. Closes: #21697.
* Fix shlib dependency calculation to ensure dependency for whiptail on
libnewt0.51 on sparc. Closes: #196290.
-- Alastair McKinstry <mckinstry@computer.org> Fri, 6 Jun 2003 14:00:05 +0100
newt (0.51.4-7) unstable; urgency=low
* Added --output-fd option. Closes: #153628.
* Use libc6.1 on Alpha rather than libc. Closes: #194877.
-- Alastair McKinstry <mckinstry@computer.org> Fri, 30 May 2003 19:00:46 +0100
newt (0.51.4-6) unstable; urgency=low
* Hardcode whiptail dependencies for the moment to ensure that
libnewt0.51 is included on !i386. Closes: #192767.
* Re-included --textbox, --passwordbox functionality that upstream had
dropped without mentioning it in documentation.
Closes: #191579, #191580, #192494, #192922, #192944, #193040.
-- Alastair McKinstry <mckinstry@computer.org> Mon, 12 May 2003 22:31:37 +0100
newt (0.51.4-5) unstable; urgency=low
* Re-insert code to ensure dialogboxes.o is -fPIC, this time to Makefile.in,
not Makefile. Closes: #192393.
-- Alastair McKinstry <mckinstry@computer.org> Sun, 11 May 2003 13:51:18 +0100
newt (0.51.4-4) unstable; urgency=low
* Reset screen before leaving on exit. Closes: #55638.
* Removed incorrect 'and is maintained by' line from debian/copyright.
* Ensure dialogboxes.o is built -fPIC: its included in shared objects.
Closes: #192393.
* Ensure whiptail dependency on libnewt0.51. Closes: #192767.
* Added libnewt.so->libnewt.so.0.51 symlink to libnewt-dev. Closes: #192884.
-- Alastair McKinstry <mckinstry@computer.org> Mon, 5 May 2003 14:29:15 +0100
newt (0.51.4-3) unstable; urgency=low
* Also remore dh_testroot from configure target. Closes: #191123.
* Change Sections to match overrides (devel->libdevel, interpreters->python)
* Fixed dependencies. Build-Depend, slang>>1.4.5-2; whiptail.
Closes: #162429.
* Re-inserted the guessSize() code for autosizing from 0.50.17, with a bugfix to
allow it to work with UTF8. Closes: #191627.
* newt.c: Window placement calc: Don't assume 80x24! instead, read from slang.
Closes: #191578
* include newt.spec in /usr/share/doc as it includes important changelog
info.
* Documented the removal of whiptail features --passwordbox, --textbox;
added explanation on how to select items in checklists, radiolists in
whiptail.1. Closes: #184471.
* Removed debian-test testsuite, as the debian-test package has been removed.
-- Alastair McKinstry <mckinstry@computer.org> Thu, 1 May 2003 12:33:01 +0100
newt (0.51.4-2) unstable; urgency=low
* build target no longer needs root. Closes: #191123.
* Include snack.py in python-newt. Closes: #191445, #191446.
-- Alastair McKinstry <mckinstry@computer.org> Wed, 30 Apr 2003 23:38:55 +0100
newt (0.51.4-1) unstable; urgency=low
* New maintainer.
* Upgraded to new release 0.51.4, from RedHat, bumping SONAME to 0.51
* Merged newt, newt-utf8 now that SONAME has changed.
-- Alastair McKinstry <mckinstry@computer.org> Mon, 14 Apr 2003 10:20:02 +0100
newt (0.50.17-13) unstable; urgency=low
* textbox.c(addLine,doReflow,newtTextbox) add checks to try and fix (closes: 169788)
* add debian-test script and install it, but I haven't actually figured
out how really to use it.
* debian/control{,.utf8}:
Build-Depend on sgmltools-lite rather than sgmltools-2,
and libnewt-utf8-pic and libnewt-pic conflicts explicitly with each other
* Install libnewt-utf8_pic.a as libnewt_pic.a,
I hope I don't break anybody's back with this change.
(closes: #182041)
* slightly update create-utf8.sh script.
* update README.Debian for a change.
-- Junichi Uekawa <dancer@debian.org> Fri, 28 Feb 2003 17:32:33 +0900
newt (0.50.17-12) unstable; urgency=low
* no stripping if nostrip is specified in DEB_BUILD_OPTS.
- change configure.in to accept --with-nostrip
- change Makefile.in to use @INSTALL_S@ instead of install -s.
* No buffer overflow in pushhelpline (partially fixes #66349,
that it doesn't segv anymore, but something is surely wrong.)
* Possible buffer overflow in newt.c for keyinput fixed (closes: #140404)
-- Junichi Uekawa <dancer@debian.org> Wed, 27 Nov 2002 16:40:41 +0900
newt (0.50.17-11) unstable; urgency=low
* Apply patch from Robert Milan (mostly) for hurd compatbility.
(closes: #149318)
-- Junichi Uekawa <dancer@debian.org> Wed, 30 Oct 2002 17:22:23 +0900
newt (0.50.17-10) unstable; urgency=low
* New maintainer
* Build newt-utf8 also. versions -9.7 and -9.8 were not uploaded
to Debian archive as utf-8 versions.
* Fix newt-utf8 portions that doko didn't touch.
* Fixed descriptions to clarify that newt-utf8 is not binary compatible,
and note that it's not wide-character support, but support for locales.
(closes: #135455, #152223)
* rename debian/README to debian/README.Debian
* update debian/copyright to include me.
-- Junichi Uekawa <dancer@debian.org> Mon, 28 Oct 2002 22:46:25 +0900
newt (0.50.17-9.8) unstable; urgency=low
* Makefile.in (PYVER): Set to 2.2 (closes: #158689).
-- Matthias Klose <doko@debian.org> Fri, 30 Aug 2002 08:15:43 +0200
newt (0.50.17-9.7) unstable; urgency=low
* NMU.
* Build using python2.2.
-- Matthias Klose <doko@debian.org> Sat, 24 Aug 2002 14:07:14 +0200
newt (0.50.17-9.6) unstable; urgency=high
* Fix possible buffer overflow. (closes: #138363, #140493)
At least, this no longer segfaults for me:
whiptail --menu "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" 30 120 0 aa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-- Junichi Uekawa <dancer@debian.org> Sun, 31 Mar 2002 09:38:18 +0900
newt (0.50.17-9.5) unstable; urgency=high
* NMU
* An urgency high upload to fix mistakes introduced in -9.3,
and to let the fix trickle into testing.
* whiptail and whiptail-utf8 conflicts with each other
(closes: #135752, #136404)
* update build-depends to depend on slang 1.4.4-7.2 or greater
-- Junichi Uekawa <dancer@debian.org> Sun, 3 Mar 2002 11:45:10 +0900
newt (0.50.17-9.4) unstable; urgency=low
* NMU
* add setlocale(LC_ALL, ""); to whiptail, in utf8 mode.
mbrtowc most probably wants this.
Otherwise, we are getting question marks from whiptail-utf8.
-- Junichi Uekawa <dancer@debian.org> Mon, 25 Feb 2002 02:51:17 +0900
newt (0.50.17-9.3) unstable; urgency=low
* NMU
* "Creating the necessary binaries for building boot-floppies, and
fixing the non-arch porability"
* Makefile.in: fix some compilation warnings with -D_GNU_SOURCE for
UTF8 mode, so that the program will run on other arches.
(closes: #135386)
* newt_pr.h: added declaration for strwidth definition.
* debian/control:
- libnewt-dev conflicts with libnewt-dev,
libnewt-utf8-dev provides/conflicts libnewt-dev
introduce libnewt-utf8-dev
- whiptail conflicts/provides whiptail-provider
whiptail-utf8 conflicts/provides whiptail-provider
- whiptail-utf8 created (closes: #135382)
- libnewt-dev requires newt, and slang
- libnewt-utf8-dev requires newt-utf8 and slang-utf8
- tcl8.3-dev added to build-depends for utf8.
- libnewt-utf8-pic depends on libnewt-utf8-dev
* debian/rules:
- add binary-runtime and binary-devel
to binarytarget for utf8.
- build document in utf8 also.
- remove *~ on clean
* Makefile.in: Accept BUILDING_UTF8=true as a sign of required UTF8
flag.
* debian/create-utf8.sh: sed shlibs/shlibs.local so that
packages compiled against utf8 version will require utf8
libs.
* debian/README: added some documentation on the package.
* debian/shlibs.local: update shlibs file to depend on utf8 version
greater than 0.50.17-9.3.
* With this, whiptail-utf8 should be used with slang1-utf8
(closes: #124083)
-- Junichi Uekawa <dancer@debian.org> Sun, 24 Feb 2002 14:09:53 +0900
newt (0.50.17-9.2) unstable; urgency=low
* NMU
* Split out newt-utf8 and newt source packages (closes: #133936)
* debian/create-utf8.sh: created, to facilitate creation of newt-utf8 version
from newt. Portions ripped off from fetchmail sources.
* debian/control.utf8: for utf8 version.
* this version keeps the single -dev file. It might cause problems
if packages linked to newt try to use slang too.
* bump up the version build-dependency for slang1-*-dev
* libnewt-pic: Depends on libnewt-dev
-- Junichi Uekawa <dancer@debian.org> Fri, 15 Feb 2002 18:50:36 +0900
newt (0.50.17-9.1) unstable; urgency=low
* Non Maintainer Upload.
* fix problems with mono mode, patch thanks to
Klaus Weidner <kw@w-m-p.com> (closes: #128941)
* fixed char signedness problem patch thanks to
Martin Michlmayr <tbm@cyrius.com> (closes: #127105)
-- David Kimdon <dwhedon@debian.org> Mon, 11 Feb 2002 21:55:10 -0800
newt (0.50.17-9) unstable; urgency=high
* Oops, fix the memory leak that I created while trying to fix the
memory leak in newtTextboxSetText. (Closes: #124117)
-- Enrique Zanardi <ezanard@debian.org> Tue, 18 Dec 2001 13:33:50 +0000
newt (0.50.17-8) unstable; urgency=high
* MU, close the bugs fixed in NMUs. (Closes: #119815, #120245, #119281, #119354, #117455, #115409, #116566, #121062, #117878, #109441)
* libnewt.so points to libnewt.so.0.50 (Closes: #121893)
* -pic packages now depend on non-pic ones. (Closes: #123325)
* Fix memory leak in newtTextboxSetText. (Closes: #121505)
* Use the proper package name in the prerm script for python-newt.
(Closes: #121716)
-- Enrique Zanardi <ezanard@debian.org> Wed, 12 Dec 2001 10:20:06 +0000
newt (0.50.17-7.3) unstable; urgency=high
* NMU for woody deadline
* Include patch from Philip Blundell to fix UTF8. Closes: #119354
* Remove snack.py~ and Makefile.in~ which seem to have been introduced
in the last NMU.
-- Matthew Wilcox <willy@debian.org> Wed, 28 Nov 2001 09:28:01 -0700
newt (0.50.17-7.2) unstable; urgency=high
* NMU to include corrected snack.py. (Closes: #119815, #120245, #119281)
-- Chris Lawrence <lawrencc@debian.org> Sat, 24 Nov 2001 17:57:55 -0600
newt (0.50.17-7.1) unstable; urgency=low
* NMU to build with python (2.1). Somewhat fixes #109441.
* Add postinst/prerm for python-newt to compile/remove .py files.
Closes: #117455.
* Build Tcl module for tcl8.3.
* Call ldconfig, only when configuring.
* Make libnewt0 depend on slang1-dev (>= 1.4.4-2) | slang1-utf8-dev
(Closes: #115409).
-- Matthias Klose <doko@debian.org> Sun, 21 Oct 2001 19:33:50 +0200
newt (0.50.17-7) unstable; urgency=low
* Changed colors for inactive buttons. (Closes: #99652, #54265, #60855, #61150)
-- Enrique Zanardi <ezanard@debian.org> Mon, 4 Jun 2001 10:20:06 +0100
newt (0.50.17-6) unstable; urgency=low
* Oops, there was a bug in the patch.
-- Enrique Zanardi <ezanard@debian.org> Fri, 27 Apr 2001 08:44:37 +0100
newt (0.50.17-5) unstable; urgency=low
* Some utf8-related fixes (Patch by Edmund Grimley Evans):
- remove all use of mbtowc and wctomb, which are evil in a library,
as they change an anonymous global state
- fix a possible segfault in doReflow() if !resultPtr
- remove some historical #if 0 code
-- Enrique Zanardi <ezanard@debian.org> Thu, 26 Apr 2001 14:08:49 +0100
newt (0.50.17-4) unstable; urgency=low
* Rebuilt with utf8 version of slang1. (Closes: #93276)
-- Enrique Zanardi <ezanard@debian.org> Fri, 20 Apr 2001 10:02:54 +0100
newt (0.50.17-3) unstable; urgency=low
* Builds utf8 versions of libnewt and libnewt-pic. (Closes: Bug#91963)
Patch by Edmund Grimley Evans.
-- Enrique Zanardi <ezanard@debian.org> Wed, 11 Apr 2001 22:17:20 +0100
newt (0.50.17-2) unstable; urgency=low
* Builds a PIC version of libnewt. (Closes: Bug#91951)
* Builds a directory of html files. (Closes: Bug#89906)
* Include the right file location in copyright file. (Closes: Bug#91962)
-- Enrique Zanardi <ezanard@debian.org> Wed, 11 Apr 2001 20:21:04 +0100
newt (0.50.17-1) unstable; urgency=low
* New upstream version
* Added a "abort signal" callback to libnewt, and a "suspend" callback
to whiptail. (Closes: Bug#52952, Bug#61807, Bug#84054)
* Closing ancient non-bug (just a difference in the way getopt and popt
handle arguments). (Closes: Bug#17786)
* Added Build-Depends. (Closes: Bug#70101)
* Added patch by Oskar Liljeblad <osk@hem.passagen.se> to handle
NEWT_KEY_{HOME,END}. (Closes: Bug#80961)
-- Enrique Zanardi <ezanard@debian.org> Sun, 18 Feb 2001 10:32:49 +0000
newt (0.50.8-2) unstable; urgency=low
* Added -I/usr/include/tcl8.2/ to the list of include dirs for whiptcl
and tcl8.2-dev >= 8.2.3-3. (Closes: Bug#67066)
* Added --scrolltext description to whiptail.1 manpage (Closes: Bug#75316)
* Fixed typo in whiptail.1 manpage (Closes: Bug#75653)
-- Enrique Zanardi <ezanard@debian.org> Fri, 27 Oct 2000 09:52:53 +0100
newt (0.50.8-1) unstable; urgency=low
* New upstream version.
* whiptcl doesn't have hardcoded terminal size (Closes: Bug#62252)
* Close bugs fixed in NMUs. (Closes: Bug#58059, Bug#47855, Bug#57651,
Bug#56710, Bug#58817)
* Whiptail remembers the state of the screen and restores it on exit
(Closes: Bug#57455)
* Latest stable version of newt. (Closes: Bug#52834, Bug#54474)
-- Enrique Zanardi <ezanard@debian.org> Wed, 28 Jun 2000 13:38:38 +0100
newt (0.50-7) frozen unstable; urgency=high
* Ctrl-U must clear the whole buffer! . Closes: Bug#62828
-- Enrique Zanardi <ezanard@debian.org> Sat, 22 Apr 2000 13:38:04 +0100
newt (0.50-6) frozen unstable; urgency=low
* Use "-O2" on compilation to let it build on m68k and get rid of
RC bug 59150 as suggested by Bjoern Brill.
-- Enrique Zanardi <ezanard@debian.org> Thu, 23 Mar 2000 19:37:15 +0000
newt (0.50-5.4) frozen unstable; urgency=low
* Non-maintainer upload
* Fixes bad cursor position in listboxes, Closes: Bug#58059
-- Eric Delaunay <delaunay@lix.polytechnique.fr> Fri, 10 Mar 2000 22:11:16 +0100
newt (0.50-5.3) frozen unstable; urgency=low
* Non-maintainer upload
* Don't install libnewt.a with install -s, Closes: Bug#57651
-- Wichert Akkerman <wakkerma@debian.org> Sun, 20 Feb 2000 15:38:54 +0100
newt (0.50-5.2) unstable; urgency=low
* Non-maintainer upload
* Fixes dependency calculation on debian/rules. closes: #53181
-- Randolph Chung <tausq@debian.org> Wed, 22 Dec 1999 16:17:56 -0700
newt (0.50-5.1) unstable; urgency=low
* Non-maintainer upload
* Adds clear line feature (c-u) to libnewt. closes: #36587
* break lines properly, closes: #43270
* Missing "val" in newt.h; "//" in form.c, closes: #47855
* Fixes sizing code for menu dialogs, closes: #51019
* Fixes whiptail dependencies, closes: #48475, #50165, #50346, #52311
-- Randolph Chung <tausq@debian.org> Tue, 14 Dec 1999 21:57:11 -0700
newt (0.50-5) unstable; urgency=low
* If gpm is not running ignore gpm support.
-- Enrique Zanardi <ezanard@debian.org> Sun, 7 Nov 1999 19:59:43 +0000
newt (0.50-4) unstable; urgency=low
* (finally) enabled gpm support.
* fixed whiptail dependencies.
-- Enrique Zanardi <ezanard@debian.org> Sat, 9 Oct 1999 22:32:23 +0100
newt (0.50-3) unstable; urgency=low
* explicitly linked to libdl.
-- Enrique Zanardi <ezanard@debian.org> Sat, 9 Oct 1999 21:22:16 +0100
newt (0.50-2) unstable; urgency=low
* added a Replaces/Conflicts: newt0.25-dev to allow clean upgrades from
slink. (Closes: #47025).
-- Enrique Zanardi <ezanard@debian.org> Sat, 9 Oct 1999 21:22:16 +0100
newt (0.50-1) unstable; urgency=low
* new upstream version (Closes: #43427, #45955).
* linked to slang 1.3 (Closes: #46951)
* stripped debugging symbols from libnewt.a (Closes: #31246).
* whiptail is on its own base package (Closes: #36435).
* fixed documentation bug about "--clear" (Closes: #24972).
* newtRedrawHelpLine() now test for length before memcpy'ng
(Closes: #37032, #38602)
* manpage updated to describe new options (Closes: #41304).
* fixed typo in whiptail output (Closes: #44754).
* added support for "password boxes". Patch by Joey Hess
<joey@kitenet.net> (Closes: #45961).
-- Enrique Zanardi <ezanard@debian.org> Tue, 5 Oct 1999 23:47:17 +0100
newt (0.30-1) unstable; urgency=low
* New upstream version.
-- Enrique Zanardi <ezanard@debian.org> Thu, 10 Dec 1998 14:28:40 +0000
newt (0.25-3) frozen unstable; urgency=low
* Back ported bugfix from newt-0.30 to make whiptail display messages
properly. Without this fix, whiptail doesn't show the last word in a
message.
-- Enrique Zanardi <ezanard@debian.org> Thu, 10 Dec 1998 12:26:13 +0000
newt (0.25-2) unstable; urgency=low
* Excluded tcl and python wrappers. Added code to debian/rules and
debian/control-snippet to build a new package, newt-scripting, when
the wrappers are mature enough.
-- Enrique Zanardi <ezanard@debian.org> Mon, 3 Aug 1998 13:52:29 +0100
newt (0.25-1) unstable; urgency=low
* New upstream version.
-- Enrique Zanardi <ezanard@debian.org> Thu, 30 Jul 1998 17:00:39 +0100
newt (0.21-6) unstable; urgency=low
* debian/shlibs really fixed now.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Wed, 4 Mar 1998 15:38:19 +0000
newt (0.21-5) unstable; urgency=low
* Install shared lib mode 644.
* debian/shlibs file fixed.
* updated Standards-Version.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Thu, 12 Feb 1998 11:44:44 +0000
newt (0.21-4) unstable; urgency=low
* whiptail now has its own package, fixes: Bug#17476
* newt0.21-dev now provides and conflicts newt-dev, fixes: Bug#17477
* Added whiptail(1) manpage, fixes: Bug#16857
* whiptail now uses full screen, fixes: Bug#17155
* Defines the dependency on libc*-dev at build-time, fixes: Bug#17208
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Sat, 30 Jan 1998 20:14:09 +0000
newt (0.21-3) unstable; urgency=low
* Defined newtTextboxAddLine.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Sat, 10 Jan 1998 03:18:20 +0000
newt (0.21-2) unstable; urgency=low
* Added patches by Bruce Perens:
* - whiptail don't make over-size windows.
* - whiptail will scroll the text and/or the menu to fit on the screen.
* - some variables now defined as const.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Wed, 7 Jan 1998 13:42:34 +0000
newt (0.21-1) unstable; urgency=low
* New upstream version.
* Not included python support.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Mon, 5 Jan 1998 16:56:29 +0000
newt (0.10-1) unstable; urgency=low
* New package.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Fri, 26 Dec 1997 18:58:38 +0000
|