Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
3e6be2d7
Commit
3e6be2d7
authored
Jun 08, 2009
by
Hisham Muhammad
Browse files
fix to minor bug affecting the build process, a maintenance release will follow shortly.
parent
4206828d
Changes
8
Show whitespace changes
Inline
Side-by-side
ChangeLog
View file @
3e6be2d7
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
* Integrated lsof (press 'l')
...
...
OpenFilesScreen.c
View file @
3e6be2d7
...
...
@@ -180,6 +180,7 @@ void OpenFilesScreen_run(OpenFilesScreen* this) {
break
;
case
'q'
:
case
27
:
case
KEY_F
(
10
):
looping
=
false
;
break
;
case
KEY_RESIZE
:
...
...
RichString.c
View file @
3e6be2d7
...
...
@@ -13,9 +13,9 @@
#include "debug.h"
#include <assert.h>
#ifdef HAVE_LIBNCURSESW
#include <curses.h>
#else
#include <ncursesw/curses.h>
#else
#include <curses.h>
#endif
#define RICHSTRING_MAXLEN 300
...
...
RichString.h
View file @
3e6be2d7
...
...
@@ -16,9 +16,9 @@
#include "debug.h"
#include <assert.h>
#ifdef HAVE_LIBNCURSESW
#include <curses.h>
#else
#include <ncursesw/curses.h>
#else
#include <curses.h>
#endif
#define RICHSTRING_MAXLEN 300
...
...
TraceScreen.c
View file @
3e6be2d7
...
...
@@ -150,6 +150,7 @@ void TraceScreen_run(TraceScreen* this) {
break
;
case
'q'
:
case
27
:
case
KEY_F
(
10
):
looping
=
false
;
break
;
case
KEY_RESIZE
:
...
...
configure.ac
View file @
3e6be2d7
...
...
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
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
AC_CONFIG_SRCDIR([htop.c])
AC_CONFIG_HEADER([config.h])
...
...
plpa-1.1/Makefile.in
View file @
3e6be2d7
...
...
@@ -122,7 +122,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION
=
@PACKAGE_VERSION@
PATH_SEPARATOR
=
@PATH_SEPARATOR@
RANLIB
=
@RANLIB@
SED
=
@SED@
SET_MAKE
=
@SET_MAKE@
SHELL
=
@SHELL@
STRIP
=
@STRIP@
...
...
plpa-1.1/src/Makefile.in
View file @
3e6be2d7
...
...
@@ -157,7 +157,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION
=
@PACKAGE_VERSION@
PATH_SEPARATOR
=
@PATH_SEPARATOR@
RANLIB
=
@RANLIB@
SED
=
@SED@
SET_MAKE
=
@SET_MAKE@
SHELL
=
@SHELL@
STRIP
=
@STRIP@
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment