19295 Commits

Author SHA1 Message Date
Florian Müllner
e2ce7e3f0f man: Port the man pages to reStructuredText
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>
2024-08-28 19:49:45 +00:00
Florian Müllner
1f2f2d0de1 build: Stop pre-generating man pages
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>
2024-08-28 19:49:45 +00:00
Florian Müllner
ef0341edac ci: Include docutils in sysext image
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>
2024-08-28 19:49:45 +00:00
Jonas Ådahl
40fd7c01ec tests/dbus-runner: Pass along **kargs in setUpClass()
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>
2024-08-28 15:56:27 +02:00
Vasil Pupkin
8ad392bf3c Update Belarusian translation 2024-08-27 19:58:00 +00:00
Daniel Sheeler
24cd7af920 dash: Show move cursor on app icon dnd to dash
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>
2024-08-27 14:46:50 +00:00
Florian Müllner
543ea6f889 ci: Update gjs-ci-tools
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>
2024-08-27 13:49:10 +00:00
Quentin PAGÈS
5e7a163c07 Update Occitan translation 2024-08-26 18:34:15 +00:00
Danial Behzadi
7cfc82e084 Update Persian translation 2024-08-26 08:40:59 +00:00
Daniel Rusek
88a11ce06c Update Czech translation 2024-08-25 13:04:37 +00:00
Brage Fuglseth
989ee14484 Update Norwegian Bokmål translation 2024-08-24 15:54:44 +00:00
Jürgen Benvenuti
8c75ff02ad Update German translation 2024-08-24 15:24:30 +00:00
Jiri Grönroos
2a95fb5c20 Update Finnish translation 2024-08-24 13:12:53 +00:00
Jose Riha
6e501fbbf6 Update Slovak translation 2024-08-24 10:12:49 +00:00
Luming Zh
a07790a827 Update Chinese (China) translation 2024-08-24 05:28:40 +00:00
Yuri Chornoivan
36e42badd0 Update Ukrainian translation 2024-08-23 09:31:00 +00:00
Jordi Mas i Hernandez
f3b6142b51 Update Catalan translation 2024-08-23 08:48:23 +00:00
Bilal Elmoussaoui
ccc46d3f5c Remove text mipmapping disabling
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>
2024-08-22 17:19:10 +02:00
Rafael Fontenelle
61ebfe3781 Update Brazilian Portuguese translation 2024-08-21 16:59:00 +00:00
Vasil Pupkin
ea3429e9db Update Belarusian translation 2024-08-21 13:15:13 +00:00
Martin Abente Lahaye
e25b087e25 ci: Bump CI/CD component version for building system extensions
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>
2024-08-20 11:54:12 -04:00
Alessandro Bono
e5d9a0fec8 loginDialog: Don't assume this._user is always defined
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: df84854d9 ("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>
2024-08-20 12:38:41 +02:00
Alessandro Bono
647747fbd6 loginDialog: Get username directly from the conflicting session
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>
2024-08-20 12:38:41 +02:00
Alessandro Bono
a80ad53500 org.freedesktop.login1.Session: Sort alphabetically
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448>
2024-08-20 12:38:41 +02:00
Alessandro Bono
f1223c6852 loginDialog: Catch possible errors when session is opened
Since commit df84854d9073c457d79d7c2e6a5750428c52ff01 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>
2024-08-20 12:38:41 +02:00
Artur S0
90707c0045 Update Russian translation 2024-08-19 13:25:22 +00:00
Jonas Ådahl
deb9f05303 st/theme-node-drawing: Fix corner pipeline leak
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: e1868cab1a ("st/theme-node-drawing: Factor in border radius in update_resources()")
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3421>
2024-08-19 11:47:32 +00:00
Jonas Ådahl
35647a0b65 ci: Bump mutter image
We need a newer glib.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3447>
2024-08-19 11:52:45 +02:00
Asier Sarasua Garmendia
afe125ac89 Update Basque translation 2024-08-18 07:04:55 +00:00
Ekaterine Papava
752948bdb9 Update Georgian translation 2024-08-17 05:17:12 +00:00
Jordi Mas
937e4d8bd9 Update Catalan translation 2024-08-14 21:51:01 +02:00
Daniel Șerbănescu
6a34b24346 Update Romanian translation
(cherry picked from commit 8eb5baff8c684c09ab7ed2ffa378f2f5f7ff2273)
2024-08-14 16:36:18 +00:00
Sophie Herold
e6b4a048cd doap: Remove marge-bot maintainer entry
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>
2024-08-13 09:46:01 +00:00
Giannis Antypas
b083f64b08 Update Greek translation
(cherry picked from commit fc29b8217066f43a92aab78afe1b22a1a793aa08)
2024-08-12 20:48:56 +00:00
Yosef Or Boczko
a885472f9d Update Hebrew translation 2024-08-09 12:26:58 +00:00
Florian Müllner
37c47d9f53 ci: Bump mutter image
Mutter now depends on gsettings-desktop-schemas 47.beta.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3441>
2024-08-08 17:14:14 +02:00
Bilal Elmoussaoui
31c7cf800c st/widget: Don't use notify for emitting accessibility changes
Reduces the overhead

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3433>
2024-08-08 01:07:25 +00:00
Bilal Elmoussaoui
6e57d42d26 st: Adapt to Cally merge inside of Clutter
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>
2024-08-08 01:07:25 +00:00
Balázs Úr
b05069c297 Update Hungarian translation 2024-08-06 15:18:03 +00:00
Florian Müllner
2ce940fd9b
Bump version to 47.beta
Update NEWS.
2024-08-03 20:12:28 +02:00
Sam Hewitt
a32f735ec0 style: Use unlinked rounded buttons for notifications
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3427>
2024-08-02 13:37:44 -02:30
Sam Hewitt
ff4b9fdb08 style: Use unlinked rounded buttons for notifications
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3383>
2024-08-02 15:16:46 +00:00
Emin Tufan Çetin
2e2c5e1cec Update Turkish translation 2024-08-01 18:00:21 +00:00
Sebastian Wick
8e39015b11 tools: Import shell-lg from halfline's os-debug-scripts
It allows interacting with gnome-shell in the same way as looking glass
but does so from a terminal. This can be really useful in some
situations.

Imported from: https://github.com/halfline/os-debug-scripts

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3430>
2024-07-31 05:29:04 +00:00
Florian Müllner
105abab1e4 js: Remove modelines
We already include an .editorconfig that is supported by many
editors, including emacs, so no need to repeat an emacs-specific
modeline in every source file.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3431>
2024-07-30 18:20:55 +00:00
Florian Müllner
949af34522 cleanup: Remove left-over config file
In the early days of shell development, someone accidentally pushed
their eclipse configuration. Most of it was removed at one point,
but one file was missed.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3432>
2024-07-30 17:55:46 +00:00
sorelz
9fc19c9cdb doc: Link to GNOME handbook tutorial for toolbox development
Link gnome-shell's toolbox README to the troubleshooting section
of the toolbox page at handbook.gnome.org, to make it easier to
find information on common toolbox development issues.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7598
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3424>
2024-07-30 12:44:40 -04:00
Scrambled 777
c8f0722ce5 Update Hindi translation 2024-07-29 18:38:34 +00:00
Julian Sparber
7a874334ef overview: Drop unused ShellInfo object
This object isn't used anymore and it's really easy to create a new
system notification via the appropriate notification source.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3387>
2024-07-29 14:57:42 +00:00
Julian Sparber
ab4f80b8ae appFavorites: Display its own notification for every pin/unpin
Show a notification for each user action instead of updating the
notification currently displayed when the user pins or unpins.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3387>
2024-07-29 14:57:42 +00:00