<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-notification-daemon/src/daemon, branch v1.19.0</title>
<subtitle>Daemon to displays passive pop-up notifications</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/'/>
<entry>
<title>gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:</title>
<updated>2017-08-28T23:57:52+00:00</updated>
<author>
<name>ZenWalker</name>
<email>scow@riseup.net</email>
</author>
<published>2017-08-28T23:27:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=c556e09077bb820e752d7266d2b20328db629883'/>
<id>c556e09077bb820e752d7266d2b20328db629883</id>
<content type='text'>
avoid deprecated:

gdk_screen_get_monitor_geometry
gdk_screen_get_monitor_at_point
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
avoid deprecated:

gdk_screen_get_monitor_geometry
gdk_screen_get_monitor_at_point
</pre>
</div>
</content>
</entry>
<entry>
<title>avoid deprecated gdk_screen_get_width/height</title>
<updated>2017-08-13T08:56:16+00:00</updated>
<author>
<name>ZenWalker</name>
<email>scow@riseup.net</email>
</author>
<published>2017-08-08T00:43:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=52b7c3807e71278f2d902a79cf6c08c839a1b0ad'/>
<id>52b7c3807e71278f2d902a79cf6c08c839a1b0ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>avoid deprecated gdk_screen_get_n_monitors</title>
<updated>2017-08-10T18:57:33+00:00</updated>
<author>
<name>ZenWalker</name>
<email>scow@riseup.net</email>
</author>
<published>2017-08-04T22:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=c11a2ac7a568b83fb0327e831519981a465bc51f'/>
<id>c11a2ac7a568b83fb0327e831519981a465bc51f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes high cpu usage with large timeouts</title>
<updated>2017-08-09T13:35:37+00:00</updated>
<author>
<name>Jury Verrigni</name>
<email>jury.verrigni@gmail.com</email>
</author>
<published>2017-08-09T13:35:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=296116088fca1ea8a261c49233fec407bd9098f6'/>
<id>296116088fca1ea8a261c49233fec407bd9098f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>unescape URI-encode paths for icon files</title>
<updated>2017-08-07T06:22:28+00:00</updated>
<author>
<name>Alfio Emanuele Fresta</name>
<email>alfio.emanuele.f@gmail.com</email>
</author>
<published>2017-08-05T21:18:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=0a84eac2c5115d6a21e98e4797fbf6407cf5712b'/>
<id>0a84eac2c5115d6a21e98e4797fbf6407cf5712b</id>
<content type='text'>
Fix #117
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix #117
</pre>
</div>
</content>
</entry>
<entry>
<title>daemon: Export the "action-icons" capability to clients</title>
<updated>2017-02-14T13:03:17+00:00</updated>
<author>
<name>Ikey Doherty</name>
<email>ikey@solus-project.com</email>
</author>
<published>2016-11-16T17:32:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=a6ff22d59d93ce06ea6752351f10873ace4a4627'/>
<id>a6ff22d59d93ce06ea6752351f10873ace4a4627</id>
<content type='text'>
The freedesktop specification states that clients may opt to use named icons
instead of textual labels on action buttons. In this instance, the icon name
is passed as the 'key' (actions[i+1]) element in the actions data passed
to the daemon.

For themes to render the icon, they should check the hints passed by the
client for a boolean value of "action-icons", and if it is set they should
then create an image button based on the key, and not the label.

Many applications now make use of action-icons, such as media players, to
provide self describing actions with well known icon names, such as playback
controls. In the absence of support for action-icons they fallback to less
useful buttons and generally less actions.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The freedesktop specification states that clients may opt to use named icons
instead of textual labels on action buttons. In this instance, the icon name
is passed as the 'key' (actions[i+1]) element in the actions data passed
to the daemon.

For themes to render the icon, they should check the hints passed by the
client for a boolean value of "action-icons", and if it is set they should
then create an image button based on the key, and not the label.

Many applications now make use of action-icons, such as media players, to
provide self describing actions with well known icon names, such as playback
controls. In the absence of support for action-icons they fallback to less
useful buttons and generally less actions.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for GNotification</title>
<updated>2016-09-02T14:12:01+00:00</updated>
<author>
<name>kajzer</name>
<email>kajzersoze72@gmail.com</email>
</author>
<published>2016-09-02T14:12:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=23153c2e82294cda4f3f7db2053186da8581e19a'/>
<id>23153c2e82294cda4f3f7db2053186da8581e19a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Save some RAM in NotifyTimeout</title>
<updated>2016-06-24T09:27:16+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-06-21T08:11:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=7dc240a3fb0bec7d23dd00fea00890d8302b7f92'/>
<id>7dc240a3fb0bec7d23dd00fea00890d8302b7f92</id>
<content type='text'>
By using a bit, rather than a byte for gbooleans.
https://bugzilla.gnome.org/show_bug.cgi?id=622556

taken from:
https://git.gnome.org/browse/notification-daemon/commit/?id=c43d398
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By using a bit, rather than a byte for gbooleans.
https://bugzilla.gnome.org/show_bug.cgi?id=622556

taken from:
https://git.gnome.org/browse/notification-daemon/commit/?id=c43d398
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3.20 daemon: avoid deprecated GdkDeviceManager</title>
<updated>2016-06-24T09:27:16+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-06-20T16:59:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=daca69be40ba1ea5e765a18b2a1185cafca2128c'/>
<id>daca69be40ba1ea5e765a18b2a1185cafca2128c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>require GTK+ &gt;= 3.14, drop GTK+2 code and --with-gtk build option</title>
<updated>2016-05-19T11:10:54+00:00</updated>
<author>
<name>monsta</name>
<email>monsta@inbox.ru</email>
</author>
<published>2016-05-19T11:10:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=e9a16f9dd6e56080643557470dea5778400ba306'/>
<id>e9a16f9dd6e56080643557470dea5778400ba306</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
