Commit 3e6be2d7 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

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

parent 4206828d
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')
......
...@@ -180,6 +180,7 @@ void OpenFilesScreen_run(OpenFilesScreen* this) { ...@@ -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:
......
...@@ -13,9 +13,9 @@ ...@@ -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
......
...@@ -16,9 +16,9 @@ ...@@ -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
......
...@@ -150,6 +150,7 @@ void TraceScreen_run(TraceScreen* this) { ...@@ -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:
......
...@@ -2,7 +2,7 @@ ...@@ -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])
......
...@@ -122,7 +122,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ ...@@ -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@
......
...@@ -157,7 +157,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ ...@@ -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@
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment