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