* [PATCH] htop: Update to version 3.2.1
@ 2022-07-08 20:54 Adolf Belka
2022-07-09 9:04 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-07-08 20:54 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3850 bytes --]
- Update from version 3.1.2 to 3.2.1
- Update of rootfile not required
- Changelog
What's new in version 3.2.1
* Fix setting to show all branches collapsed by default
* Restore functionality of stripExeFromCmdline setting
* Fix some command line display settings not being honored without restart
* Display single digit precision for CPU% greater than 99.9%
* On Linux, FreeBSD and PCP consider only shrinkable ZFS ARC as cache
* On Linux, increase field width of CPUD% and SWAPD% columns
* Colorize process state characters in help screen
* Use mousemask(3X) to enable and disable mouse control
* Fix heap buffer overflow in Vector_compact
* On Solaris, fix a process time scaling error
* On Solaris, fix the build
* On NetBSD, OpenBSD and Solaris ensure env buffer size is sufficient
* On Linux, resolve processes exiting interfering with sampling
* Fix ProcessList quadratic removal when scanning processes
* Under LXC, limit CPU count to that given by /proc/cpuinfo
* Improve container detection for LXC
* Some minor documentation fixes
What's new in version 3.2.0
* Support for displaying multiple tabs in the user interface
* Allow multiple filter and search terms (logical OR, separate by "|")
* Set correct default sorting direction (defaultSortDesc)
* Improve performance for process lookup and update
* Rework the IOMeters initial display
* Removed duplicate sections on COMM and EXE
* Highlight process UNINTERRUPTIBLE_WAIT state (D)
* Show only integer value when CPU% more than 99.9%
* Handle rounding ambiguity between 99.9 and 100.0%
* No longer leaves empty the last column in header
* Fix header layout and meters reset if a header column is empty
* Fix PID and UID column widths off-by-one error
* On Linux, read generic sysfs batteries
* On Linux, do not collect LRS per thread (it is process-wide)
* On Linux, dynamically adjust the SECATTR and CGROUP column widths
* On Linux, fix a crash in LXD
* On FreeBSD, add support for showing process emulation
* On Darwin, lazily set process TTY name
* Always set SIGCHLD to default handling
* Avoid zombie processes on signal races
* Ensure last line is cleared when SIGINT is received
* Instead of SIGTERM, pre-select the last sent signal
* Internal Hashtable performance and sizing improvements
* Add heuristics for guessing LXC or Docker from /proc/1/mounts
* Force elapsed time display to zero if process started in the future
* Avoid extremely large year values when printing time
* Fix division by zero when calculating IO rates
* Fix out of boundary writes in XUtils
* Fix custom thread name display issue
* Use AC_CANONICAL_HOST, not AC_CANONICAL_TARGET in configure.ac
* Support libunwind of LLVM
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/htop | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/htop b/lfs/htop
index 461c3f5ba..019a844e1 100644
--- a/lfs/htop
+++ b/lfs/htop
@@ -26,7 +26,7 @@ include Config
SUMMARY = An Interactive text-mode Process Viewer for Linux
-VER = 3.1.2
+VER = 3.2.1
THISAPP = htop-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = htop
-PAK_VER = 18
+PAK_VER = 19
DEPS =
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 2b05c90df830c94cee08a16fa5a351b30f396b1f352a37d2eada108b972b6a406f667fadd82a227d149a93a2cd6301b7d9477dd8ca369ff3d317b0fd9146d7c2
+$(DL_FILE)_BLAKE2 = 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24
install : $(TARGET)
--
2.37.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] htop: Update to version 3.2.1
2022-07-08 20:54 [PATCH] htop: Update to version 3.2.1 Adolf Belka
@ 2022-07-09 9:04 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-07-09 9:04 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4074 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> - Update from version 3.1.2 to 3.2.1
> - Update of rootfile not required
> - Changelog
> What's new in version 3.2.1
> * Fix setting to show all branches collapsed by default
> * Restore functionality of stripExeFromCmdline setting
> * Fix some command line display settings not being honored without restart
> * Display single digit precision for CPU% greater than 99.9%
> * On Linux, FreeBSD and PCP consider only shrinkable ZFS ARC as cache
> * On Linux, increase field width of CPUD% and SWAPD% columns
> * Colorize process state characters in help screen
> * Use mousemask(3X) to enable and disable mouse control
> * Fix heap buffer overflow in Vector_compact
> * On Solaris, fix a process time scaling error
> * On Solaris, fix the build
> * On NetBSD, OpenBSD and Solaris ensure env buffer size is sufficient
> * On Linux, resolve processes exiting interfering with sampling
> * Fix ProcessList quadratic removal when scanning processes
> * Under LXC, limit CPU count to that given by /proc/cpuinfo
> * Improve container detection for LXC
> * Some minor documentation fixes
> What's new in version 3.2.0
> * Support for displaying multiple tabs in the user interface
> * Allow multiple filter and search terms (logical OR, separate by "|")
> * Set correct default sorting direction (defaultSortDesc)
> * Improve performance for process lookup and update
> * Rework the IOMeters initial display
> * Removed duplicate sections on COMM and EXE
> * Highlight process UNINTERRUPTIBLE_WAIT state (D)
> * Show only integer value when CPU% more than 99.9%
> * Handle rounding ambiguity between 99.9 and 100.0%
> * No longer leaves empty the last column in header
> * Fix header layout and meters reset if a header column is empty
> * Fix PID and UID column widths off-by-one error
> * On Linux, read generic sysfs batteries
> * On Linux, do not collect LRS per thread (it is process-wide)
> * On Linux, dynamically adjust the SECATTR and CGROUP column widths
> * On Linux, fix a crash in LXD
> * On FreeBSD, add support for showing process emulation
> * On Darwin, lazily set process TTY name
> * Always set SIGCHLD to default handling
> * Avoid zombie processes on signal races
> * Ensure last line is cleared when SIGINT is received
> * Instead of SIGTERM, pre-select the last sent signal
> * Internal Hashtable performance and sizing improvements
> * Add heuristics for guessing LXC or Docker from /proc/1/mounts
> * Force elapsed time display to zero if process started in the future
> * Avoid extremely large year values when printing time
> * Fix division by zero when calculating IO rates
> * Fix out of boundary writes in XUtils
> * Fix custom thread name display issue
> * Use AC_CANONICAL_HOST, not AC_CANONICAL_TARGET in configure.ac
> * Support libunwind of LLVM
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/htop | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lfs/htop b/lfs/htop
> index 461c3f5ba..019a844e1 100644
> --- a/lfs/htop
> +++ b/lfs/htop
> @@ -26,7 +26,7 @@ include Config
>
> SUMMARY = An Interactive text-mode Process Viewer for Linux
>
> -VER = 3.1.2
> +VER = 3.2.1
>
> THISAPP = htop-$(VER)
> DL_FILE = $(THISAPP).tar.xz
> @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = htop
> -PAK_VER = 18
> +PAK_VER = 19
>
> DEPS =
>
> @@ -50,7 +50,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 2b05c90df830c94cee08a16fa5a351b30f396b1f352a37d2eada108b972b6a406f667fadd82a227d149a93a2cd6301b7d9477dd8ca369ff3d317b0fd9146d7c2
> +$(DL_FILE)_BLAKE2 = 7addefca7de8f0867220e6415f4585f7e6ecf655d6245e4a8e120552ac738544fde1c2d8e24ce1139209caad23994316e8be9611f6ed0253d60547158d17ff24
>
> install : $(TARGET)
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-09 9:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-08 20:54 [PATCH] htop: Update to version 3.2.1 Adolf Belka
2022-07-09 9:04 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox