mirror of https://github.com/xzeldon/htop.git
Bringing extra files up-to-date
This commit is contained in:
parent
07030b4518
commit
3bf904b7ce
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
What's new in version 0.6.3
|
What's new in version 0.6.3
|
||||||
|
|
||||||
* Performance improvements; uses much less CPU than the
|
* Performance improvements: uses much less CPU than the
|
||||||
previous release with the default setup.
|
previous release with the default setup.
|
||||||
* Use 64-bit values when storing processor times to
|
* Use 64-bit values when storing processor times to
|
||||||
avoid overflow.
|
avoid overflow.
|
||||||
|
@ -9,6 +9,8 @@ What's new in version 0.6.3
|
||||||
of 64-bit values.
|
of 64-bit values.
|
||||||
* Internal change: rename TypedVector to Vector and
|
* Internal change: rename TypedVector to Vector and
|
||||||
ListBox (and related classes) to Panel.
|
ListBox (and related classes) to Panel.
|
||||||
|
* Have configure actually fail when needed libraries or
|
||||||
|
headers are not found.
|
||||||
|
|
||||||
What's new in version 0.6.2
|
What's new in version 0.6.2
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
bin_PROGRAMS = htop
|
bin_PROGRAMS = htop
|
||||||
dist_man_MANS = htop.1
|
dist_man_MANS = htop.1
|
||||||
EXTRA_DIST = $(dist_man_MANS) htop.desktop htop.png scripts/MakeHeader.py
|
EXTRA_DIST = $(dist_man_MANS) htop.desktop htop.png scripts/MakeHeader.py \
|
||||||
|
install-sh autogen.sh missing
|
||||||
applicationsdir = $(datadir)/applications
|
applicationsdir = $(datadir)/applications
|
||||||
applications_DATA = htop.desktop
|
applications_DATA = htop.desktop
|
||||||
pixmapdir = $(datadir)/pixmaps
|
pixmapdir = $(datadir)/pixmaps
|
||||||
|
|
1
TODO
1
TODO
|
@ -9,7 +9,6 @@ BUGS:
|
||||||
FEATURES:
|
FEATURES:
|
||||||
|
|
||||||
* expand/collapse on tree
|
* expand/collapse on tree
|
||||||
* read SYSCONFDIR/htoprc (help, autoconf gurus!)
|
|
||||||
* handle saving of .htoprc more elegantly
|
* handle saving of .htoprc more elegantly
|
||||||
* make bars display refresh independent from list refresh
|
* make bars display refresh independent from list refresh
|
||||||
* auto-calibrate delay
|
* auto-calibrate delay
|
||||||
|
|
2
htop.1
2
htop.1
|
@ -1,4 +1,4 @@
|
||||||
.TH "htop" "1" "0.6.2" "Bartosz Fenski <fenio@o2.pl>" "Utils"
|
.TH "htop" "1" "0.6.3" "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.2
|
Version=0.6.3
|
||||||
Name=Htop
|
Name=Htop
|
||||||
Type=Application
|
Type=Application
|
||||||
Comment=Show System Processes
|
Comment=Show System Processes
|
||||||
|
|
Loading…
Reference in New Issue