fix to minor bug affecting the build process, a maintenance release will follow shortly.

This commit is contained in:
Hisham Muhammad 2009-06-08 21:08:02 +00:00
parent 4206828d17
commit 3e6be2d7f7
8 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,8 @@
What's new in version 0.8.2.1
* BUGFIX: Fix a minor bug which affected the build process.
What's new in version 0.8.2 What's new in version 0.8.2
* Integrated lsof (press 'l') * Integrated lsof (press 'l')

View File

@ -180,6 +180,7 @@ void OpenFilesScreen_run(OpenFilesScreen* this) {
break; break;
case 'q': case 'q':
case 27: case 27:
case KEY_F(10):
looping = false; looping = false;
break; break;
case KEY_RESIZE: case KEY_RESIZE:

View File

@ -13,9 +13,9 @@
#include "debug.h" #include "debug.h"
#include <assert.h> #include <assert.h>
#ifdef HAVE_LIBNCURSESW #ifdef HAVE_LIBNCURSESW
#include <curses.h>
#else
#include <ncursesw/curses.h> #include <ncursesw/curses.h>
#else
#include <curses.h>
#endif #endif
#define RICHSTRING_MAXLEN 300 #define RICHSTRING_MAXLEN 300

View File

@ -16,9 +16,9 @@
#include "debug.h" #include "debug.h"
#include <assert.h> #include <assert.h>
#ifdef HAVE_LIBNCURSESW #ifdef HAVE_LIBNCURSESW
#include <curses.h>
#else
#include <ncursesw/curses.h> #include <ncursesw/curses.h>
#else
#include <curses.h>
#endif #endif
#define RICHSTRING_MAXLEN 300 #define RICHSTRING_MAXLEN 300

View File

@ -150,6 +150,7 @@ void TraceScreen_run(TraceScreen* this) {
break; break;
case 'q': case 'q':
case 27: case 27:
case KEY_F(10):
looping = false; looping = false;
break; break;
case KEY_RESIZE: case KEY_RESIZE:

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57) AC_PREREQ(2.57)
AC_INIT([htop],[0.8.2],[loderunner@users.sourceforge.net]) AC_INIT([htop],[0.8.2.1],[loderunner@users.sourceforge.net])
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([htop.c]) AC_CONFIG_SRCDIR([htop.c])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])

View File

@ -122,7 +122,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@ PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@ SET_MAKE = @SET_MAKE@
SHELL = @SHELL@ SHELL = @SHELL@
STRIP = @STRIP@ STRIP = @STRIP@

View File

@ -157,7 +157,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@ PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@ PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@ RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@ SET_MAKE = @SET_MAKE@
SHELL = @SHELL@ SHELL = @SHELL@
STRIP = @STRIP@ STRIP = @STRIP@