Commit Graph

11257 Commits

Author SHA1 Message Date
Aurimas Černius
ede6ec2a28 Updated Lithuanian translation 2017-03-25 13:38:31 +02:00
Kjartan Maraas
b4b19b551d Updated Norwegian bokmål translation. 2017-03-25 12:07:57 +01:00
Fabio Tomat
dc295927ed Update Friulian translation 2017-03-23 21:56:40 +00:00
Piotr Drąg
539cbf3593 Update Polish translation 2017-03-23 22:10:55 +01:00
Florian Müllner
b477d215a8 st: Add missing %NULL check
st_theme_node_get_border_image() may return %NULL, leading to a
segfault in st_border_image_get_file() when glib is compiled with
G_DISABLE_CHECKS.

https://bugzilla.gnome.org/show_bug.cgi?id=780381
2017-03-22 18:51:51 +01:00
Florian Müllner
5de85c708f calendar-server: Remove unused variables and function
The code that used them was removed in commit 7e0e224e0e.

https://bugzilla.gnome.org/show_bug.cgi?id=780381
2017-03-22 18:51:51 +01:00
Yuras Shumovich
ad80cc8950 Update Belarusian translation 2017-03-22 13:22:53 +00:00
Dušan Kazik
bc3a506e68 Update Slovak translation 2017-03-21 21:07:18 +00:00
Fran Dieguez
92d740ba21 Update Galician translation 2017-03-21 20:58:48 +00:00
Mario Blättermann
d65199d2ac Update German translation 2017-03-21 18:35:15 +00:00
Carlos Garnacho
257b99ebd1 viewSelector: Set correct arguments on ShowOverviewAction 'activate' signal
It's missing the double argument containing the scale change.
2017-03-21 17:53:36 +00:00
Changwoo Ryu
c8be854365 Update Korean translation 2017-03-21 17:12:51 +00:00
Guillaume Bernard
436b764952 Update French translation 2017-03-21 16:21:15 +00:00
Balázs Úr
86063f15ed Update Hungarian translation 2017-03-21 15:09:23 +00:00
Daniel Korostil
716f209537 Updated Ukrainian translation 2017-03-21 16:33:42 +02:00
Daniel Mustieles
7bba7fbf37 Update Spanish translation 2017-03-21 11:45:32 +00:00
Jiri Grönroos
a102c99c07 Update Finnish translation 2017-03-21 10:49:50 +00:00
Milo Casagrande
5761db5981 Update Italian translation 2017-03-21 07:58:33 +00:00
Kukuh Syafaat
5d33820bd6 Update Indonesian translation 2017-03-21 07:23:13 +00:00
Daniel Korostil
301acc920d Updated Ukrainian translation 2017-03-21 08:46:20 +02:00
Baurzhan Muftakhidinov
495f9cba72 Update Kazakh translation 2017-03-21 03:59:41 +00:00
Rafael Fontenelle
726fc1d4f7 Update Brazilian Portuguese translation 2017-03-20 23:55:39 +00:00
Stas Solovey
dd6452fe2a Update Russian translation 2017-03-20 21:19:59 +00:00
Anders Jonsson
19aa57454b Update Swedish translation 2017-03-20 20:45:02 +00:00
Piotr Drąg
c9555a3537 Update Polish translation 2017-03-20 20:18:02 +01:00
Cosimo Cecchi
6f473a4f29 network: don't assume the connection path is always non-NULL
It can be NULL according to the libnm-glib documentation.

https://bugzilla.gnome.org/show_bug.cgi?id=780321
2017-03-20 18:43:50 +00:00
Marek Cernocky
f785f4ad02 Updated Czech translation 2017-03-20 19:37:28 +01:00
Carlos Garnacho
35d0ba4454 status/a11y: Fix typo
The idle ID being set and being checked didn't quite match up.
2017-03-20 18:16:56 +00:00
Florian Müllner
c3428f1efa weather: Follow GNOME Weather's location permissions
Our weather integration should follow GNOME Weather as closely as
possible, which means that we should respect its location permission
rather than using our own or none at all (which we can as a "system"
component and as geoclue's authorization agent).

https://bugzilla.gnome.org/show_bug.cgi?id=780252
2017-03-20 19:13:20 +01:00
Florian Müllner
9cc1e6b85c location: Split out PermissionStore
It doesn't make sense to tie the proxy code for flatpak's permission
store to the location indicator, just because that was the first
component to use it, so split it into a separate module.

https://bugzilla.gnome.org/show_bug.cgi?id=780252
2017-03-20 19:02:08 +01:00
Florian Müllner
74e1058183 weather: Take global location switch into account
The setting to globally disable location settings altogether isn't
handled by the geoclue service itself, but by the authorization
agent. This means that:

 - it doesn't apply to system components
   (which gnome-shell is now considered[0])
 - it doesn't apply once the geoclue connection
   has been authorized

However users can reasonably expect that we won't use location services
after they disabled them, so handle the setting explicitly.

[0] https://cgit.freedesktop.org/geoclue/commit/?id=a4cef6c0ad08

https://bugzilla.gnome.org/show_bug.cgi?id=780252
2017-03-20 19:02:08 +01:00
Florian Müllner
7c9f76944b weather: Disentangle _useAutoLocation from Weather setting
We currently use automatic location for weather forecasts if the
corresponding Weather setting is set, however we should take other
factors into account as well:

 - whether location services are enabled at all
 - whether Weather has been authorized to use them

In preparation of these changes, track the setting's value in a
separate property and make _useAutoLocation a getter, so we can
extend it with additional conditions easily.

https://bugzilla.gnome.org/show_bug.cgi?id=780252
2017-03-20 19:02:08 +01:00
Florian Müllner
d393ca4f09 weather: Track whether a location was set
Setting GWeatherInfo:location to null helpfully doesn't mean
"no location", but "NYC". This obviously isn't what we want
to show users, so track the location validity separately and
consider it when updating the label shown to users.

https://bugzilla.gnome.org/show_bug.cgi?id=780252
2017-03-20 19:02:08 +01:00
Florian Müllner
a786f0bcd2 screenShield: Do not take an inhibitor when disabled by lockdown
Just as with the normal lock screen settings, we shouldn't request
a logind inhibitor when locking is disabled via lockdown settings.

https://bugzilla.gnome.org/show_bug.cgi?id=780212
2017-03-20 19:02:08 +01:00
Florian Müllner
199bc85bce screenShield: Do not lock the screen when locked down
When using the 'disable-lock-screen' setting to lock down the screen
lock, the expectation is that users cannot lock the screen. However
as it turns out, all the setting currently does is hiding the lock
button in the system menu and making the lock settings in the privacy
panel inactive. That means that if the 'lock-screen-enabled' setting
isn't disabled and locked down as well, we will just continue to
lock the screen on inactivity - not to mention the keyboard shortcut
that isn't subject to that setting anyway.

Instead of expecting administrators to hunt down every possible way
of locking the screen and disabling it individually, we can easily
handle all cases by refusing to lock the screen when disabled by the
lockdown settings.

https://bugzilla.gnome.org/show_bug.cgi?id=780212
2017-03-20 19:02:08 +01:00
Florian Müllner
d15b46f5cb workspace: Hide preview overlays from picks
Dragging and dropping app icons is expected to work anywhere over a
workspace, however overlaid elements are added to a separate hierarchy
and can thus block valid drop targets. This wasn't much of an issue
while we had just the window title, but since the addition of the
focus border, drops on window previews stopped working entirely.

Fix this by hiding all non-reactive overlay elements from picks.

https://bugzilla.gnome.org/show_bug.cgi?id=737166
2017-03-20 19:02:07 +01:00
Florian Müllner
c0861b1227 gdm: Handle absence of Fprint.Manager service
We rely on the service to detect whether a fingerprint reader is
present. It is fine to not support fingerprint authentication
when the service is missing, but currently we don't handle this
case at all and end up with a non-functional login screen.

https://bugzilla.gnome.org/show_bug.cgi?id=780063
2017-03-20 19:02:07 +01:00
Florian Müllner
f97a3522e5 network: Close Wifi selection dialog when appropriate
Currently when the wifi selection dialog is open when the screen lock is
activated, the dialog remains visible above the shield. This is clearly
broken, so close the dialog automatically on session mode changes if the
mode doesn't allow settings (as changing the access point is arguably a
user setting).

https://bugzilla.gnome.org/show_bug.cgi?id=780054
2017-03-20 19:02:07 +01:00
Florian Müllner
577e261d1a Bump version to 3.24.0
Update NEWS.
2017-03-20 18:20:00 +01:00
Daniel Korostil
33fcff8a1a Updated Ukrainian translation 2017-03-19 23:41:10 +02:00
sujiniku
cd30572b70 Update Japanese translation 2017-03-19 21:01:19 +00:00
Emin Tufan Çetin
bc711b6dec Update Turkish translation 2017-03-18 12:25:38 +00:00
Rūdolfs Mazurs
01f5065b87 Update Latvian translation 2017-03-18 10:33:23 +02:00
Guillaume Bernard
9c2bf17ad7 Update French translation 2017-03-16 20:21:56 +00:00
Мирослав Николић
5385b36a81 Updated Serbian translation 2017-03-15 17:59:30 +01:00
Мирослав Николић
72ed9da1fc Updated Serbian translation 2017-03-15 17:54:18 +01:00
GNOME Translation Robot
d79924bdd1 Update Tajik translation 2017-03-14 19:21:58 +00:00
Florian Müllner
3b7a4b08e2 Bump version to 3.23.92
Update NEWS.
2017-03-14 17:56:07 +01:00
Florian Müllner
09af4433b0 windowMenu: Remove left-over variable 2017-03-14 17:47:04 +01:00
Florian Müllner
50df3084f7 dateMenu: Add vertical separator between message list and calendar
With the background boxes gone from messages, we need some visual
indication for how elements are aligned.

https://bugzilla.gnome.org/show_bug.cgi?id=779820
2017-03-14 17:46:58 +01:00