mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-15 05:24:36 +03:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
4148b587d1 | |||
7b2265b242 | |||
69b1278c59 | |||
7fe0c2b33d | |||
bd61388c1d | |||
a457ce307e |
@ -1,4 +1,12 @@
|
|||||||
|
|
||||||
|
What's new in version 0.6.2
|
||||||
|
|
||||||
|
* BUGFIX: Fixed crash when using some .htoprc files from 0.6
|
||||||
|
(thanks to Wolfram Schlich and John Thomas for the reports)
|
||||||
|
* BUGFIX: Ensure changes to color scheme are saved
|
||||||
|
* BUGFIX: Make configure behave correctly with --with-proc
|
||||||
|
* Minor addition to .desktop file.
|
||||||
|
|
||||||
What's new in version 0.6.1
|
What's new in version 0.6.1
|
||||||
|
|
||||||
* New meter type: "All CPUs", which dynamically adjusts
|
* New meter type: "All CPUs", which dynamically adjusts
|
||||||
|
@ -85,6 +85,7 @@ HandlerResult ColorsListBox_EventHandler(ListBox* super, int ch) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (result == HANDLED) {
|
if (result == HANDLED) {
|
||||||
|
this->settings->changed = true;
|
||||||
Header* header = this->settings->header;
|
Header* header = this->settings->header;
|
||||||
CRT_setColors(mark);
|
CRT_setColors(mark);
|
||||||
ListBox* lbMenu = (ListBox*) TypedVector_get(this->scr->items, 0);
|
ListBox* lbMenu = (ListBox*) TypedVector_get(this->scr->items, 0);
|
||||||
|
1
Meter.c
1
Meter.c
@ -119,6 +119,7 @@ MeterType* Meter_types[] = {
|
|||||||
&CPUMeter,
|
&CPUMeter,
|
||||||
&ClockMeter,
|
&ClockMeter,
|
||||||
&LoadAverageMeter,
|
&LoadAverageMeter,
|
||||||
|
&LoadMeter,
|
||||||
&MemoryMeter,
|
&MemoryMeter,
|
||||||
&SwapMeter,
|
&SwapMeter,
|
||||||
&TasksMeter,
|
&TasksMeter,
|
||||||
|
@ -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.6.1],[loderunner@users.sourceforge.net])
|
AC_INIT([htop],[0.6.2],[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])
|
||||||
@ -44,11 +44,12 @@ AC_ARG_WITH(proc, [ --with-proc=DIR Location of a Linux-compatible proc fi
|
|||||||
|
|
||||||
if test -n "$withval"; then
|
if test -n "$withval"; then
|
||||||
AC_DEFINE_UNQUOTED(PROCDIR, "$withval", [Path of proc filesystem])
|
AC_DEFINE_UNQUOTED(PROCDIR, "$withval", [Path of proc filesystem])
|
||||||
|
PROCDIR="$withval"
|
||||||
fi,
|
fi,
|
||||||
AC_DEFINE(PROCDIR, "/proc", [Path of proc filesystem]))
|
AC_DEFINE(PROCDIR, "/proc", [Path of proc filesystem]))
|
||||||
|
|
||||||
AC_CHECK_FILE(/proc/stat,,AC_MSG_ERROR(Cannot find /proc/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
|
AC_CHECK_FILE($PROCDIR/stat,,AC_MSG_ERROR(Cannot find /proc/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
|
||||||
AC_CHECK_FILE(/proc/meminfo,,AC_MSG_ERROR(Cannot find /proc/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
|
AC_CHECK_FILE($PROCDIR/meminfo,,AC_MSG_ERROR(Cannot find /proc/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.))
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile])
|
AC_CONFIG_FILES([Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
2
htop.1
2
htop.1
@ -1,4 +1,4 @@
|
|||||||
.TH "htop" "1" "0.6.1" "Bartosz Fenski <fenio@o2.pl>" "Utils"
|
.TH "htop" "1" "0.6.2" "Bartosz Fenski <fenio@o2.pl>" "Utils"
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
htop \- interactive process viewer
|
htop \- interactive process viewer
|
||||||
.SH "SYNTAX"
|
.SH "SYNTAX"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Encoding=UTF-8
|
Encoding=UTF-8
|
||||||
Version=0.6.1
|
Version=0.6.2
|
||||||
Name=Htop
|
Name=Htop
|
||||||
Type=Application
|
Type=Application
|
||||||
Comment=Show System Processes
|
Comment=Show System Processes
|
||||||
@ -8,5 +8,5 @@ Terminal=true
|
|||||||
Exec=htop
|
Exec=htop
|
||||||
Path=
|
Path=
|
||||||
Icon=htop
|
Icon=htop
|
||||||
Categories=ConsoleOnly;System;
|
Categories=ConsoleOnly;System;Application;
|
||||||
GenericName=Process Viewer
|
GenericName=Process Viewer
|
||||||
|
Reference in New Issue
Block a user