Loading
Commits on Source 72
-
Balázs Úr authored
-
Bilal Elmoussaoui authored
ClutterActor has now a get_accessible_type that replaces the StWidget one, switch to using that Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3433>
-
Bilal Elmoussaoui authored
Reduces the overhead Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3433>
-
Florian Müllner authored
Mutter now depends on gsettings-desktop-schemas 47.beta. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3441>
-
Yosef Or Boczko authored
-
Giannis Antypas authored
(cherry picked from commit fc29b821)
-
Sophie Herold authored
marge-bot has had GNOME wide Developer access for a while, which should be sufficient. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3443>
-
Daniel Șerbănescu authored
(cherry picked from commit 8eb5baff)
-
Jordi Mas authored
-
Ekaterine Papava authored
-
Asier Sarasua Garmendia authored
-
Jonas Ådahl authored
We need a newer glib. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3447>
-
The corner pipelines state theme node paint state was not necessarily free of existing pipelines, so make sure to free them before looking up new ones. This avoids leaking thousands of CoglPipeline instances after toggling the overview a bunch of times. Fixes: e1868cab ("st/theme-node-drawing: Factor in border radius in update_resources()") Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3421>
-
Artur S0 authored
-
Alessandro Bono authored
Since commit df84854d the function _onSessionOpened() is now async. This means that if an error occurs we get the following warning: ``` gnome-shell[1014]: Unhandled promise rejection. To suppress this warning, add an error handler to your promise chain with .catch() or a try-catch block around your await expression. Stack trace of the failed promise: _onSessionOpened@resource:///org/gnome/shell/gdm/loginDialog.js:1166:27 @resource:///org/gnome/shell/ui/init.js:21:20 ``` Follow the suggestion and add a try-catch block in order to reveal what the error is. In the catch phase, reset the faded AuthPrompt otherwise we can't retry with another user. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448>
-
Alessandro Bono authored
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448>
-
Alessandro Bono authored
The conflicting session is owned by the same user per definition. Use the Name property of the conflicting session to get the username instead of assuming that `this._user` is defined and passing the username around. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448>
-
Alessandro Bono authored
There are cases where this._user might be null when a session is opened. This is because the user is not selected via GDM but it is set through PAM. This happens when logging with smart card or with credential managers, for example. Given the session-id of the opened session, look for the owner. This fixes the following error: ``` gnome-shell[153293]: TypeError: this._user is null Stack trace: _findConflictingSession@resource:///org/gnome/shell/gdm/loginDialog.js:1219:26 _onSessionOpened@resource:///org/gnome/shell/gdm/loginDialog.js:1254:51 @resource:///org/gnome/shell/ui/init.js:21:20 ``` Fixes: df84854d ("loginDialog: On login, allow logout a conflicting session") Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7526 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448> -
Martin Abente Lahaye authored
This new version allows us to specify a branch, which will be needed soon to freeze the GNOME OS version used in stable branches e.g. once GNOME OS 47 is available. See https://gitlab.gnome.org/GNOME/gnome-build-meta/-/issues/872 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3450>
-
Vasil Pupkin authored
-
Rafael authored
-
Bilal Elmoussaoui authored
As it is now disabled by default in CoglPango as a preparation for merging it inside libst in the future Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3451>
-
Jordi Mas authored
-
Yuri Chornoivan authored
-
Luming Zh authored
-
Jose Riha authored
-
Jiri Grönroos authored
-
Jürgen Benvenuti authored
-
Brage Fuglseth authored
-
AsciiWolf authored
-
Danial Behzadi authored
-
Quentin PAGÈS authored
-
Florian Müllner authored
The repository moved to a new namespace, so make sure we pick up the change the next time we rebuild the JS image. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3449>
-
Daniel Sheeler authored
Previously, the 'copy' drag and drop cursor was displayed when dragging an application icon to the dash (which adds the app to favorites), but the operation is really a move, so ensure the 'move' dnd cursor is used. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7819 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3453>
-
Vasil Pupkin authored
-
Daniel van Vugt authored
We expect its "ABI" (schemas, dbus interfaces...) can change with each major GNOME version, but won't usually change in point releases. So default to a more flexible dependency to avoid stable update failures like that of LP: #2077232.
-
Jonas Ådahl authored
This means gnomeshell_dbusrunner.py only need to bother with arguments it needs to care about, which currently are none. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3455>
-
Florian Müllner authored
We need rst2man to switch from asciidoc to reStructuredText for man pages. Pull it in ourselves until the change lands and gnome-build-meta is updated. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3454>
-
Florian Müllner authored
The original asciidoc project is still stuck on python2, so on distros that didn't switch to a fork (like Fedora), it pulls in over 100M of legacy dependencies. However we are about to move our man pages to reStructuredText which doesn't have that issue, and which is already used for GLib's and GTK's man pages. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3454>
-
Florian Müllner authored
It's as human-readable as asciidoc and produces the same results, but the tooling is more widely supported. Also both GLib and GTK switched to it for their man pages, so rst2man is already a dependency of the platform. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3454>
-
Florian Müllner authored
It's more common to use the dedicated .rst suffix for reStructuredText files, so now that the files were ported, use that. (Renaming the files separately from changing it is less likely to confuse git, thus the separate commit) Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3454>
-
Vasil Pupkin authored
-
Florian Müllner authored
After the old tool transformed into the extensions app, we added a wrapper for compatibility with extensions that spawned the command to open their preferences. This was a long time ago. As the ESM port happened since, we *know* that all extensions are newer than that change. And as spawning the old prefs tool is no longer accepted in review, no extension that is compatible with current shell versions still does it. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3456>
-
Dylan McCall authored
If the menu is closed while it is being opened, we should skip the next animation in the chain. Similarly, if a menu is opened while it is being closed, we should continue the animation from the previous state instead of resetting height to 0. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5843 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2481>
-
Bilal Elmoussaoui authored
As the global getter is now gone Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3452>
-
Changwoo Ryu authored
-
Hugo Carvalho authored
-
Jonas Ådahl authored
The coordinates are effectively in the windowing system coordinate space, which when scaling Xwayland, we need to scale these. Do this with the Meta.Window.protocol_to_stage() function on the focused window, which handles it correctly for the corresponding windowing system and configuration. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3458>
-
Florian Müllner authored
gnome-build-meta has been updated to pull in rst2man for gnome-shell. This reverts commit ef0341ed. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3459>
-
Florian Müllner authored
Mutter bumped its pipewire requirement, pull it in. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3459>
-
Piotr Drąg authored
-
Andika Triwidada authored
-
Baurzhan Muftakhidinov authored
-
Sabri Ünal authored
-
Florian Müllner authored
Update NEWS.
-
Jeremy Bícha authored
-
Jeremy Bícha authored
Update to upstream version '47~rc' with Debian dir 72885901b9cd8e1e2a816d4f1d76221b217158b7
-
Jeremy Bícha authored
-
Jeremy Bícha authored
-
Jeremy Bícha authored
-
Jeremy Bícha authored
-
Jeremy Bícha authored
gnome-extensions-app is the new name
-
Jeremy Bícha authored
-
Jeremy Bícha authored
-
Jeremy Bícha authored
method instead. Hardening related to CVE-2024-36472 Closes: #1072124 Gbp-Dch: Full
-
Jeremy Bícha authored
-
Jeremy Bícha authored
-
Jeremy Bícha authored
since Ubuntu is using schemas updated after 47~beta
-
Jeremy Bícha authored
-
Jeremy Bícha authored
tagging package gnome-shell version debian/47_rc-3 * tag 'debian/47_rc-3': (67 commits) releasing package gnome-shell version 47~rc-3 Bump minimum gsettings-desktop-schemas releasing package gnome-shell version 47~rc-2 Drop now unused Depends: gir1.2-webkit-6.0 Disable the portal helper popup window and use the notification/browser releasing package gnome-shell version 47~rc-1 Add Build-Depends: pipewire for build tests transitional gnome-shell-extensions-prefs tool is no longer provided Refresh patches manpages are built with rst2man instead of a2x Build with mutter 47 RC New upstream release Bump version to 47.rc Update Turkish translation Update Kazakh translation Update Indonesian translation Update Polish translation ci: Bump mutter image Revert "ci: Include docutils in sysext image" ibus-candidate-popup: Scale coordinates from IBus ...
-
Jeremy Bícha authored
-
Jeremy Bícha authored