public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: nmontero <nmontero@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/gnome-shell] f44: Update to 50.2
Date: Fri, 29 May 2026 16:36:28 +0000	[thread overview]
Message-ID: <rpms-gnome-shell-90e368df195a@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gnome-shell
Branch : f44
Commit : 90e368df195a6f2fe0614c92ac97f95e86a025db
Author : nmontero <nmontero@redhat.com>
Date   : 2026-05-29T18:36:05+02:00
Stats  : +2/-60 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/gnome-shell/c/90e368df195a6f2fe0614c92ac97f95e86a025db?branch=f44

Log:
Update to 50.2

---
diff --git a/0002-rhbug2457884-offline-updates-detection.patch b/0002-rhbug2457884-offline-updates-detection.patch
deleted file mode 100644
index 543f584..0000000
--- a/0002-rhbug2457884-offline-updates-detection.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-This is https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/4185 and
-https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/4188
-
-diff --git a/data/dbus-interfaces/org.gnome.Software.OfflineUpdates.xml b/data/dbus-interfaces/org.gnome.Software.OfflineUpdates.xml
-index 82356bc70..15a20fc70 100644
---- a/data/dbus-interfaces/org.gnome.Software.OfflineUpdates.xml
-+++ b/data/dbus-interfaces/org.gnome.Software.OfflineUpdates.xml
-@@ -14,8 +14,9 @@
-     <!--
-     string GetState(void):
-     Gets state of any offline updates. The returned values can be:
--    "none" - no offline update is scheduled
--    "scheduled" - an offline update is scheduled
-+    "none" - no offline update is prepared nor scheduled
-+    "prepared" - an offline update is prepared and can be scheduled by SetAction() method
-+    "scheduled" - an offline update is scheduled for the next reboot
-     -->
-     <method name="GetState">
-       <arg type="s" name="state" direction="out" />
-diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js
-index 7b666f090..45dcfad91 100644
---- a/js/ui/endSessionDialog.js
-+++ b/js/ui/endSessionDialog.js
-@@ -491,6 +491,8 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
-             } else {
-                 await this._triggerOfflineUpdateCancel();
-             }
-+        } else if (this._type === DialogType.UPDATE_RESTART && (this._updatePrepared || this._updateScheduled)) {
-+            await this._setPostUpdateAction(OFFLINE_UPDATE_ACTION_REBOOT);
-         }
- 
-         this._fadeOutDialog();
-@@ -668,11 +670,13 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
- 
-         try {
-             const state = await this._getUpdateState();
-+            this._updatePrepared = state === 'prepared';
-             this._updateScheduled = state === 'scheduled';
-         } catch (e) {
-             if (this._softwareOfflineUpdatesProxy !== null)
-                 log(`Failed to get update info from gnome-software: ${e.message}`);
- 
-+            this._updatePrepared = false;
-             this._updateScheduled = false;
-         }
- 
-@@ -709,7 +713,7 @@ class EndSessionDialog extends ModalDialog.ModalDialog {
-             this._loadSessions().catch(logError);
- 
-         _setCheckBoxLabel(this._checkBox, dialogContent.checkBoxText || '');
--        this._checkBox.visible = dialogContent.checkBoxText && this._updateScheduled;
-+        this._checkBox.visible = dialogContent.checkBoxText && (this._updatePrepared || this._updateScheduled);
- 
-         this._checkBox.checked = this._checkBox.visible && !this._isBatteryLow();
- 

diff --git a/gnome-shell.spec b/gnome-shell.spec
index 76bae7b..ed06df4 100644
--- a/gnome-shell.spec
+++ b/gnome-shell.spec
@@ -8,7 +8,7 @@
 %endif
 
 Name:           gnome-shell
-Version:        50.1
+Version:        50.2
 Release:        %autorelease
 Summary:        Window management and application launching for GNOME
 
@@ -23,9 +23,6 @@ Patch: gnome-shell-favourite-apps-firefox.patch
 # downstream patch to stop trying on configuration errors.
 Patch: 0001-gdm-Work-around-failing-fingerprint-auth.patch
 
-# https://bugzilla.redhat.com/show_bug.cgi?id=2457884
-Patch: 0002-rhbug2457884-offline-updates-detection.patch
-
 %define eds_version 3.45.1
 %define gnome_desktop_version 44.0-7
 %define glib2_version 2.86.0

diff --git a/sources b/sources
index 0f4c6c9..da09c71 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (gnome-shell-50.1.tar.xz) = 3dd66936603b46043ec6757c555dc5172d1b2b700d5bfad53d3a648eb81f50be761827f00eab04e98392edaa207565250ce40b6fc871ea41b554977dffc2aac4
+SHA512 (gnome-shell-50.2.tar.xz) = 7e7849a63fed7b9ca0983abb9ac92f15b7f8779897399604ad2fc28f6422f77498a951ee73b68d14c7f00ff82eb9d41f0b648196f75eea3714d3cfa942a2456e

                 reply	other threads:[~2026-05-29 16:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=rpms-gnome-shell-90e368df195a@fedoraproject.org \
    --to=nmontero@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox