2f4e6e
%if ! 0%{?rhel} >= 8
2f4e6e
%global with_python2 1
2f4e6e
%endif
2f4e6e
2f4e6e
Summary: A library for text mode user interfaces
2f4e6e
Name: newt
2f4e6e
Version: 0.52.20
48eb3f
Release: 11%{?dist}
2f4e6e
License: LGPLv2
2f4e6e
Group: System Environment/Libraries
2f4e6e
URL: https://pagure.io/newt
2f4e6e
Source: https://pagure.io/releases/newt/newt-%{version}.tar.gz
48eb3f
48eb3f
# Fix radio button selection check in snack
48eb3f
Patch1: newt-radio.patch
48eb3f
# Don't ignore CFLAGS when building snack
48eb3f
Patch2: newt-snackflags.patch
48eb3f
2f4e6e
BuildRequires: gcc popt-devel python3-devel slang-devel
2f4e6e
%{?with_python2:BuildRequires: python2-devel}
2f4e6e
BuildRequires: docbook-utils
2f4e6e
# Prefer lynx over other packages providing text-www-browser
2f4e6e
BuildRequires: lynx
2f4e6e
# static subpackage was dropped in 0.52.20-8
2f4e6e
Obsoletes: %{name}-static < 0.52.20-8
2f4e6e
2f4e6e
%package devel
2f4e6e
Summary: Newt windowing toolkit development files
2f4e6e
Requires: slang-devel %{name}%{?_isa} = %{version}-%{release}
2f4e6e
Group: Development/Libraries
2f4e6e
2f4e6e
%Description
2f4e6e
Newt is a programming library for color text mode, widget based user
2f4e6e
interfaces.  Newt can be used to add stacked windows, entry widgets,
2f4e6e
checkboxes, radio buttons, labels, plain text fields, scrollbars,
2f4e6e
etc., to text mode user interfaces.  This package also contains the
2f4e6e
shared library needed by programs built with newt, as well as a
2f4e6e
/usr/bin/dialog replacement called whiptail.  Newt is based on the
2f4e6e
slang library.
2f4e6e
2f4e6e
%description devel
2f4e6e
The newt-devel package contains the header files and libraries
2f4e6e
necessary for developing applications which use newt.  Newt is a
2f4e6e
development library for text mode user interfaces.  Newt is based on
2f4e6e
the slang library.
2f4e6e
2f4e6e
Install newt-devel if you want to develop applications which will use
2f4e6e
newt.
2f4e6e
2f4e6e
%if 0%{?with_python2}
2f4e6e
%package -n python2-newt
2f4e6e
%{?python_provide:%python_provide python2-newt}
2f4e6e
# Remove before F30
2f4e6e
Provides: %{name}-python = %{version}-%{release}
2f4e6e
Provides: %{name}-python%{?_isa} = %{version}-%{release}
2f4e6e
Obsoletes: %{name}-python < %{version}-%{release}
2f4e6e
Summary: Python 2 bindings for newt
2f4e6e
Group: Development/Libraries
2f4e6e
Requires: %{name}%{?_isa} = %{version}-%{release}
2f4e6e
2f4e6e
%description -n python2-newt
2f4e6e
The python2-newt package contains the Python 2 bindings for the newt library
2f4e6e
providing a python API for creating text mode interfaces.
2f4e6e
%endif
2f4e6e
2f4e6e
%package -n python3-newt
2f4e6e
%{?python_provide:%python_provide python3-newt}
2f4e6e
# Remove before F30
2f4e6e
Provides: %{name}-python3 = %{version}-%{release}
2f4e6e
Provides: %{name}-python3%{?_isa} = %{version}-%{release}
2f4e6e
Obsoletes: %{name}-python3 < %{version}-%{release}
48eb3f
Provides: snack = %{version}-%{release}
2f4e6e
Summary: Python 3 bindings for newt
2f4e6e
Group: Development/Libraries
2f4e6e
Requires: %{name}%{?_isa} = %{version}-%{release}
2f4e6e
2f4e6e
%description -n python3-newt
2f4e6e
The python3-newt package contains the Python 3 bindings for the newt library
2f4e6e
providing a python API for creating text mode interfaces.
2f4e6e
2f4e6e
%prep
2f4e6e
%setup -q
48eb3f
%patch1 -p1 -b .radio
48eb3f
%patch2 -p1 -b .snackflags
2f4e6e
2f4e6e
%build
2f4e6e
# gpm support seems to smash the stack w/ we use help in anaconda??
2f4e6e
# --with-gpm-support
2f4e6e
%configure --without-tcl
2f4e6e
make %{?_smp_mflags} all
2f4e6e
chmod 0644 peanuts.py popcorn.py
2f4e6e
docbook2txt tutorial.sgml
2f4e6e
2f4e6e
%install
2f4e6e
make DESTDIR=$RPM_BUILD_ROOT install
2f4e6e
rm -f $RPM_BUILD_ROOT%{_libdir}/libnewt.a
2f4e6e
2f4e6e
%find_lang %{name}
2f4e6e
2f4e6e
%ldconfig_scriptlets
2f4e6e
2f4e6e
%files -f %{name}.lang
2f4e6e
%doc AUTHORS COPYING CHANGES README
2f4e6e
%{_bindir}/whiptail
2f4e6e
%{_libdir}/libnewt.so.*
2f4e6e
%{_mandir}/man1/whiptail.1*
2f4e6e
2f4e6e
%files devel
2f4e6e
%doc tutorial.*
2f4e6e
%{_includedir}/newt.h
2f4e6e
%{_libdir}/libnewt.so
2f4e6e
%{_libdir}/pkgconfig/libnewt.pc
2f4e6e
2f4e6e
%if 0%{?with_python2}
2f4e6e
%files -n python2-newt
2f4e6e
%doc peanuts.py popcorn.py
2f4e6e
%{python2_sitearch}/*.so
2f4e6e
%{python2_sitearch}/*.py*
2f4e6e
%endif
2f4e6e
2f4e6e
%files -n python3-newt
2f4e6e
%doc peanuts.py popcorn.py
2f4e6e
%{python3_sitearch}/*.so
2f4e6e
%{python3_sitearch}/*.py*
2f4e6e
%{python3_sitearch}/__pycache__/*.py*
2f4e6e
2f4e6e
%changelog
48eb3f
* Wed Oct 02 2019 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.20-11
48eb3f
- don't ignore CFLAGS when building snack (#1757093)
48eb3f
48eb3f
* Mon Sep 30 2019 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.20-10
48eb3f
- move snack provides to python3-newt subpackage (#1640153)
48eb3f
- fix radio button selection check in snack (#1714517)
48eb3f
2f4e6e
* Mon Mar 26 2018 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.20-9
2f4e6e
- don't build python2 subpackage on rhel >= 8
2f4e6e
2f4e6e
* Wed Feb 21 2018 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.20-8
2f4e6e
- rename newt-python3 subpackage to python3-newt
2f4e6e
- build python3 subpackage unconditionally
2f4e6e
- don't use unversioned python_sitearch macro
2f4e6e
- drop static subpackage
2f4e6e
- use macro for ldconfig scriptlets
2f4e6e
- add gcc to build requirements
2f4e6e
- fix description of python2-newt
2f4e6e
2f4e6e
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.52.20-7
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2f4e6e
2f4e6e
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.52.20-6
2f4e6e
- Update Python 2 dependency declarations to new packaging standards
2f4e6e
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
2f4e6e
2f4e6e
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.52.20-5
2f4e6e
- Add Provides for the old name without %%_isa
2f4e6e
2f4e6e
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.52.20-4
2f4e6e
- Python 2 binary package renamed to python2-newt
2f4e6e
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
2f4e6e
2f4e6e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.52.20-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2f4e6e
2f4e6e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.52.20-2
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Mar 17 2017 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.20-1
2f4e6e
- update to 0.52.20
2f4e6e
2f4e6e
* Mon Feb 20 2017 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.19-5
2f4e6e
- add build requirement on lynx (#1423989)
2f4e6e
2f4e6e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.52.19-4
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2f4e6e
2f4e6e
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.52.19-3
2f4e6e
- Rebuild for Python 3.6
2f4e6e
2f4e6e
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.19-2
2f4e6e
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2f4e6e
2f4e6e
* Wed Mar 23 2016 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.19-1
2f4e6e
- update to 0.52.19
2f4e6e
2f4e6e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.52.18-5
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 0.52.18-4
2f4e6e
- Rebuilt for Python3.5 rebuild
2f4e6e
2f4e6e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.18-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2f4e6e
2f4e6e
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.52.18-2
2f4e6e
- Rebuilt for Fedora 23 Change
2f4e6e
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
2f4e6e
2f4e6e
* Thu Oct 23 2014 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.18-1
2f4e6e
- update to 0.52.18 (#1151455)
2f4e6e
2f4e6e
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.17-4
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2f4e6e
2f4e6e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.17-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2f4e6e
2f4e6e
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.52.17-2
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
2f4e6e
2f4e6e
* Wed Feb 19 2014 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.17-1
2f4e6e
- update to 0.52.17
2f4e6e
- upstream changelog is now in CHANGES
2f4e6e
2f4e6e
* Thu Oct 17 2013 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.16-2
2f4e6e
- add python3 support (Matthias Klose) (#963839)
2f4e6e
- build python3 subpackage (Miro Hrončok) (#963839)
2f4e6e
- rename snackmodule to snack (#963839)
2f4e6e
2f4e6e
* Tue Aug 06 2013 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.16-1
2f4e6e
- add newtComponentGetSize and newtComponentGetPosition (#987596)
2f4e6e
- modify Makefile to use SOEXT (#971168)
2f4e6e
- free gpm socket name and unlink gpm socket on form exit
2f4e6e
- fix memory leaks in whiptail
2f4e6e
- fix weekdays in spec changelog
2f4e6e
2f4e6e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.15-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Apr 05 2013 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.15-2
2f4e6e
- add missing whiptail options to help and man page
2f4e6e
2f4e6e
* Mon Mar 25 2013 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.15-1
2f4e6e
- fix errors found by gcc-with-cpychecker (#800075)
2f4e6e
- fix building with tcl8.6 (#902561)
2f4e6e
- add fallback to python-config (#783627)
2f4e6e
- replace tabs in snack.py (#870647)
2f4e6e
- compile snackmodule.c with flag -fPIC (Kang Kai)
2f4e6e
- include new translations from transifex
2f4e6e
- allow newtWinMenu and newtWinEntries with no buttons or items
2f4e6e
- don't draw scale when not mapped
2f4e6e
- build with large-file support for stat64
2f4e6e
- remove unused variables in test code
2f4e6e
- update FSF address
2f4e6e
- remove obsolete macros
2f4e6e
- make some dependencies arch-specific
2f4e6e
2f4e6e
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.14-4
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.14-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.14-2
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2f4e6e
2f4e6e
* Fri Nov 11 2011 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.14-1
2f4e6e
- fix returning strings in whiptail and whiptcl (#752818)
2f4e6e
- fix configure to work with multiple python versions (#737998)
2f4e6e
2f4e6e
* Mon Jun 27 2011 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.13-1
2f4e6e
- add support for changing colors in individual labels, scrollbars, entries,
2f4e6e
  textboxes and scales, add custom colorsets 
2f4e6e
- add support for NEWT_COLORS and NEWT_COLORS_FILE variables (#689903)
2f4e6e
- allow resizing of form
2f4e6e
- fix errors found by coverity
2f4e6e
- fix va_list usage (Gwenole Beauchesne)
2f4e6e
- fix building and installing on Mac OS X (#652479)
2f4e6e
- check for slang.h header, support DESTDIR variable, add --without-python
2f4e6e
  option (Otavio Salvador)
2f4e6e
- add Persian, Low German translations
2f4e6e
2f4e6e
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.12-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2f4e6e
2f4e6e
* Wed Nov 10 2010 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.12-2
2f4e6e
- don't hang in form when stdin disappears
2f4e6e
2f4e6e
* Fri Aug 06 2010 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.12-1
2f4e6e
- fix whiptail --gauge and its description in man page (#620083)
2f4e6e
- remove space after \n in whiptail texts (#620083)
2f4e6e
- remove NLS code from snack (#599608)
2f4e6e
- expose more keys to python as shortcuts in dialogs (Jakob Kemi)
2f4e6e
- release python global-thread-lock during dialog displays (Jakob Kemi)
2f4e6e
- fix warnings in whiptcl.c and include Tcl_PkgProvide() call (Mikhail T.)
2f4e6e
- don't NULL deref when an invalid array is specified in checkboxtree
2f4e6e
  (Arnaldo Carvalho de Melo)
2f4e6e
2f4e6e
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.52.11-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2f4e6e
2f4e6e
* Thu Jan  7 2010 Hans de Goede <hdegoede@redhat.com> - 0.52.11-2
2f4e6e
- Change python_sitearch macro to use %%global as the new rpm will break
2f4e6e
  using %%define here, see:
2f4e6e
  https://www.redhat.com/archives/fedora-devel-list/2010-January/msg00093.html
2f4e6e
2f4e6e
* Thu Sep 24 2009 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.11-1
2f4e6e
- fix buffer overflow in textbox when reflowing (#523955, CVE-2009-2905)
2f4e6e
- use full textbox width when reflowing and allow minimal width 1
2f4e6e
- fix writing lines longer than width in textbox
2f4e6e
- don't use va_list in newtvwindow more than once (#523696)
2f4e6e
- bind \E[Z to back-tab in built-in keymap (#468046)
2f4e6e
- terminate string after reading file in whiptail
2f4e6e
- add newtRadioSetCurrent function (Thomas Jarosch)
2f4e6e
- add pkgconfig support (Thomas Jarosch)
2f4e6e
- add Malay, Malayalam, Assamese, Gujarati, Bengali India, Kannada, Telugu
2f4e6e
  translations
2f4e6e
- include tutorial in txt format
2f4e6e
- include debian patches
2f4e6e
  - fix crash in textbox SetText when topLines != 0
2f4e6e
  - don't link modules with libraries already linked with libnewt
2f4e6e
  - add Asturian and Marathi translations
2f4e6e
2f4e6e
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.10-4
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2f4e6e
2f4e6e
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52.10-3
2f4e6e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2f4e6e
2f4e6e
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.52.10-2
2f4e6e
- Rebuild for Python 2.6
2f4e6e
2f4e6e
* Wed Jul 30 2008 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.10-1
2f4e6e
- improve --noitem description (#456305)
2f4e6e
- add setHeight to Textbox class
2f4e6e
- fix fixedheight forms
2f4e6e
- free keymap in newtFinished()
2f4e6e
- fix memory leak in textbox
2f4e6e
- fix valgrind error in checkboxtree
2f4e6e
- don't crash when running empty form
2f4e6e
- don't crash or hang when form has no focusable elements
2f4e6e
- before checkboxtree drawing return first item in GetCurrent()
2f4e6e
- redraw textbox in SetText()
2f4e6e
- add setColor description to SnackScreen docstring (Greg Swift)
2f4e6e
- make sure Widget isn't used directly (Greg Swift) (#452920)
2f4e6e
- add Serbian translations (Miloš Komarčević)
2f4e6e
- add Balochi translation (Mostafa Daneshvar)
2f4e6e
2f4e6e
* Fri Mar 21 2008 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.9-1
2f4e6e
- handle component destruction (patch by Richard W.M. Jones)
2f4e6e
- fix newtWinEntry definition
2f4e6e
- don't use uninitialized values in newtWinMenu
2f4e6e
- remove workarounds for old bug in SLsmg_write_nstring
2f4e6e
- improve SIGWINCH handling in form
2f4e6e
- don't abort from whiptail gauge on SIGWINCH
2f4e6e
- redisplay also last line
2f4e6e
- update Polish translation (Piotr Drąg)
2f4e6e
- update URL and Source tag
2f4e6e
2f4e6e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.52.8-2
2f4e6e
- Autorebuild for GCC 4.3
2f4e6e
2f4e6e
* Wed Jan 23 2008 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.8-1
2f4e6e
- enable slang utf8 mode (#425992)
2f4e6e
- support --disable-nls option (patch by Natanael Copa)
2f4e6e
- redraw screen when using entry in euc encodings
2f4e6e
2f4e6e
* Mon Aug 27 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.7-4
2f4e6e
- fix segfault in whiptail when no entry is selected in radiolist
2f4e6e
- buildrequire popt-devel
2f4e6e
2f4e6e
* Wed Aug 22 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.7-3
2f4e6e
- rebuild
2f4e6e
2f4e6e
* Wed Aug 08 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.7-2
2f4e6e
- add back support for list of Entries in EntryWindow prompts in snack
2f4e6e
  (#248878)
2f4e6e
- update license tag
2f4e6e
- split python module to -python subpackage (patch by Yanko Kaneti)
2f4e6e
- fix summary
2f4e6e
 
2f4e6e
* Fri Jun 15 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.7-1
2f4e6e
- add support to snack for multiple selection and border in listbox
2f4e6e
  and cursorAtEnd in entry (patch by Shawn Starr)
2f4e6e
- fix scrollbar positioning in listbox
2f4e6e
- cope with backward system time jumps (#240691)
2f4e6e
- free helplines and windows in newtFinished, check for overflow (#239992)
2f4e6e
- add release to -devel and -static requires (#238784)
2f4e6e
2f4e6e
* Thu Apr 12 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.6-3
2f4e6e
- fix cursor positioning when setting entry or checkbox flags
2f4e6e
- fix counting of items in checkboxtree
2f4e6e
- fix some memory leaks
2f4e6e
2f4e6e
* Wed Apr 04 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.6-2
2f4e6e
- fix entry scrolling (#234829)
2f4e6e
- fix multibyte character handling in entry
2f4e6e
2f4e6e
* Fri Mar 02 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.6-1
2f4e6e
- add newtSetColor() to allow changing individual colors
2f4e6e
- add newtPopWindowNoRefresh() (patch by Forest Bond)
2f4e6e
- move static library to -static subpackage, spec cleanup (#226195)
2f4e6e
  (patch by Jason Tibbitts)
2f4e6e
2f4e6e
* Wed Jan 31 2007 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.5-1
2f4e6e
- provide option to change text of buttons (#126768)
2f4e6e
- don't add escape key to hot keys by default (#216157)
2f4e6e
- fix cursor position in checkboxtree, radio button and checkbox
2f4e6e
- don't force monochrome terminals to output colors
2f4e6e
- highlight active compact button on monochrome terminals
2f4e6e
- update translations from debian
2f4e6e
2f4e6e
* Sat Jan  6 2007 Jeremy Katz <katzj@redhat.com> - 0.52.4-3
2f4e6e
- fix memory allocation in snack to be consistent (#212780)
2f4e6e
2f4e6e
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.52.4-2
2f4e6e
- rebuild for python 2.5
2f4e6e
2f4e6e
* Fri Oct 13 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.4-1
2f4e6e
- fix entry corruption when reading multibyte characters
2f4e6e
  and double width character handling
2f4e6e
- avoid overflow/crash in scale
2f4e6e
- patches from debian
2f4e6e
  - fix crash of snack in EntryWindow when prompts is list of tuples
2f4e6e
  - put cursor at beginning of text for better accessibility
2f4e6e
    in button, scale and textbox
2f4e6e
  - add topleft option to whiptail
2f4e6e
2f4e6e
* Tue Sep 19 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.3-1
2f4e6e
- makefile, configure and spec cleanup
2f4e6e
- package whiptail.1 and locale files
2f4e6e
- fix warnings
2f4e6e
2f4e6e
* Fri Aug 04 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-9
2f4e6e
- fix screen corruption when half of double width character is overwritten
2f4e6e
  (#137957) 
2f4e6e
- fix double width character handling in checkboxtree and listbox
2f4e6e
2f4e6e
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.52.2-8.1
2f4e6e
- rebuild
2f4e6e
2f4e6e
* Tue Jun 27 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-8
2f4e6e
- unfocus when displaying help
2f4e6e
- fix help dialog in popcorn.py (#81352)
2f4e6e
2f4e6e
* Thu Jun 08 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-7
2f4e6e
- fix checkboxtree positioning
2f4e6e
- make textbox with scrollbar focusable (#83203)
2f4e6e
- turn off cursor when entry terminated form (#86074)
2f4e6e
- handle listbox and checkboxtree focus better (#186053)
2f4e6e
- make default colors more friendly to 8-color terminals (#187545)
2f4e6e
2f4e6e
* Wed May 31 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-6.1
2f4e6e
- fix handling windows larger than screen size (#189981)
2f4e6e
2f4e6e
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.52.2-5.2
2f4e6e
- bump again for double-long bug on ppc(64)
2f4e6e
2f4e6e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.52.2-5.1
2f4e6e
- rebuilt for new gcc4.1 snapshot and glibc changes
2f4e6e
2f4e6e
* Tue Jan 17 2006 Petr Rockai <prockai@redhat.com> - 0.52.2-5
2f4e6e
- Fix a crash in checkboxtree.c where pressing pgup/pgdown
2f4e6e
  on a checkboxtree with less items than its height would
2f4e6e
  cause segmentation violation. Consult BR 165347.
2f4e6e
2f4e6e
* Tue Jan 17 2006 Petr Rockai <prockai@redhat.com> - 0.52.2-4
2f4e6e
- Apply patch by Bill Nottingham (thanks) to improve scrollbar appearance
2f4e6e
  (BR 174771).
2f4e6e
- Add -%%{release} to snack's Provides: line (just in case).
2f4e6e
2f4e6e
* Tue Jan 17 2006 Petr Rockai <prockai@redhat.com> - 0.52.2-3
2f4e6e
- Provide: snack = %%{version} instead of plain "snack", so that
2f4e6e
  we don't block upgrades of custom "snack" packages. This should
2f4e6e
  not break anything. (Hopefully) fixes BR 171415.
2f4e6e
2f4e6e
* Mon Jan 16 2006 Petr Rockai <prockai@redhat.com> - 0.52.2-2
2f4e6e
- do not build whiptcl, as per 177346 -- so that we avoid dependency on tcl
2f4e6e
2f4e6e
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
2f4e6e
- rebuilt
2f4e6e
2f4e6e
* Thu Nov 24 2005 Jindrich Novy <jnovy@redhat.com> - 0.52.2-1
2f4e6e
- rebuild because of the new slang-2.0.5
2f4e6e
2f4e6e
* Tue Nov 22 2005 Petr Rockai <prockai@redhat.com> - 0.52.2-0
2f4e6e
- new upstream version (minor fixes for the source tarball
2f4e6e
  and build system)
2f4e6e
2f4e6e
* Fri Sep 30 2005 Petr Rockai <prockai@redhat.com> - 0.52.1-0
2f4e6e
- revert bidi patch, objections by Jeremy Katz about
2f4e6e
  anaconda breaking
2f4e6e
- this version still only exists as a "ghastly" upstream tarball;
2f4e6e
  the patches are now cleaned up and will be integrated into
2f4e6e
  rhlinux cvs unless some more breakage akin to bidi occurs
2f4e6e
- the if1close patch is now part of upstream tarball too
2f4e6e
2f4e6e
* Wed Sep 21 2005 Petr Rockai <prockai@redhat.com> - 0.52.0-0
2f4e6e
- new upstream version
2f4e6e
2f4e6e
* Fri Sep 02 2005 Petr Rockai <prockai@redhat.com>
2f4e6e
- use versioned symbols, patch by Alastair McKinstry, mckinstry at
2f4e6e
  debian dot org, thanks
2f4e6e
- need private wstrlen due to versioned syms, patch from debian
2f4e6e
  package of newt
2f4e6e
- both of the above needed to be forward-ported
2f4e6e
2f4e6e
* Sun Mar 06 2005 Petr Rockai <prockai@redhat.com>
2f4e6e
- rebuild
2f4e6e
2f4e6e
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 0.51.6-6
2f4e6e
- rebuild for python 2.4
2f4e6e
2f4e6e
* Fri Oct 15 2004 Adrian Havill <havill@redhat.com> 0.51.6-5
2f4e6e
- only do gpmclose if gpmopen succeeed (#118530)
2f4e6e
2f4e6e
* Thu Oct 14 2004 Adrian Havill <havill@redhat.com> 0.51.6-4
2f4e6e
- make the python version dynamic (#114419)
2f4e6e
2f4e6e
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
2f4e6e
- rebuilt
2f4e6e
2f4e6e
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
2f4e6e
- rebuilt
2f4e6e
2f4e6e
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
2f4e6e
- rebuilt
2f4e6e
2f4e6e
* Thu Nov  6 2003 Jeremy Katz <katzj@redhat.com> 0.51.6-2
2f4e6e
- rebuild for python 2.3
2f4e6e
2f4e6e
* Tue Aug 19 2003 Michael K. Johnson <johnsonm@redhat.com> 0.51.6-1
2f4e6e
- rebuild
2f4e6e
2f4e6e
* Tue Aug 19 2003 Michael K. Johnson <johnsonm@redhat.com> 0.51.5-1
2f4e6e
- incorporated listbox cursor location patch (#69903)
2f4e6e
2f4e6e
* Wed Feb  5 2003 Matt Wilson <msw@redhat.com> 0.51.4-1
2f4e6e
- fixed help line drawing in UTF-8 (#81718)
2f4e6e
- calculate the width of text in entries using wstrlen
2f4e6e
- always set component width to the new label width in newtLabelSetText
2f4e6e
- fixed snack.CListbox to work properly with UTF-8 (#81718)
2f4e6e
2f4e6e
* Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
2f4e6e
- add symlink to shared lib
2f4e6e
2f4e6e
* Sun Jan  5 2003 Adrian Havill <havill@redhat.com> 0.51.3-1
2f4e6e
- cleaned up const qualifiers in interfaces
2f4e6e
- added Ctrl-L screen refresh
2f4e6e
- fixed segfault in test.c when listbox items are selected
2f4e6e
- accessibility: made newt useable with monochrome terms (#60931)
2f4e6e
- leave the symbols in the libs (#60400)
2f4e6e
- fixed grammar in tutorial (#63496)
2f4e6e
- error checking (curcomp exists) for formEvent, newtFormGetCurrent,
2f4e6e
  removed fifty button limit (#59027)
2f4e6e
2f4e6e
* Tue Dec 17 2002 Matt Wilson <msw@redhat.com> 0.51.2-1
2f4e6e
- fixed wstrlen() it was calculating wcwidth(first wide char in
2f4e6e
  string) * strlen(str) instead of the actual width of the whole
2f4e6e
  string
2f4e6e
- fixed newtRedrawHelpLine() to copy all the bytes from a multibyte
2f4e6e
  string
2f4e6e
2f4e6e
* Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 0.51.1-1
2f4e6e
- Merge multilib changes
2f4e6e
2f4e6e
* Thu Aug 15 2002 Bill Nottingham <notting@redhat.com> 0.51.0-1
2f4e6e
- changes for element width calculation for UTF-8
2f4e6e
- fix textwrap for UTF-8 in general
2f4e6e
- bump soname to avoid shared library collisions with slang
2f4e6e
2f4e6e
* Mon Jul 01 2002 Michael Fulbright <msf@redhat.com> 0.50.39-1
2f4e6e
- Changed a test to check for 'None' the correct way
2f4e6e
2f4e6e
* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com> 0.50.38-1
2f4e6e
- don't hardcode linedrawing characters in the scrollbar code
2f4e6e
2f4e6e
* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 0.50.37-1
2f4e6e
- minor tweaks for use with UTF-8 slang
2f4e6e
2f4e6e
* Tue Jun 11 2002 Joe Orton <jorton@redhat.com> 0.50.36-1
2f4e6e
- add newtListboxGetItemCount() API call
2f4e6e
- include numeric percentage in scale widget appearace
2f4e6e
- add support for ESC key using NEWT_KEY_ESCAPE
2f4e6e
2f4e6e
* Mon Mar 18 2002 Bill Nottingham <notting@redhat.com> 0.50.35-1
2f4e6e
- build for whatever version of python happens to be installed
2f4e6e
2f4e6e
* Sat Sep 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.50.34-1
2f4e6e
- remove python2 subpackage
2f4e6e
- compile package for python 2.2
2f4e6e
2f4e6e
* Wed Aug 29 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.50.33-1
2f4e6e
- s/Copyright/License/
2f4e6e
- Add slang-devel to build dependencies (#49542)
2f4e6e
2f4e6e
* Wed Aug 22 2001 Crutcher Dunnavant <crutcher@redhat.com> 0.50.32-1
2f4e6e
- re-ordered the width key of CheckboxTree.__init__; #52319
2f4e6e
2f4e6e
* Wed Aug  8 2001 Crutcher Dunnavant <crutcher@redhat.com> 0.50.31-1
2f4e6e
- right anchor the internal Listbox of CListboxes, so that empty
2f4e6e
- scrollable CListboxes do not look like crape.
2f4e6e
2f4e6e
* Thu Jul 05 2001 Crutcher Dunnavant <crutcher@redhat.com>
2f4e6e
- padded hidden checkboxes on CheckboxTrees
2f4e6e
2f4e6e
* Thu Jul 05 2001 Crutcher Dunnavant <crutcher@redhat.com>
2f4e6e
- taught CheckboxTrees about width. Whohoo! 2-D!!!
2f4e6e
2f4e6e
* Thu Jul 05 2001 Crutcher Dunnavant <crutcher@redhat.com>
2f4e6e
- added 'hide_checkbox' and 'unselectable' options to CheckboxTrees
2f4e6e
2f4e6e
* Mon Jun 25 2001 Jeremy Katz <katzj@redhat.com>
2f4e6e
- CListBox -> CListbox for API consistency
2f4e6e
- fixup replace() method of CListbox
2f4e6e
2f4e6e
* Fri Jun 8 2001 Jeremy Katz <katzj@redhat.com>
2f4e6e
- few bugfixes to the CListBox
2f4e6e
2f4e6e
* Fri Jun 8 2001 Jeremy Katz <katzj@redhat.com>
2f4e6e
- added python binding for newtListboxClear() for Listbox and CListBox
2f4e6e
- let ButtonBars optionally be made of CompactButtons
2f4e6e
2f4e6e
* Wed Jun  6 2001 Crutcher Dunnavant <crutcher@redhat.com>
2f4e6e
- added CListBox python convenience class
2f4e6e
2f4e6e
* Tue May 15 2001 Michael Fulbright <msf@redhat.com>
2f4e6e
- added python binding for CompactButton()
2f4e6e
2f4e6e
* Tue Apr  3 2001 Matt Wilson <msw@redhat.com>
2f4e6e
- change from using SLsmg_touch_screen to SLsmg_touch_lines to prevent
2f4e6e
  excessive flashing due to screen clears when using touch_screen (more
2f4e6e
  Japanese handling)
2f4e6e
2f4e6e
* Mon Apr  2 2001 Matt Wilson <msw@redhat.com>
2f4e6e
- redraw the screen in certain situations when LANG=ja_JP.eucJP to
2f4e6e
  prevent corrupting kanji characters (#34362)
2f4e6e
2f4e6e
* Mon Apr  2 2001 Elloit Lee <sopwith@redhat.com>
2f4e6e
- Allow python scripts to watch file handles
2f4e6e
- Fix 64-bit warnings in snackmodule
2f4e6e
- Misc snack.py cleanups
2f4e6e
- Add NEWT_FD_EXCEPT to allow watching for fd exceptions
2f4e6e
- In newtExitStruct, return the first file descriptor that an event occurred on 
2f4e6e
2f4e6e
* Fri Mar 30 2001 Matt Wilson <msw@redhat.com>
2f4e6e
- don't blow the stack if we push a help line that is longer than the
2f4e6e
  curret number of columns
2f4e6e
- clip window to screen bounds so that if we get a window that is
2f4e6e
  larger than the screen we can still redraw the windows behind it
2f4e6e
  when we pop
2f4e6e
2f4e6e
* Sun Feb 11 2001 Than Ngo <than@redhat.com>
2f4e6e
- disable building new-python2 sub package again
2f4e6e
2f4e6e
* Thu Feb 01 2001 Erik Troan <ewt@redhat.com>
2f4e6e
- gave up on separate CHANGES file
2f4e6e
- added newtCheckboxTreeSetCurrent() and snack binding
2f4e6e
- don't require python2 anymore
2f4e6e
2f4e6e
* Mon Jan 22 2001 Than Ngo <than@redhat.com>
2f4e6e
- don't build newt-python2 sub package.
2f4e6e
2f4e6e
* Fri Dec 15 2000 Trond Eivind Glomsrød <teg@redhat.com>
2f4e6e
- use %%{_tmppath}
2f4e6e
- add python2 subpackage, with such support
2f4e6e
- fix use of append in snack.py
2f4e6e
2f4e6e
* Fri Sep 08 2000 Trond Eivind Glomsrød <teg@redhat.com>
2f4e6e
- bytecompile the snack python module
2f4e6e
- move the libnewt.so symlink to the devel package
2f4e6e
- include popcorn.py and peanuts.py in the devel package,
2f4e6e
  so we have some documentation of the snack module
2f4e6e
2f4e6e
* Tue Aug 22 2000 Erik Troan <ewt@redhat.com>
2f4e6e
- fixed cursor disappearing in suspend (again)
2f4e6e
2f4e6e
* Sat Aug 19 2000 Preston Brown <pbrown@redhat.com>
2f4e6e
- explicit requirement of devel subpackage on same version of main package
2f4e6e
  so that .so file link doesn't break
2f4e6e
2f4e6e
* Wed Aug 16 2000 Erik Troan <ewt@redhat.com>
2f4e6e
- fixed cursor disappearing in suspend
2f4e6e
- moved libnewt.so to main package from -devel
2f4e6e
2f4e6e
* Thu Aug  3 2000 Matt Wilson <msw@redhat.com>
2f4e6e
- added setValue method for checkboxes in snack
2f4e6e
2f4e6e
* Wed Jul 05 2000 Michael Fulbright <msf@redhat.com>
2f4e6e
- added NEWT_FLAG_PASSWORD for entering passwords and having asterix echo'd
2f4e6e
2f4e6e
* Fri Jun 16 2000 Matt Wilson <msw@redhat.com>
2f4e6e
- build for new release
2f4e6e
2f4e6e
* Fri Apr 28 2000 Jakub Jelinek <jakub@redhat.com>
2f4e6e
- see CHANGES
2f4e6e
2f4e6e
* Mon Mar 13 2000 Matt Wilson <msw@redhat.com>
2f4e6e
- revert mblen patch, go back to our own wide char detection
2f4e6e
2f4e6e
* Fri Feb 25 2000 Bill Nottingham <notting@redhat.com>
2f4e6e
- fix doReflow to handle mblen returning 0
2f4e6e
2f4e6e
* Wed Feb 23 2000 Preston Brown <pbrown@redhat.com>
2f4e6e
- fix critical bug in fkey 1-4 recognition on xterms
2f4e6e
2f4e6e
* Wed Feb  9 2000 Matt Wilson <msw@redhat.com>
2f4e6e
- fixed snack widget setcallback function
2f4e6e
2f4e6e
* Thu Feb 03 2000 Erik Troan <ewt@redhat.com>
2f4e6e
- strip shared libs
2f4e6e
2f4e6e
* Mon Jan 31 2000 Matt Wilson <msw@redhat.com>
2f4e6e
- added patch from Toru Hoshina <t@kondara.org> to improve multibyte
2f4e6e
  character wrapping
2f4e6e
2f4e6e
* Thu Jan 20 2000 Erik Troan <ewt@redhat.com>
2f4e6e
- see CHANGES
2f4e6e
2f4e6e
* Thu Jan 20 2000 Preston Brown <pbrown@redhat.com>
2f4e6e
- fix segfault in newtRadioGetCurrent
2f4e6e
2f4e6e
* Mon Jan 17 2000 Erik Troan <ewt@redhat.com>
2f4e6e
- added numerous bug fixes (see CHANGES)
2f4e6e
2f4e6e
* Mon Dec 20 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- rebuild with fix for listbox from Nalin
2f4e6e
2f4e6e
* Wed Oct 20 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added patch to correctly wrap euc kanji
2f4e6e
2f4e6e
* Wed Sep 01 1999 Erik Troan <ewt@redhat.com>
2f4e6e
- added suspend/resume to snack
2f4e6e
2f4e6e
* Tue Aug 31 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- enable gpm support
2f4e6e
2f4e6e
* Fri Aug 27 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added hotkey assignment for gridforms, changed listbox.setcurrent to
2f4e6e
  take the item key
2f4e6e
2f4e6e
* Wed Aug 25 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- fixed snack callback function refcounts, as well as optional data args
2f4e6e
- fixed suspend callback ref counts
2f4e6e
2f4e6e
* Mon Aug 23 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added buttons argument to entrywindow
2f4e6e
2f4e6e
* Thu Aug 12 1999 Bill Nottingham <notting@redhat.com>
2f4e6e
- multi-state checkboxtrees. Woohoo.
2f4e6e
2f4e6e
* Mon Aug  9 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added snack wrappings for checkbox flag setting
2f4e6e
2f4e6e
* Thu Aug  5 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added snack bindings for setting current listbox selection
2f4e6e
- added argument to set default selection in snack ListboxChoiceWindow
2f4e6e
2f4e6e
* Mon Aug  2 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- added checkboxtree
2f4e6e
- improved snack binding
2f4e6e
2f4e6e
* Fri Apr  9 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- fixed a glibc related bug in reflow that was truncating all text to 1000
2f4e6e
chars
2f4e6e
2f4e6e
* Fri Apr 09 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- fixed bug that made newt apps crash when you hit <insert> followed by lots
2f4e6e
of keys
2f4e6e
2f4e6e
* Mon Mar 15 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- fix from Jakub Jelinek for listbox keypresses
2f4e6e
2f4e6e
* Sat Feb 27 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- fixed support for navigating listboxes with alphabetical keypresses
2f4e6e
2f4e6e
* Thu Feb 25 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- updated descriptions
2f4e6e
- added support for navigating listboxes with alphabetical keypresses
2f4e6e
2f4e6e
* Mon Feb  8 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- made grid wrapped windows at least the size of their title bars
2f4e6e
2f4e6e
* Fri Feb  5 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- Function to set checkbox flags.  This will go away later when I have
2f4e6e
  a generic flag setting function and signals to comps to go insensitive.
2f4e6e
2f4e6e
* Tue Jan 19 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- Stopped using libgpm, internalized all gpm calls.  Still need some cleanups.
2f4e6e
2f4e6e
* Thu Jan  7 1999 Matt Wilson <msw@redhat.com>
2f4e6e
- Added GPM mouse support
2f4e6e
- Moved to autoconf to allow compiling without GPM support
2f4e6e
- Changed revision to 0.40
2f4e6e
2f4e6e
* Wed Oct 21 1998 Bill Nottingham <notting@redhat.com>
2f4e6e
- built against slang-1.2.2
2f4e6e
2f4e6e
* Wed Aug 19 1998 Bill Nottingham <notting@redhat.com>
2f4e6e
- bugfixes for text reflow
2f4e6e
- added docs
2f4e6e
2f4e6e
* Fri May 01 1998 Cristian Gafton <gafton@redhat.com>
2f4e6e
- devel package moved to Development/Libraries
2f4e6e
2f4e6e
* Thu Apr 30 1998 Erik Troan <ewt@redhat.com>
2f4e6e
- removed whiptcl.so -- it should be in a separate package
2f4e6e
2f4e6e
* Mon Feb 16 1998 Erik Troan <ewt@redhat.com>
2f4e6e
- added newtWinMenu()
2f4e6e
- many bug fixes in grid code
2f4e6e
2f4e6e
* Wed Jan 21 1998 Erik Troan <ewt@redhat.com>
2f4e6e
- removed newtWinTernary()
2f4e6e
- made newtWinChoice() return codes consistent with newtWinTernary()
2f4e6e
2f4e6e
* Fri Jan 16 1998 Erik Troan <ewt@redhat.com>
2f4e6e
- added changes from Bruce Perens
2f4e6e
    - small cleanups
2f4e6e
    - lets whiptail automatically resize windows
2f4e6e
- the order of placing a grid and adding components to a form no longer
2f4e6e
  matters
2f4e6e
- added newtGridAddComponentsToForm()
2f4e6e
2f4e6e
* Wed Oct 08 1997 Erik Troan <ewt@redhat.com>
2f4e6e
- added newtWinTernary()
2f4e6e
2f4e6e
* Tue Oct 07 1997 Erik Troan <ewt@redhat.com>
2f4e6e
- made Make/spec files use a buildroot
2f4e6e
- added grid support (for newt 0.11 actually)
2f4e6e
2f4e6e
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
2f4e6e
- Added patched from Clarence Smith for setting the size of a listbox
2f4e6e
- Version 0.9
2f4e6e
2f4e6e
* Wed May 28 1997 Elliot Lee <sopwith@redhat.com> 0.8-2
2f4e6e
- Touchups on Makefile
2f4e6e
- Cleaned up NEWT_FLAGS_*
2f4e6e
2f4e6e
* Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
2f4e6e
- Cleaned up listbox
2f4e6e
- Added whiptail
2f4e6e
- Added newtButtonCompact button type and associated colors
2f4e6e
- Added newtTextboxGetNumLines() and newtTextboxSetHeight()
2f4e6e
2f4e6e
* Tue Feb 25 1997 Erik Troan <ewt@redhat.com>
2f4e6e
- Added changes from sopwith for C++ cleanliness and some listbox fixes.