From: Tianling Shen Date: Mon, 7 Jul 2025 13:04:03 +0000 (+0800) Subject: btop: Update to 1.4.4 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=062287375c17f29b59b0d6ac0fdccd0c397584ff;p=feed%2Fpackages.git btop: Update to 1.4.4 Removed upstreamed patch. Release note: https://github.com/aristocratos/btop/releases/tag/v1.4.4 Signed-off-by: Tianling Shen --- diff --git a/admin/btop/Makefile b/admin/btop/Makefile index 0e7f4e5656..a8f138b708 100644 --- a/admin/btop/Makefile +++ b/admin/btop/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=btop -PKG_VERSION:=1.4.3 -PKG_RELEASE:=3 +PKG_VERSION:=1.4.4 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL=https://codeload.github.com/aristocratos/btop/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=81b133e59699a7fd89c5c54806e16452232f6452be9c14b3a634122e3ebed592 +PKG_HASH:=98d464041015c888c7b48de14ece5ebc6e410bc00ca7bb7c5a8010fe781f1dd8 PKG_MAINTAINER:=Tianling Shen PKG_LICENSE:=Apache-2.0 diff --git a/admin/btop/patches/001-Fix-incorrect-positioning-and-start-symbol-of-second.patch b/admin/btop/patches/001-Fix-incorrect-positioning-and-start-symbol-of-second.patch deleted file mode 100644 index c16db266b8..0000000000 --- a/admin/btop/patches/001-Fix-incorrect-positioning-and-start-symbol-of-second.patch +++ /dev/null @@ -1,21 +0,0 @@ -From d758fc8dc647a12c1bf1b1c1aa5893f92e4daf91 Mon Sep 17 00:00:00 2001 -From: xDMPx <57721731+xDMPx@users.noreply.github.com> -Date: Tue, 13 May 2025 00:06:09 +0200 -Subject: [PATCH] Fix incorrect positioning and start symbol of second title - introduced in 2538d89ed97bd98b8c092ca73ec75be7db888467 - ---- - src/btop_draw.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/src/btop_draw.cpp -+++ b/src/btop_draw.cpp -@@ -293,7 +293,7 @@ namespace Draw { - } - if (not title2.empty()) { - out += fmt::format( -- "{}{}{}{}{}{}{}{}{}", Mv::to(y, x + 2), Symbols::title_left, Fx::b, numbering, Theme::c("title"), title2, Fx::ub, -+ "{}{}{}{}{}{}{}{}{}", Mv::to(y + height - 1, x + 2), Symbols::title_left_down, Fx::b, numbering, Theme::c("title"), title2, Fx::ub, - line_color, Symbols::title_right_down - ); - }