Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2024-05-28 17:27:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-shell.new.24587 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-shell"

Tue May 28 17:27:59 2024 rev:255 rq:1177063 version:46.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2024-05-03 
19:43:44.107074371 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new.24587/gnome-shell.changes       
2024-05-28 17:28:38.987638113 +0200
@@ -1,0 +2,29 @@
+Mon May 27 07:11:02 UTC 2024 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Update to version 46.2:
+  + Fix size of workspace switcher OSD.
+  + Fix handling of invalid TLS certs in portal handler.
+  + Exclude override-redirect windows from workspace animation.
+  + Also center time on lock screen when using 12h format.
+  + Use absolute tray icon position in root event coordinates.
+  + Fix displaying info messages on login screen.
+  + Correct expected bus name for streams.
+  + Fix notifications on lock screen.
+  + notifications: Only apply special styling to symbolic icons.
+  + Fix number of search results with Large Text option.
+  + Fix showing keyboard layouts with variants.
+  + Tweak font sizes in calendar.
+  + automountManager: Fix re-asking password for TCRYPT devices.
+  + Fix stuck unlock prompt when animations are disabled.
+  + Fix possible hang on startup during ibus-daemon launch.
+  + Misc. bug fixes and cleanups.
+  + Updated translations.
+
+-------------------------------------------------------------------
+Fri May 17 03:33:41 UTC 2024 - Alynx Zhou <alynx.z...@suse.com>
+
+- Add gnome-shell-fix-cursor-on-hide-preedit.patch: Correctly reset
+  preedit cursor location when hide preedit text to prevent
+  potential problems (glgo#GNOME/gnome-shell!3318).
+
+-------------------------------------------------------------------

Old:
----
  gnome-shell-46.1.obscpio

New:
----
  gnome-shell-46.2.obscpio
  gnome-shell-fix-cursor-on-hide-preedit.patch

BETA DEBUG BEGIN:
  New:
- Add gnome-shell-fix-cursor-on-hide-preedit.patch: Correctly reset
  preedit cursor location when hide preedit text to prevent
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-shell.spec ++++++
--- /var/tmp/diff_new_pack.NBS4PK/_old  2024-05-28 17:28:40.099678778 +0200
+++ /var/tmp/diff_new_pack.NBS4PK/_new  2024-05-28 17:28:40.103678925 +0200
@@ -21,7 +21,7 @@
 %define mutter_req 46.0
 
 Name:           gnome-shell
-Version:        46.1
+Version:        46.2
 Release:        0
 Summary:        GNOME Shell
 # shew extension is LGPL 2.1; gnome-shell-extension-tool is GPL-3.0-or-later
@@ -41,6 +41,8 @@
 Patch7:         gnome-shell-executable-path-not-absolute.patch
 # PATCH-FIX-UPSTREAM gnome-shell-exit-crash-workaround.patch bsc#1190878 
glgo#GNOME/gnome-shell#4344 qk...@suse.com -- Workaround logout crashing
 Patch8:         gnome-shell-exit-crash-workaround.patch
+# PATCH-FIX-UPSTREAM gnome-shell-fix-cursor-on-hide-preedit.patch 
glgo#GNOME/gnome-shell!3318 alynx.z...@suse.com -- Correctly reset cursor when 
hide preedit
+Patch9:         gnome-shell-fix-cursor-on-hide-preedit.patch
 
 ## NOTE: Keep SLE-only patches at bottom (starting on 1000).
 # PATCH-FEATURE-SLE gnome-shell-gdm-login-applet.patch fate#314545 
dli...@suse.com -- Add an applet on login UI to display suse icon, product 
name, hostname.
@@ -187,6 +189,7 @@
 %patch -P 1 -p1
 %patch -P 7 -p1
 %patch -P 8 -p1
+%patch -P 9 -p1
 
 %if 0%{?sle_version}
 %patch -P 1001 -p1

++++++ _service ++++++
--- /var/tmp/diff_new_pack.NBS4PK/_old  2024-05-28 17:28:40.135680095 +0200
+++ /var/tmp/diff_new_pack.NBS4PK/_new  2024-05-28 17:28:40.139680241 +0200
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="manual">
     <param name="scm">git</param>
     <param name="url">https://gitlab.gnome.org/GNOME/gnome-shell.git</param>
-    <param name="revision">46.1</param>
+    <param name="revision">46.2</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ gnome-shell-46.1.obscpio -> gnome-shell-46.2.obscpio ++++++
/work/SRC/openSUSE:Factory/gnome-shell/gnome-shell-46.1.obscpio 
/work/SRC/openSUSE:Factory/.gnome-shell.new.24587/gnome-shell-46.2.obscpio 
differ: char 49, line 1

++++++ gnome-shell-fix-cursor-on-hide-preedit.patch ++++++
>From c17f3aa64a264a5fec7d3c5f8d1e9415b60a55b4 Mon Sep 17 00:00:00 2001
From: Alynx Zhou <alynx.z...@gmail.com>
Date: Wed, 15 May 2024 10:09:09 +0800
Subject: [PATCH] inputMethod: Reset preedit cursor when preedit text is
 cleared

The preedit cursor position should be 0 when there is no preedit text,
currently it will pass 1, which is the wrong previous value.
---
 js/misc/inputMethod.js | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/js/misc/inputMethod.js b/js/misc/inputMethod.js
index d8c3e62f0..2642aca9e 100644
--- a/js/misc/inputMethod.js
+++ b/js/misc/inputMethod.js
@@ -163,9 +163,7 @@ export const InputMethod = GObject.registerClass({
     }
 
     _onHidePreeditText() {
-        this.set_preedit_text(
-            null, this._preeditPos, this._preeditAnchor,
-            this._preeditCommitMode);
+        this.set_preedit_text(null, 0, 0, this._preeditCommitMode);
         this._preeditVisible = false;
     }
 
-- 
2.45.0


++++++ gnome-shell.obsinfo ++++++
--- /var/tmp/diff_new_pack.NBS4PK/_old  2024-05-28 17:28:40.235683751 +0200
+++ /var/tmp/diff_new_pack.NBS4PK/_new  2024-05-28 17:28:40.239683898 +0200
@@ -1,5 +1,5 @@
 name: gnome-shell
-version: 46.1
-mtime: 1713702291
-commit: 0d0aadf013f78a7f7f1dc984d0d812971864b934
+version: 46.2
+mtime: 1716649073
+commit: 568152c22247efbb66cd13c15a638bf2d36bfadb
 

Reply via email to