19005 Commits

Author SHA1 Message Date
Sebastian Wick
b3580919e3 shell-util: Only use systemd if gnome-shell is managed by systemd
Simply looking at the return value of sd_pid_get_user_unit can be used
to determine if the process is in a systemd unit, but it doesn't say if
gnome-shell is managed by systemd.

For example, running toolbx on a host with systemd creates a libpod
unit, even if the gnome-shell that gets started in the toolbx is itself
not managed by systemd.

We can make sure that gnome-shell is managed by systemd simply by
checking if the unit we're running starts with org.gnome.Shell.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3267>
2024-04-22 23:11:06 +00:00
Andika Triwidada
3b7028ea7f Update Indonesian translation 2024-04-22 11:10:22 +00:00
Andika Triwidada
d074cef0fe Update Indonesian translation
(cherry picked from commit 2d8c6f48c86e2f22b88f781e69466e537709761c)
2024-04-22 11:08:28 +00:00
Martin
96c85803f9 Update Slovenian translation 2024-04-21 15:47:38 +00:00
Monster
79360d155f close-dialog: Fix strings to comply with HIG
Moved title text to title case, removed periods in title and subtitle

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3224>
2024-04-21 14:38:55 +00:00
Florian Müllner
0d0aadf013
Bump version to 46.1
Update NEWS.
2024-04-21 14:24:51 +02:00
Florian Müllner
df50c2dfc6 cleanup: Replace deprecated String.prototype.substr()
The method is documented as deprecated:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr

Switch to the non-deprecated substring() method.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3234>
2024-04-19 17:38:37 +00:00
Florian Müllner
193b6c129e cleanup: Don't use substring to check prefix
String.prototype.startsWith() is more idiomatic in that case.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3234>
2024-04-19 17:38:37 +00:00
Sebastian Wick
0586158389 st/clipboard: Pass non-NULL mimetype to SelectionSourceMemory
meta_selection_source_memory_new previously had some precondition checks
which would return NULL if the mimetype is NULL but now that it returns
an error we can't do that anymore.

Move the precondition checks to the caller instead.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3260>
2024-04-19 13:45:40 +00:00
Julian Sparber
8df0ccd090 messageTray: Don't show expand button for notification banner
Currently we expand banners on hover, it's odd that there is also an
expand button the user doesn't have to click.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7479
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3249>
2024-04-19 13:13:41 +00:00
Andi Chandler
4363753a3f Update British English translation 2024-04-18 22:49:03 +00:00
Peter Vágner
20339eaf5b Update Slovak translation 2024-04-18 11:12:36 +00:00
Automeris naranja
94ba7a5df2 extensions-app: Add tooltips to icon-only buttons
Also, remove their a11y labels, because Orca also
reads tooltips.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3271>
2024-04-17 15:31:40 -03:00
Automeris naranja
2c08fe6201 extensions-app: Replace info-symbolic with info-outline-symbolic
Software and Settings apps are now using info-outline-symbolic,
so use it in Extensions too to keep consistency.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3269>
2024-04-16 21:37:30 -03:00
Fabio Tomat
fb7d93241c Update Friulian translation 2024-04-16 18:57:51 +00:00
Florian Müllner
b00b674a6f extensions-app: Don't use markup for row titles
The title is set from extension metadata, which isn't supposed to
contain markup. That means it may contain unescaped  characters
like `&` that break the title when interpreted as markup.

Explicitly opt out of markup handling to fix this.

Close: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7579
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3266>
2024-04-16 13:35:05 +00:00
Robert Mader
cbcc5b479a Revert "screencastService: Use 'screen' encoder profile for openH264"
Unfortunately it turned out that this change does increase frame skips
in the recorded files on several tested devices, greatly outweighing
any small visual benefit it might have.

This reverts commit 490ecc536ab6b2f9320592930be5aae473297934.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3268>
2024-04-15 20:23:42 +02:00
Athmane MOKRAOUI
b01ae7eba5 Update Kabyle translation 2024-04-13 14:28:34 +00:00
Jose Riha
df62f0a657 Update Slovak translation 2024-04-13 14:21:20 +00:00
Jose Riha
bcb9f2d9a6 Update Slovak translation 2024-04-13 13:23:21 +00:00
Totto16
d1d43a871d modalDialog: Remove timestamp parameter from close() invocations
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3253>
2024-04-10 11:10:11 +00:00
Totto16
72223977c2 modalDialog: Finish cleanup in close()
timestamp is unused and removed after cleanup in commit 3574c5246a29dc2ad5b9dbc629e4e7647fbc41bf, this fixes this in the missed parts

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3253>
2024-04-10 11:10:11 +00:00
Changwoo Ryu
628d210826 Update Korean translation 2024-04-09 00:27:51 +00:00
Juliano de Souza Camargo
8f19c04011 Update Brazilian Portuguese translation 2024-04-07 17:12:16 +00:00
dcz
e4f2edf9bd gsettings: Use strict compilation
Without this flag, changes resulting in invalid gschemas are ignored and
easily lost within the compilation input. In CI and some development
workflows this may let bad builds through.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3262>
2024-04-05 19:50:48 +02:00
Danial Behzadi
0cc6a2747d Update Persian translation 2024-04-05 13:17:49 +00:00
Artur S0
f4a529362b Update Russian translation 2024-04-04 14:44:12 +00:00
Robert Mader
490ecc536a screencastService: Use 'screen' encoder profile for openH264
There are "camera" and "screen", the former being the default. Using the
later should slightly increase image quality.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3259>
2024-04-02 11:20:36 +02:00
Nathan Follens
796f347fa7 Update Dutch translation 2024-03-31 10:30:37 +00:00
Martin
481657f948 Update Slovenian translation 2024-03-30 17:00:19 +00:00
Милош Поповић
54710d2d3a Update Serbian (Latin) translation 2024-03-29 14:44:36 +00:00
Милош Поповић
023ec7ba06 Update Serbian translation 2024-03-29 14:43:45 +00:00
Vincent Chatelain
39352d0afe Update French translation 2024-03-24 13:43:37 +00:00
Athmane MOKRAOUI
ee03cf5f64 Update Kabyle translation 2024-03-23 15:08:32 +00:00
Boyuan Yang
d54cc369b7 Update Chinese (China) translation 2024-03-21 23:37:22 +00:00
Sabri Ünal
1e58f76a80 Update Turkish translation 2024-03-20 22:20:46 +00:00
Jordi Mas
1b92c58b7c Update Catalan translation 2024-03-19 21:49:57 +01:00
Jordi Mas i Hernandez
bcd543b0d9 Update Catalan translation 2024-03-19 20:18:13 +00:00
Fran Dieguez
c5e3b16d81 Update Galician translation 2024-03-19 15:35:55 +00:00
Sebastian Keller
7f476e051c notificationDaemon: Use correct property name to enable markup
The property is named useBodyMarkup, not bannerMarkup. This was causing
markup to be disabled for FDO notifications.

Fixes: cc60ce7f94 ("notification: Stop using 'update()' from MessageTray.Notification")
Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7495
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3247>
2024-03-19 13:14:04 +01:00
Milo Casagrande
0ff4501b40 Update Italian translation 2024-03-19 11:03:18 +00:00
Christian Kirbach
3099a57cc0 Update German translation 2024-03-18 16:33:22 +00:00
A S Alam
2318d897ba Update Punjabi translation 2024-03-18 04:02:35 +00:00
Brage Fuglseth
64c47912d0 Update Norwegian Bokmål translation 2024-03-17 18:23:58 +00:00
Carlos Garnacho
d97bd4ab00 data: Add shift level to Korean OSK layout
This allows input of double consonants and other characters
typically hidden in the first level.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7455
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3222>
2024-03-17 14:22:43 +00:00
Yaron Shahrabani
2b2d6b718a Update Hebrew translation 2024-03-17 13:12:40 +00:00
Piotr Drąg
c390c58768 Update Polish translation 2024-03-17 11:54:15 +00:00
Jiri Grönroos
ab9b4997fe Update Finnish translation 2024-03-17 10:16:37 +00:00
Asier Sarasua Garmendia
b3f530096d Update Basque translation 2024-03-17 09:50:36 +00:00
Ekaterine Papava
978f3b592d Update Georgian translation 2024-03-17 02:24:11 +00:00