summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Disable wacom supportbaserock/gnomeJavier Jardón2015-08-211-20/+1
|
* Updated Galician translationsFran Dieguez2015-08-191-273/+249
|
* 3.17.90GNOME_SETTINGS_DAEMON_3_17_90Bastien Nocera2015-08-173-1/+20
|
* Updated French translationAlexandre Franke2015-08-151-272/+248
|
* datetime: Read settings after connecting to changed::Carlos Garnacho2015-08-031-1/+1
| | | | | | | According to GSettings docs, one must read after connecting to changed:: in order to ensure the handler will trigger in the future. https://bugzilla.gnome.org/show_bug.cgi?id=753170
* xsettings: Read settings after connecting to changed::Carlos Garnacho2015-08-031-1/+1
| | | | | | | According to GSettings docs, one must read after connecting to changed:: in order to ensure the handler will trigger in the future. https://bugzilla.gnome.org/show_bug.cgi?id=753170
* wacom: Read settings after connecting to changed::Carlos Garnacho2015-08-031-4/+4
| | | | | | | According to GSettings docs, one must read after connecting to changed:: in order to ensure the handler will trigger in the future. https://bugzilla.gnome.org/show_bug.cgi?id=753170
* wacom: Use macro for "oled-label" sign connectionBastien Nocera2015-08-031-1/+1
|
* orientation: Fix screen lock not getting appliedJan-Michael Brummer2015-08-031-1/+1
| | | | | | | | | Read value after connecting to changed:: signal, as it's a requirement for the signal to be emitted at all. See https://bugzilla.gnome.org/show_bug.cgi?id=750257 for details. https://bugzilla.gnome.org/show_bug.cgi?id=753155
* Updated Slovak translationDušan Kazik2015-07-281-231/+210
|
* print-notifications: Fix setting of page sizeMarek Kasik2015-07-271-9/+9
| | | | | | | | | | | | Set PPD's 'PageSize' attribute instead of IPP's 'media' attribute for new printers. Sometimes (quite often) IPP gets priority over PPD in print systems. Therefore there was inconsistency of what we set as default paper size and what was used for printing. 'PageSize' is safer choice for setting paper size because if the 'media' attribute is not specified explicitly then its value is taken from 'PageSize'. https://bugzilla.gnome.org/show_bug.cgi?id=660769
* Updated Czech translationMarek Černocký2015-07-241-268/+176
|
* Updated Swedish translationAnders Jonsson2015-07-231-506/+435
|
* media-keys: Update gvcMario Sanchez Prada2015-07-211-0/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=752672
* 3.17.3GNOME_SETTINGS_DAEMON_3_17_3Bastien Nocera2015-07-212-1/+8
|
* Updated Hebrew translationYosef Or Boczko2015-07-191-267/+242
|
* orientation: Use symbolic name for the GSettings key nameBastien Nocera2015-07-181-2/+2
|
* Updated Hungarian translationBalázs Úr2015-07-171-274/+245
|
* Updated Portuguese translationPedro Albuquerque2015-07-151-13/+7
|
* Updated Spanish translationDaniel Mustieles2015-07-131-4244/+4215
|
* datetime: Simplify plugin descriptionBastien Nocera2015-07-101-1/+1
| | | | | | | It wasn't clear to translators, and we don't really need to describe everything it does in the non-user-visible plugin description either. https://bugzilla.gnome.org/show_bug.cgi?id=708264
* orientation: Fix orientation setting on startupBastien Nocera2015-07-021-49/+60
| | | | | | | | This makes sure that XRandR is actually available when trying to rotate the screen during login as the GDBusProxy might have got created but the service isn't available. https://bugzilla.gnome.org/show_bug.cgi?id=751713
* orientation: Indentation fixesBastien Nocera2015-07-021-2/+2
|
* common: Rename a couple of synaptics specific functionsRui Matos2015-07-023-9/+9
| | | | | | | No functional changes, this just makes it explicit that these functions only work on devices driven by the X synaptics driver. https://bugzilla.gnome.org/show_bug.cgi?id=749818
* common/test-input-helper: Adapt to changes in the previous commitRui Matos2015-07-021-61/+26
| | | | | | As a side effect we can now run this on wayland sessions too. https://bugzilla.gnome.org/show_bug.cgi?id=749818
* common: Make device type presence checks work on libinput and waylandRui Matos2015-07-023-83/+63
| | | | | | | | | | Using GsdDeviceManager allows our device type presence checks work both on libinput using X sessions and on Wayland sessions. At the same time we still need to support systems using the synaptics X driver so let's make that an explicit separate check. https://bugzilla.gnome.org/show_bug.cgi?id=749818
* Updated Portuguese translationPedro Albuquerque2015-06-291-1065/+933
|
* 3.17.2GNOME_SETTINGS_DAEMON_3_17_2Bastien Nocera2015-06-042-1/+20
|
* device-mapper: Reset the "display" setting on NULL outputsCarlos Garnacho2015-05-271-14/+17
| | | | | | | | | | | | | | We used to attempt to reconstruct the ['','',''] default, although this failed on NULL outputs as we tried to feed NULLs into "as" variants/settings. Fix this by just resetting the key when the device gets a NULL output, we can also make the other path clearer as we can't get NULLs in edid[] as we previously might. Based on a patch by Alexandre Rostovtsev <tetromino@gentoo.org> https://bugzilla.gnome.org/show_bug.cgi?id=749844
* power: Fix invalid error accessBastien Nocera2015-05-261-1/+1
| | | | | | | From coverity: gnome-settings-daemon-3.14.4/plugins/power/gpm-common.c:321:52: warning: Access to field 'message' results in a dereference of a null pointer (loaded from variable 'error') https://bugzilla.gnome.org/show_bug.cgi?id=749882
* wacom: Fix possible double-free in LED helperBastien Nocera2015-05-261-1/+2
| | | | | | | From coverity: gnome-settings-daemon-3.14.4/plugins/wacom/gsd-wacom-led-helper.c:130: double_free: Calling "g_free" frees pointer "status" which has already been freed. https://bugzilla.gnome.org/show_bug.cgi?id=749882
* wacom: Fix freeing buffer in OLED helperBastien Nocera2015-05-261-2/+3
| | | | | | | | | | We can't free "", buffer needs to be set by the command-line options, but we never check that it got set. From coverity: gnome-settings-daemon-3.14.4/plugins/wacom/gsd-wacom-oled-helper.c:415: incorrect_free: "g_free" frees incorrect pointer "buffer". https://bugzilla.gnome.org/show_bug.cgi?id=749882
* orientation: Port to iio-sensor-proxyBastien Nocera2015-05-233-212/+144
| | | | | | | Instead of talking directly to udev, which can only support a single type of accelerometer, talk to iio-sensor-proxy over D-Bus. https://bugzilla.gnome.org/show_bug.cgi?id=749670
* Add support for ambient light devices supported by iio-sensor-proxyRichard Hughes2015-05-222-4/+183
| | | | Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=745181
* Fixes to Catalan translationJordi Mas2015-05-211-3/+3
|
* Updated Occitan translationCédric Valmary2015-05-211-414/+2579
|
* print-notifications: Don't show error for job in progressMarek Kasik2015-05-201-1/+10
| | | | | | | Blacklist 'cups-waiting-for-job-completed' job state reason which is rather an internal flag for CUPS. https://bugzilla.redhat.com/show_bug.cgi?id=1207154
* power: Fix a crash when reading invalid backlight valuesRui Matos2015-05-191-0/+3
| | | | | | | | | | If atoi() returns a negative value this will be interpreted as an error but the GError wouldn't be set which would crash us when printing an error message. See https://bugzilla.redhat.com/show_bug.cgi?id=1222007 https://bugzilla.gnome.org/show_bug.cgi?id=749440
* power: Remove critical-battery-action keyBastien Nocera2015-05-182-5/+2
| | | | | | It's not used anymore. https://bugzilla.gnome.org/show_bug.cgi?id=749436
* build: Bump version to devel valuesBastien Nocera2015-05-181-1/+1
|
* 3.16.2GNOME_SETTINGS_DAEMON_3_16_2Rui Matos2015-05-122-1/+32
|
* power: Don't pass SHELL in the backlight helper environmentRui Matos2015-05-121-1/+13
| | | | | | | | | | | | | Doing so causes pkexec to fail[0] if the current user's SHELL doesn't exist in /etc/shells which happens for the gdm user in some distributions. Since we don't need this environment variable in the helper we can work around that by just unsetting it. [0] http://cgit.freedesktop.org/polkit/commit/?id=5a388b6ebb095de6dc7f315b651a84fc31d268d7 https://bugzilla.gnome.org/show_bug.cgi?id=748804
* power: Refactor the backlight helper spawningRui Matos2015-05-121-56/+64
| | | | | | | We'll need to change the environment that we pass on to the helper and this will make it easier. https://bugzilla.gnome.org/show_bug.cgi?id=748804
* xsettings: Patch application fixupBastien Nocera2015-05-061-2/+0
| | | | Fix up commit 578524da528e554fddfa6cf070554984c0ebfcfd
* xsettings: Remove update timeoutBehdad Esfahbod2015-05-061-30/+7
| | | | | | | | | | | GIO's GFileMonitor already delays directory monitor notifications, so directory-level changes will already be coalesced even if there's a lot of changes happening. Monitoring files (which happens for the XML config files) are signalled immediately now. https://bugzilla.gnome.org/show_bug.cgi?id=748776
* power: Save last requested idle mode while temporarily unidleRui Matos2015-05-041-2/+3
| | | | | | | | | | | | | | | | | | | | | | If one of our idle watches triggers while we're temporarily unidle we should save and switch to it when that period ends otherwise we would ignore any idle request transitions in that period and always go back to the state where we were when becoming temporarily unidle. This prevents the following bug: 1. Laptop enters sleep 2. Lid open, wake up, idle time gets reset, we enter NORMAL state 3. There's a notification so gnome-shell asks us to go temporarily unidle while we're in NORMAL state 4. The 15s inactivity watch is triggered and we switch to BLANK 5. The unidle timer is triggered and we switch back to NORMAL since that's the state we were in when it started Result is that the screen is left turned ON indefinitely after waking from sleep if there's a notification when we wake up. https://bugzilla.gnome.org/show_bug.cgi?id=748849
* xsettings: Shorten fontconfig timeoutBehdad Esfahbod2015-05-021-2/+2
| | | | | | | | | | | | | | | Change fontconfig timeout from 2 seconds to 200 milliseconds. This should make font installations to be propagated to applications faster. Originally I made this quite delayed, to make sure it doesn't fire too much when people are installing packages, etc, but after many years, I think that was a very bad choice. Currently, it takes 4 seconds from when I "mv font.ttf ~/.fonts/" until apps like gedit switching to it. Hopefully this change saves about 2.3 seconds of that (on average 0.5s was added by g_timeout_add_seconds()). https://bugzilla.gnome.org/show_bug.cgi?id=748776
* wacom: Remove calibration notificationCarlos Garnacho2015-04-292-215/+0
| | | | | | | | On sane hardware it is mainly unneeded, and the UI on g-c-c is discoverable enough for the cases where it isn't, so let's avoid nagging about something mostly superfluous. https://bugzilla.gnome.org/show_bug.cgi?id=748659
* mouse: Do not disable touchpad buttonsOndrej Holy2015-04-234-55/+65
| | | | | | | | | | | | | Touchpad buttons are disabled also if touchpad is disabled using "Device Enabled" property. Unfortunately some touchpads share those buttons with trackpoint, which is consequently unusable. Disable touchpad using "Synaptics Off" property instead to avoid disabling the buttons. Remove also some redundant calls to enable/disable touchpad and make sure syndaemon isn't running if the touchpads are disabled. https://bugzilla.gnome.org/show_bug.cgi?id=747504
* mouse: Remove unpaired gdk_error_trap_push()Rui Matos2015-04-221-1/+0
| | | | We already push above and pop below.