From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5RR35ky5z2yF2 for ; Wed, 29 Apr 2026 18:58:39 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5RR03DjJz2xHk for ; Wed, 29 Apr 2026 18:58:36 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5RQz6Lvvz78q; Wed, 29 Apr 2026 18:58:35 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777489116; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=H9CCKgaygqwCSYiM8yrEUvHc6PX4Q9undNLmsoQu5Ms=; b=GzW+F21PHC5Yv10gFglbqjCFQXqFTohF/JBZA5vObzh5ivkmTq3TeCCPoGgQVQcHSDN3TQ RzkP24PWTrU1rgDg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777489116; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=H9CCKgaygqwCSYiM8yrEUvHc6PX4Q9undNLmsoQu5Ms=; b=jlUX1eyjY2511teyGRU5VvtWIs5GlVEjHd3OlBk7zxm8KI007wcIiqyoQ+EaKjeAQf+fTy VDgvQxy/dqpmelp1VPdjSfAT+TJdGG5NAbBWO+kQEk1HCh23wszrfJ35glmF3vboEL6kf5 muvqxJbqBWQJi18pkDh+LWf7rUca4Wz81daGJemprTB/zqQ3634UvSaghiAei1u2unQHRp 2ftxedN2BURoiVDxOxxrxAwlfVQKoW08eSqVZ8fqtoWhLfEIo7+dv4osE9I95VLzKkALcZ oUUyAjphENXNhC2VxSCVUDOxohYU+xo8Jh2dOKu3r1/eIt9gvgaZQ2GgRju6JA== From: Matthias Fischer To: development@lists.ipfire.org Cc: Matthias Fischer Subject: [PATCH] htop: Update to 3.5.1 Date: Wed, 29 Apr 2026 20:58:21 +0200 Message-ID: <20260429185827.3933479-1-matthias.fischer@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit For details see: https://github.com/htop-dev/htop/blob/main/ChangeLog "What's new in version 3.5.1 * Consolidate ClockMeter code into DateTimeMeter code * Darwin: Fix unsigned underflow in memory meter on ARM64 (Apple Silicon 16K pages showing ~64TB used) * Linux/PCP: Replace M_SHARE (SHR) with M_PRIV (PRIV) in default Main screen columns * PCP: Fix dynamic screen column (instance) sorting (incorrect cast and field offsets) * PCP: Fix units used when printing M_PRIV memory column values * PCP: Add Darwin swap metric values and a fallback on Linux for SwapMeter * Fix null pointer dereference in actionBacktrace() (GCC LTO -O2 -flto, Ubuntu 24.04) * Make search function activate following on find consistently * Make a panel click abort the search function" Signed-off-by: Matthias Fischer --- lfs/htop | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/htop b/lfs/htop index 049f2e83a..3b7a8b38b 100644 --- a/lfs/htop +++ b/lfs/htop @@ -26,7 +26,7 @@ include Config SUMMARY = An Interactive text-mode Process Viewer for Linux -VER = 3.5.0 +VER = 3.5.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 = 24 +PAK_VER = 25 DEPS = @@ -50,7 +50,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 5c7a85164dda81788b1487846ecce05a9457ac80301eacacaba8848a4357eefbf3332dde49e8315b369a0fcbb2443fda64ceb3ba71c3ab939ec68a4ce255a704 +$(DL_FILE)_BLAKE2 = bfa0b16ed6af15057aaa2bf6dbc504693a8ec418c85dc70f2478d1ec1357eaaa67a742149b8fd1ae5faed1dc93b44de166f4db6be6201af28b1a8c54ce5088c4 install : $(TARGET) -- 2.53.0