Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-10-27 | mouse: comment all the mousetweaks stuff with #if 0 and FIXME | monsta | 1 | -20/+18 | |
2016-10-27 | mouse: more indent fixes | monsta | 1 | -7/+8 | |
2016-10-26 | mouse: don't create duplicate GSettings instance | monsta | 1 | -3/+1 | |
2016-10-26 | mouse: remove some duplicated code - it's already in set_mouse_settings | monsta | 1 | -8/+0 | |
2016-10-26 | mouse: don't apply any settings if XInput isn't present | monsta | 1 | -49/+6 | |
and drop some fallback code as well adapted from: https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=4d6ecb300358fcef4310a7f696a032d8a0afb80e https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=3a244a490df4453c41469d8eeb789d96412f80b1 | |||||
2016-10-26 | mouse: remove duplicate function | monsta | 3 | -15/+4 | |
2016-10-26 | build: require XInput unconditionally | monsta | 3 | -49/+6 | |
as done in g-s-d six years ago: https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=5b2a28376a3aa81d865679e8c91d2f6beb8af799 | |||||
2016-10-26 | mouse: fix indent and spacing somewhat | monsta | 1 | -82/+84 | |
2016-10-11 | xrandr: use proper libmate-desktop function in GTK+3 build | monsta | 1 | -4/+10 | |
or it will break the plugin once libmate-desktop becomes GTK+3 only | |||||
2016-09-18 | release 1.16.0v1.16.0 | raveit65 | 1 | -2/+2 | |
2016-09-18 | update NEWS for 1.16 | monsta | 1 | -24/+13 | |
2016-09-17 | sync with Transifex | monsta | 3 | -158/+162 | |
2016-08-04 | release 1.15.1v1.15.1 | raveit65 | 1 | -0/+9 | |
2016-08-04 | sync with transiflex | raveit65 | 7 | -65/+67 | |
2016-08-03 | pre-bump version | raveit65 | 2 | -1/+3 | |
2016-07-23 | GTK 3.21: Fix background changing, startup delay | lukefromdc | 1 | -6/+28 | |
Fix background changing with or without caja running. Remove all references to Caja from GTK 3.21 or later builds, remove resulting unused variable. | |||||
2016-07-23 | GTK 3.21: Fix caja startup background | lukefromdc | 1 | -3/+6 | |
Make sure m-s-d knows to draw the background unconditionally when used with transparent version of Caja for GTK 3.21.3 or later | |||||
2016-07-15 | distcheck: explicitly use currently selected GTK+ version | raveit65 | 2 | -0/+5 | |
2016-07-08 | media-keys: bring back support for mate-calc | raveit65 | 1 | -0/+2 | |
2016-07-08 | media-keys: support gnome-calculator, drop support for mate-calc | monsta | 1 | -3/+1 | |
- gcalctool is known as gnome-calculator these days - mate-calc is obsolete since 1.10 | |||||
2016-06-28 | po: drop languages not present on Transifex | monsta | 4 | -3438/+0 | |
not to mention that en_US technically isn't a translation | |||||
2016-06-25 | housekeeping: replace buggy thumb-cleaning code with correct one | monsta | 1 | -55/+14 | |
also remove defines for default max age and size - we already have the defaults set in schema, makes no sense to duplicate them here. early check for -1 value (means "do not clean thumbs") is ported from: https://git.gnome.org/browse/gnome-settings-daemon/commit?id=12f2121929f048c5cc07cd9c90570310a169b29e | |||||
2016-06-21 | po: actually add a new language from Transifex | monsta | 1 | -0/+1 | |
2016-06-07 | release 1.15.0v1.15.0 | raveit65 | 2 | -1/+18 | |
2016-06-07 | sync with Transiflex | raveit65 | 18 | -169/+1374 | |
2016-06-07 | gtk3: progressbar themed background | Denis Gorodnichev | 3 | -32/+8 | |
2016-06-07 | mpris: fix a couple of build warnings | monsta | 1 | -2/+2 | |
2016-06-05 | fix build warning -Wdiscarded-qualifiers | raveit65 | 1 | -1/+1 | |
msd-xsettings-manager.c: In function 'xsettings_callback': msd-xsettings-manager.c:600:37: warning: passing argument 2 of 'xft_callback' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] xft_callback (NULL, key, manager); ^~~ msd-xsettings-manager.c:498:1: note: expected 'gchar * {aka char *}' but argument is of type 'const char *' xft_callback (GSettings *gsettings, | |||||
2016-06-05 | GTK+3 mouse: fix deprecated gtk_style_context_get_background_color | raveit65 | 1 | -1/+21 | |
taken from mate-notification-daemon | |||||
2016-06-05 | GTK+3 msd-locate-pointer: port to GtkStyleContext | raveit65 | 1 | -0/+18 | |
taken from: https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=81cfd0e | |||||
2016-06-05 | GTK+3 media-keys: add style class OSD for MsdOsdWindow | Denis Gorodnichev | 1 | -0/+6 | |
2016-06-05 | GTK+3 media-keys: Port OSD to GtkStyleContext | raveit65 | 3 | -46/+131 | |
- Port OSD to GtkStyleContext - Port style_set to style_updated - fixes also a -Wincompatible-pointer-types warning - Use correct argument to GtkStyle functions taken from: https://git.gnome.org/browse/gnome-settings-daemon/commit/?h=gnome-3-0&id=f6e55cb https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=45a88f2 GTK+3 media-keys: fix deprecated gtk_style_context_get_background_color taken from mate-notification-daemon GTK+3 media-keys: do not use hardcoded colors for osd progressbar - If we use the OSD style class let the themes handle that. - drop useless color functions inspired from: https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=a0cefe6 | |||||
2016-06-01 | fix compile error 'Redefinition von widget_class' | raveit65 | 1 | -1/+0 | |
2016-06-01 | setup css class name for MsdOsdWindow | Denis Gorodnichev | 1 | -0/+5 | |
2016-06-01 | gtk3: css themes for MsdOsdWindow | Denis Gorodnichev | 1 | -0/+19 | |
MsdOsdWindow theme example: MsdOsdWindow.background { background-color: rgba(10, 10, 8, 0.75); } MsdOsdWindow.window-frame { border-radius: 3px; box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4); } | |||||
2016-05-27 | Change default hinting style to 'hintslight' | Piotr Jurkiewicz | 2 | -2/+2 | |
Change this in order to match new default fontconfig settings (introduced in fontconfig 2.11.95). | |||||
2016-05-27 | Use 'rgba' (LCD subpixel) antialiasing by default | Piotr Jurkiewicz | 1 | -1/+1 | |
2016-05-23 | Add back missing static void declaration | lukefromdc | 1 | -0/+1 | |
Worked without this but let's add it back. Build worked same either way but let's not let things like this creep in | |||||
2016-05-23 | Fix Gtk3.21 segfault using GtkStyleContext | lukefromdc | 1 | -2/+13 | |
In GTK 3.21, the msd_osd_window_style_set segfaults on GtkStyle. This really should be updated for all GTK3 versions, so port it to GtkStyleContext. Just this one function for now as it stops the OSD crashes. Test built over GTK 3.21, no apparent problems and ran fine on GTK 3.18 as well, no apparent differences in theming using any theme from 3.18 with master. | |||||
2016-04-11 | housekeeping: properly apply label markup | monsta | 1 | -1/+1 | |
2016-04-07 | po: add missing language to LINGUASv1.14.0 | monsta | 1 | -0/+2 | |
2016-04-07 | update NEWS to mention Changelog generation fix | monsta | 1 | -0/+1 | |
2016-04-06 | release 1.14.0 | raveit65 | 1 | -2/+2 | |
2016-04-06 | Fix Changelog generation | raveit65 | 1 | -12/+9 | |
2016-04-06 | add new languages and sync with transiflex | raveit65 | 97 | -4542/+9272 | |
2016-04-05 | update NEWS and pack 1.13.x changes into single 1.14.0 entry | monsta | 1 | -7/+9 | |
2016-04-05 | Revert "Touchpad settings: Enabled natural scroll by default" | monsta | 1 | -1/+1 | |
This reverts commit 8abd921b666acce33d2d9d811bd9c9602066fc0d. based on feedback in the comments at https://github.com/mate-desktop/mate-settings-daemon/pull/137 | |||||
2016-03-29 | schema: add summary and description for new touchpad scrolling keys | monsta | 1 | -8/+8 | |
2016-03-24 | mouse: remove some useless return values (and fix a warning) | monsta | 1 | -14/+10 | |
2016-03-24 | Touchpad settings: Enabled natural scroll by default | Clement Lefebvre | 1 | -1/+1 | |