- fix checkboxtree positioning

- make textbox with scrollbar focusable (#83203)
- turn off cursor when entry terminated form (#86074)
- handle listbox and checkboxtree focus better (#186053)
- make default colors more friendly to 8-color terminals (#187545)
This commit is contained in:
Miroslav Lichvar 2006-06-08 15:52:48 +00:00
parent 0123699759
commit 5bdf754ada

View File

@ -4,7 +4,7 @@ Summary: A development library for text mode user interfaces.
Name: newt
%define version 0.52.2
Version: %{version}
Release: 6.1
Release: 7
License: LGPL
Group: System Environment/Libraries
Source: newt-%{version}.tar.gz
@ -12,6 +12,10 @@ Patch0: newt-0.52.2-notcl.patch
Patch1: newt-0.52.2-scrollbars.patch
Patch2: newt-0.52.2-pgupdown-crash.patch
Patch3: newt-0.52.2-screensize.patch
Patch4: newt-0.52.2-cbtpos.patch
Patch5: newt-0.52.2-focus.patch
Patch6: newt-0.52.2-cursor.patch
Patch7: newt-0.52.2-colors.patch
BuildRequires: python, python-devel, perl, slang-devel
Requires: slang
Provides: snack = %{version}-%{release}
@ -46,6 +50,10 @@ newt.
%patch1 -p1 -b .scrollbars
%patch2 -p1 -b .pgupdown-crash
%patch3 -p1 -b .screensize
%patch4 -p1 -b .cbtpos
%patch5 -p1 -b .focus
%patch6 -p1 -b .cursor
%patch7 -p1 -b .colors
%build
# gpm support seems to smash the stack w/ we use help in anaconda??
@ -91,6 +99,13 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/libnewt.so
%changelog
* Thu Jun 08 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-7
- fix checkboxtree positioning
- make textbox with scrollbar focusable (#83203)
- turn off cursor when entry terminated form (#86074)
- handle listbox and checkboxtree focus better (#186053)
- make default colors more friendly to 8-color terminals (#187545)
* Wed May 31 2006 Miroslav Lichvar <mlichvar@redhat.com> - 0.52.2-6.1
- fix handling windows larger than screen size (#189981)