Date: Sunday, February 7, 2021 @ 09:41:46 Author: foutrelis Revision: 407598
upgpkg: xfce4-taskmanager 1.4.1-1: new upstream release Modified: xfce4-taskmanager/trunk/PKGBUILD xfce4-taskmanager/trunk/ellipsize-memory-and-swap-labels.patch ----------------------------------------+ PKGBUILD | 8 ++++---- ellipsize-memory-and-swap-labels.patch | 11 +++++------ 2 files changed, 9 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-02-06 20:53:36 UTC (rev 407597) +++ PKGBUILD 2021-02-07 09:41:46 UTC (rev 407598) @@ -1,8 +1,8 @@ # Maintainer: Evangelos Foutras <[email protected]> pkgname=xfce4-taskmanager -pkgver=1.4.0 -pkgrel=2 +pkgver=1.4.1 +pkgrel=1 pkgdesc="Easy to use task manager" arch=('x86_64') url="https://docs.xfce.org/apps/xfce4-taskmanager" @@ -12,8 +12,8 @@ groups=('xfce4-goodies') source=(https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2 ellipsize-memory-and-swap-labels.patch) -sha256sums=('655684ddfc15fc09071f78f9fce5439d20bbd2d80ecfc5ba0a08fb38313e7d43' - '74abd16b1ade4fc9e939a0caa9d6630c6c479d19cee71a3615d1ccd6ef0a2bf7') +sha256sums=('1141d2fde7bd498ccc2ce063800721e3ebb62dc9c9278cf1e2842df474965b5b' + '32315f08756ce208631eac89f7981e22d33d3cbb060c4d513861931eaa0f0793') prepare() { cd "$srcdir/$pkgname-$pkgver" Modified: ellipsize-memory-and-swap-labels.patch =================================================================== --- ellipsize-memory-and-swap-labels.patch 2021-02-06 20:53:36 UTC (rev 407597) +++ ellipsize-memory-and-swap-labels.patch 2021-02-07 09:41:46 UTC (rev 407598) @@ -1,15 +1,17 @@ -From 7005713f906715c4e960796ad135081c59013d75 Mon Sep 17 00:00:00 2001 +From 2c769d13c24ec744c1487d3fc517137230fabe5b Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss <[email protected]> Date: Mon, 18 Jan 2021 12:05:07 +0100 Subject: [PATCH] Ellipsize memory and swap labels (Fixes #32) Also show the full values in a tooltip. + +(cherry picked from commit 7005713f906715c4e960796ad135081c59013d75) --- src/process-statusbar.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/process-statusbar.c b/src/process-statusbar.c -index c63465b..64f33e4 100644 +index 630af86..a2fd566 100644 --- a/src/process-statusbar.c +++ b/src/process-statusbar.c @@ -92,9 +92,11 @@ xtm_process_statusbar_init (XtmProcessStatusbar *statusbar) @@ -29,7 +31,7 @@ text = g_strdup_printf (_("Memory: %s"), statusbar->memory); gtk_label_set_text (GTK_LABEL (statusbar->label_memory), text); + gtk_widget_set_tooltip_text (statusbar->label_memory, text); - gdk_rgba_parse (&color, "#c22b66"); + gdk_rgba_parse (&color, "#cb386c"); gtk_widget_override_color (statusbar->label_memory, GTK_STATE_NORMAL, &color); g_free (text); @@ -155,6 +158,7 @@ xtm_process_statusbar_set_property (GObject *object, guint property_id, const GV @@ -40,6 +42,3 @@ g_free (text); break; --- -GitLab -
