Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 03 Jan 2026 02:03:53 +0000
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Cc:        Christopher Hall <hsw@bitmark.com>
Subject:   git: 79759c499305 - main - sysutils/go-wtf: Update to 0.48.0
Message-ID:  <69587909.425c1.6af38db5@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=79759c4993053ec08660c6dbf6f90953f3f9e20c

commit 79759c4993053ec08660c6dbf6f90953f3f9e20c
Author:     Christopher Hall <hsw@bitmark.com>
AuthorDate: 2026-01-03 01:59:50 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2026-01-03 01:59:50 +0000

    sysutils/go-wtf: Update to 0.48.0
    
    - Update maintainer address
    - Also adds a patch for todo module cursor highlight:
      https://github.com/wtfutil/wtf/issues/1807
    
    Differential Revision:  https://reviews.freebsd.org/D54416
---
 sysutils/go-wtf/Makefile                           |  4 ++--
 sysutils/go-wtf/distinfo                           | 10 ++++-----
 .../go-wtf/files/patch-modules_todo_display.go     | 24 ++++++++++++++++++++++
 3 files changed, 31 insertions(+), 7 deletions(-)

diff --git a/sysutils/go-wtf/Makefile b/sysutils/go-wtf/Makefile
index e603817354a0..4f9e2e6f21f6 100644
--- a/sysutils/go-wtf/Makefile
+++ b/sysutils/go-wtf/Makefile
@@ -1,10 +1,10 @@
 PORTNAME=	wtf
 DISTVERSIONPREFIX=	v
-DISTVERSION=	0.47.1
+DISTVERSION=	0.48.0
 CATEGORIES=	sysutils
 PKGNAMEPREFIX=	go-
 
-MAINTAINER=	hsw@bitmark.com
+MAINTAINER=	bsd.hsw@gmail.com
 COMMENT=	Personal information dashboard for your terminal
 WWW=		https://wtfutil.com
 
diff --git a/sysutils/go-wtf/distinfo b/sysutils/go-wtf/distinfo
index 374070fa80d1..cf702c46d2d7 100644
--- a/sysutils/go-wtf/distinfo
+++ b/sysutils/go-wtf/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1763468368
-SHA256 (go/sysutils_go-wtf/wtf-v0.47.1/v0.47.1.mod) = b3a652c2a0f1cb5fcf390bff792fc0aa92e10df08cb92af4b73278e90c9ee690
-SIZE (go/sysutils_go-wtf/wtf-v0.47.1/v0.47.1.mod) = 13426
-SHA256 (go/sysutils_go-wtf/wtf-v0.47.1/v0.47.1.zip) = 4d4afbf55c16ca6beb330e5dbfb8e0afe29a10ec6b7f9726554f5bd5da264ed4
-SIZE (go/sysutils_go-wtf/wtf-v0.47.1/v0.47.1.zip) = 2924578
+TIMESTAMP = 1766990606
+SHA256 (go/sysutils_go-wtf/wtf-v0.48.0/v0.48.0.mod) = a377ba302d2249f7f70c43cd4d4b4b9a0650af399cafe297b79eef2e1a219694
+SIZE (go/sysutils_go-wtf/wtf-v0.48.0/v0.48.0.mod) = 13364
+SHA256 (go/sysutils_go-wtf/wtf-v0.48.0/v0.48.0.zip) = 0ae666400cd000dc21ed01333c6d440bdffd7b15a4f8e26ca1f6ead55e56110e
+SIZE (go/sysutils_go-wtf/wtf-v0.48.0/v0.48.0.zip) = 2921302
diff --git a/sysutils/go-wtf/files/patch-modules_todo_display.go b/sysutils/go-wtf/files/patch-modules_todo_display.go
new file mode 100644
index 000000000000..293a4853b9bd
--- /dev/null
+++ b/sysutils/go-wtf/files/patch-modules_todo_display.go
@@ -0,0 +1,24 @@
+--- modules/todo/display.go.orig	1979-11-29 16:00:00 UTC
++++ modules/todo/display.go
+@@ -122,7 +122,11 @@ func (widget *Widget) RowColor(idx int, hidden int, ch
+ 	}
+ 
+ 	if checked {
+-		return widget.settings.Colors.Checked
++		return fmt.Sprintf(
++			"%s:%s",
++			widget.settings.Colors.Checked,
++			widget.CommonSettings().Colors.Background,
++		)
+ 	} else {
+ 		return widget.CommonSettings().RowColor(idx - hidden)
+ 	}
+@@ -133,7 +137,7 @@ func (widget *Widget) formattedItemLine(idx int, hidde
+ 
+ 	todoDate := currItem.Date
+ 	row := fmt.Sprintf(
+-		` [%s]|%s| `,
++		`[%s]|%s| `,
+ 		rowColor,
+ 		currItem.CheckMark(),
+ 	)


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69587909.425c1.6af38db5>