[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1112312: marked as done (trixie-pu: package desktop-base/13.0.3+deb13u1)



Your message dated Sat, 06 Sep 2025 12:14:57 +0100
with message-id <165032e5317517556dd7fd8cf24843112a3fb6ac.camel@adam-barratt.org.uk>
and subject line Closing p-u requests for fixes included in 13.1
has caused the Debian Bug report #1112312,
regarding trixie-pu: package desktop-base/13.0.3+deb13u1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
1112312: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1112312
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: trixie
X-Debbugs-Cc: desktop-base@packages.debian.org
Control: affects -1 + src:desktop-base
User: release.debian.org@packages.debian.org
Usertags: pu

Dear Stable Release Managers.

[ Reason ]
I’d like to fix the following bug in trixie:
  Bug#1110858: ceratopsian-theme: plymouth password/fsck prompts
  off-center on multi-monitor mixed-resolution set-ups

[ Impact ]
While I’m not sure the original bug qualifies as severity "important"
it’s still a highly visible issue right from the boot for people having
a multi-monitor setup and using disk encryption.

[ Tests ]
- The same fix was tested against unstable both for single and
multi-monitor setups, and the fix backported to a trixie branch.
- The package targetting trixie was tested for non-regression in a
  trixie VM (with a single screen).

[ Risks ]
The fix is made of 4 simple one-liners, with the new calculation being
even simpler than the original code. I could reproduce the issue and
confirm the fix. So I consider the risk to be very low.

[ Checklist ]
  [x] *all* changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in (old)stable
  [x] the issue is verified as fixed in unstable

[ Changes ]
* Fix ceratopsian-theme’s plymouth password/fsck prompts off-center on
  multi-monitor mixed-resolution set-ups. Thanks Shaun Lewis for the patch.
  (Closes: #1110858)


Thanks !
--
Aurélien

diff -Nru desktop-base-13.0.3/ceratopsian-theme/plymouth/ceratopsian.script desktop-base-13.0.4/ceratopsian-theme/plymouth/ceratopsian.script
--- desktop-base-13.0.3/ceratopsian-theme/plymouth/ceratopsian.script	2025-05-23 11:26:01.000000000 +0200
+++ desktop-base-13.0.4/ceratopsian-theme/plymouth/ceratopsian.script	2025-08-28 13:32:12.000000000 +0200
@@ -330,7 +330,7 @@
     message_label.height = message_image.GetHeight ();
 
     # Center the line horizontally
-    message_label.x = Window.GetX () + Window.GetWidth () / 2 - message_label.width / 2;
+    message_label.x = (Window.GetWidth () - message_label.width) / 2;
 
     message_label.y = top_of_the_text;
 
@@ -365,7 +365,7 @@
     fsck_label.height = fsck_label.image.GetHeight ();
 
     # Centre the label horizontally
-    fsck_label.x = Window.GetX () + Window.GetWidth () / 2 - fsck_label.width / 2;
+    fsck_label.x = (Window.GetWidth () - fsck_label.width) / 2;
 
     local.first_label = get_message_label (label, 1, 0);
 
@@ -482,7 +482,7 @@
     entry.sprite.SetImage (entry.image);
 
     # Centre the box horizontally
-    entry.x = Window.GetX () + Window.GetWidth () / 2 - entry.image.GetWidth () / 2;
+    entry.x = (Window.GetWidth () - entry.image.GetWidth ()) / 2;
 
     # Put the entry below the second label.
     entry.y = message_notification[2].y + label.height * 1.5;
@@ -530,7 +530,7 @@
     spaces = Math.Int( (password_dialogue.entry.image.GetWidth () - (margin * 2)) / (bullet_width / 2 ) );
     #DebugMedium ("spaces = " + spaces + ", bullets = " + bullets);
     bullets_area.width = margin + spaces * (bullet_width / 2);
-    bullets_area.x = Window.GetX () + Window.GetWidth () / 2 - bullets_area.width / 2;
+    bullets_area.x = (Window.GetWidth () - bullets_area.width) / 2;
     #DebugBottom ("pwd_entry (x,y) = " + password_dialogue.entry.x + "," + password_dialogue.entry.y
     #             + "), bullets_area.x = " + bullets_area.x + ", bullets_area.width = " + bullets_area.width);
     if (bullets > spaces)
diff -Nru desktop-base-13.0.3/debian/changelog desktop-base-13.0.4/debian/changelog
--- desktop-base-13.0.3/debian/changelog	2025-05-30 14:30:31.000000000 +0200
+++ desktop-base-13.0.4/debian/changelog	2025-08-28 13:33:06.000000000 +0200
@@ -1,3 +1,12 @@
+desktop-base (13.0.4) trixie; urgency=medium
+
+  [ Aurélien COUDERC ]
+  * Fix ceratopsian-theme’s plymouth password/fsck prompts off-center on
+    multi-monitor mixed-resolution set-ups. Thanks Shaun Lewis for the patch.
+    (Closes: #1110858)
+
+ -- Aurélien COUDERC <coucouf@debian.org>  Thu, 28 Aug 2025 13:33:06 +0200
+
 desktop-base (13.0.3) unstable; urgency=medium
 
   * Fix incongruous black background in logo-text.svg and

--- End Message ---
--- Begin Message ---
Package: release.debian.org
Version: 13.1

Hi,

Each of the updates referenced by these requests was included in
today's 13.1 point release for trixie.

Regards,

Adam

--- End Message ---

Reply to: