<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-settings-daemon/plugins/keyboard, branch 1.8</title>
<subtitle>MATE settings daemon</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/'/>
<entry>
<title>changed the reaction to numlock state to avoid eating 100% CPU</title>
<updated>2015-03-15T21:35:58+00:00</updated>
<author>
<name>Monsta</name>
<email>monsta@inbox.ru</email>
</author>
<published>2015-03-11T08:10:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=15e0e981af132d7fe5f838db4826c6b4b2d17a91'/>
<id>15e0e981af132d7fe5f838db4826c6b4b2d17a91</id>
<content type='text'>
credits to @nileshgr for the patch

Closes https://github.com/mate-desktop/mate-settings-daemon/pull/98
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
credits to @nileshgr for the patch

Closes https://github.com/mate-desktop/mate-settings-daemon/pull/98
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in previous commit</title>
<updated>2014-02-08T18:40:44+00:00</updated>
<author>
<name>Stefano Karapetsas</name>
<email>stefano@karapetsas.com</email>
</author>
<published>2014-02-08T18:40:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=9fdfaa48afde0d82344eddc91341d143cfbf5b67'/>
<id>9fdfaa48afde0d82344eddc91341d143cfbf5b67</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keyboard: Fix GTK3 support</title>
<updated>2014-02-08T17:42:52+00:00</updated>
<author>
<name>Stefano Karapetsas</name>
<email>stefano@karapetsas.com</email>
</author>
<published>2014-02-08T17:42:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=5391f9c530081f52974dbea2ae2b057587538b7d'/>
<id>5391f9c530081f52974dbea2ae2b057587538b7d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keyboard: Allow to disable indicators in GSettings</title>
<updated>2013-05-08T15:54:28+00:00</updated>
<author>
<name>Stefano Karapetsas</name>
<email>stefano@karapetsas.com</email>
</author>
<published>2013-05-08T15:54:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=a326673b17ec87689e71a33c8b50fdc226de07e3'/>
<id>a326673b17ec87689e71a33c8b50fdc226de07e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[keyboard] don't use deprecated gdk_spawn API.</title>
<updated>2012-12-22T01:36:29+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-22T01:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=4d7a3ffc29a253a4387eecf1fef25d29f175103a'/>
<id>4d7a3ffc29a253a4387eecf1fef25d29f175103a</id>
<content type='text'>
And use:
gdk_display_get_app_launch_context() on GTK3
gdk_app_launch_context_new() on GTK2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And use:
gdk_display_get_app_launch_context() on GTK3
gdk_app_launch_context_new() on GTK2
</pre>
</div>
</content>
</entry>
<entry>
<title>[keyboard] add g_strv_behead, reduce code &amp; fix filter_xkb_config()</title>
<updated>2012-12-15T07:43:04+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-15T07:25:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=c6a6cbde72489a0055ba63341a153fe365058072'/>
<id>c6a6cbde72489a0055ba63341a153fe365058072</id>
<content type='text'>
Fixes compiler warning: 'i' may be used uninitialized in this function

Indeed, rather than initializing 'i' to zero, 'lv' (char arr of **lv) was
erroneously being assigned the value of 0 in the for loop's initialization.

g_strv_behead copied from gkbd_strv_behead from libgnomekbd/gkbd-util.c

For reference: Using shared gkbd_strv_* utility functions, reducing the code
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=f62d0846143b8a65606daa6860e6b2cd7f9cb465
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes compiler warning: 'i' may be used uninitialized in this function

Indeed, rather than initializing 'i' to zero, 'lv' (char arr of **lv) was
erroneously being assigned the value of 0 in the for loop's initialization.

g_strv_behead copied from gkbd_strv_behead from libgnomekbd/gkbd-util.c

For reference: Using shared gkbd_strv_* utility functions, reducing the code
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=f62d0846143b8a65606daa6860e6b2cd7f9cb465
</pre>
</div>
</content>
</entry>
<entry>
<title>[keyboard] Don't cast dialog to GTK_OBJECT on GTK3</title>
<updated>2012-12-15T05:04:12+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-15T01:28:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=4d955a71bb6117c72da4291ccd2a9f617e9ed7fd'/>
<id>4d955a71bb6117c72da4291ccd2a9f617e9ed7fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[keyboard] Give a name to the keyboard status icon</title>
<updated>2012-12-15T05:04:12+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-15T01:16:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=9f7b884490f27d70d12c2f378be4fba143d653e1'/>
<id>9f7b884490f27d70d12c2f378be4fba143d653e1</id>
<content type='text'>
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=2674a0fa89abb08443d8f93da6fe9ae7f81c1120
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=2674a0fa89abb08443d8f93da6fe9ae7f81c1120
</pre>
</div>
</content>
</entry>
<entry>
<title>[keyboard] remove horrible xmodmap fallback code</title>
<updated>2012-12-06T16:48:25+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-05T01:10:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=f86fbc0aa5809b6afd3a88cdf3badb0576294c9f'/>
<id>f86fbc0aa5809b6afd3a88cdf3badb0576294c9f</id>
<content type='text'>
had xklavier-related warning everytime m-s-d is started, specifically after
we stopped daemonizing the daemon, in a previous commit.

and the bug revolves around libxklavier issue
https://bugzilla.gnome.org/show_bug.cgi?id=150542
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=4239cb8a5d73af79d2cdf0f294a33d31fbbb9afe
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=241c970c1361c4d1b2663af20252ef127055d768
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
had xklavier-related warning everytime m-s-d is started, specifically after
we stopped daemonizing the daemon, in a previous commit.

and the bug revolves around libxklavier issue
https://bugzilla.gnome.org/show_bug.cgi?id=150542
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=4239cb8a5d73af79d2cdf0f294a33d31fbbb9afe
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=241c970c1361c4d1b2663af20252ef127055d768
</pre>
</div>
</content>
</entry>
<entry>
<title>[plugins] cleanup macro magic in plugin.h</title>
<updated>2012-12-06T16:48:25+00:00</updated>
<author>
<name>Jasmine Hassan</name>
<email>jasmine.aura@gmail.com</email>
</author>
<published>2012-12-05T00:55:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-settings-daemon/commit/?id=6e182dc5cdb3451a4ec4bd443b1159df318541c8'/>
<id>6e182dc5cdb3451a4ec4bd443b1159df318541c8</id>
<content type='text'>
And instead, use glib macros (since 2.14)

http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=0dda56c4462e070dabdab68092b6574b5e894181
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And instead, use glib macros (since 2.14)

http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=0dda56c4462e070dabdab68092b6574b5e894181
</pre>
</div>
</content>
</entry>
</feed>
