Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plank for openSUSE:Factory checked in at 2025-01-22 16:39:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plank (Old) and /work/SRC/openSUSE:Factory/.plank.new.5589 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plank" Wed Jan 22 16:39:35 2025 rev:15 rq:1239530 version:0.11.89 Changes: -------- --- /work/SRC/openSUSE:Factory/plank/plank.changes 2024-12-06 14:26:20.076368207 +0100 +++ /work/SRC/openSUSE:Factory/.plank.new.5589/plank.changes 2025-01-22 16:39:36.778080583 +0100 @@ -1,0 +2,6 @@ +Fri Jan 17 09:29:39 UTC 2025 - Mike Gabriel <mike.gabr...@das-netzwerkteam.de> + +- Add trash-menu-header-workaround.patch with a workaround for + excessively large menu headers which get clipped (lp#1679883) + +------------------------------------------------------------------- New: ---- trash-menu-header-workaround.patch BETA DEBUG BEGIN: New: - Add trash-menu-header-workaround.patch with a workaround for excessively large menu headers which get clipped (lp#1679883) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plank.spec ++++++ --- /var/tmp/diff_new_pack.258R5T/_old 2025-01-22 16:39:38.614156545 +0100 +++ /var/tmp/diff_new_pack.258R5T/_new 2025-01-22 16:39:38.626157041 +0100 @@ -27,6 +27,8 @@ Source1: %{url}/1.0/%{version}/+download/%{name}-%{version}.tar.xz.asc Source3: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xe4884aeede4cc02043c3d8045decdba89270e723#/%{name}.keyring Patch1: 0001_changed-plank-positioning-according-to-workarea.patch +# PATCH-FIX-OPENSUSE trash-menu-header-workaround.patch -- workaround for lp#1679883 +Patch2: trash-menu-header-workaround.patch BuildRequires: autoconf >= 2.65 BuildRequires: automake >= 1.11 BuildRequires: hicolor-icon-theme ++++++ trash-menu-header-workaround.patch ++++++ Work around excessively large text in the header which gets clipped (lp#1679883). Index: lib/Widgets/TitledSeparatorMenuItem.vala =================================================================== --- a/lib/Widgets/TitledSeparatorMenuItem.vala 2023-12-13 11:43:21.156950996 +0000 +++ b/lib/Widgets/TitledSeparatorMenuItem.vala 2023-12-13 12:34:44.688950996 +0000 @@ -83,8 +83,8 @@ namespace Plank } unowned Pango.FontDescription font_desc = style.font_desc; - font_desc.set_absolute_size ((int) (h * Pango.SCALE * Pango.Scale.LARGE)); - font_desc.set_weight (Pango.Weight.BOLD); + // font_desc.set_absolute_size ((int) (h * Pango.SCALE * Pango.Scale.LARGE)); + // font_desc.set_weight (Pango.Weight.BOLD); var layout = new Pango.Layout (Gdk.pango_context_get ()); layout.set_font_description (font_desc);