<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-notification-daemon/src/themes/slider/theme.c, branch v1.18.1</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>themes/slider: Vertically center the pie_countdown</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-17T00:55:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=3d51b589ec4e64b4b8beea783cf3336aac4e6cd7'/>
<id>3d51b589ec4e64b4b8beea783cf3336aac4e6cd7</id>
<content type='text'>
Prior to this change we could end up with a warped pie countdown if the
buttons were of a larger size, breaking the constraints of the pie to be
vertically stretched.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this change we could end up with a warped pie countdown if the
buttons were of a larger size, breaking the constraints of the pie to be
vertically stretched.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>themes: Implement support for action-icons buttons</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-16T18:44:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=471a3762c1b1b1515c8e5975e78ad5ebb11986d1'/>
<id>471a3762c1b1b1515c8e5975e78ad5ebb11986d1</id>
<content type='text'>
Now that all of the elements are in place to support (dynamically) the
action icons, we can use the 'key' in place of the 'label' when the client
sends an hint requesting it.

Some other minor issues were corrected in this change, such as ensuring that
we always show *all* widgets inside of the notification window so that when
a live notification window is updated, the action box state is not then
hidden from view.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that all of the elements are in place to support (dynamically) the
action icons, we can use the 'key' in place of the 'label' when the client
sends an hint requesting it.

Some other minor issues were corrected in this change, such as ensuring that
we always show *all* widgets inside of the notification window so that when
a live notification window is updated, the action box state is not then
hidden from view.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>themes: Ensure that we never add more than one pie_countdown</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-16T18:09:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=70425533f5648d00113e7bfeabe52198c6bbdad8'/>
<id>70425533f5648d00113e7bfeabe52198c6bbdad8</id>
<content type='text'>
Prior to this commit we would always end up adding multiple pie_countdown
widgets in a number of situations when updating the notification. In modern
media player apps, many updates are sent for the lifetime of a single
notification window, leading to new drawing areas being added and counting
down with each track/information change.

Note this hasn't been noticable for quite some time, because in many of the
themes the pie countdown hasn't actually been visible due to the actions
box having become hidden completely, meaning that the actions and pie show
very briefly, and are immediately nuked on a change to the notification.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prior to this commit we would always end up adding multiple pie_countdown
widgets in a number of situations when updating the notification. In modern
media player apps, many updates are sent for the lifetime of a single
notification window, leading to new drawing areas being added and counting
down with each track/information change.

Note this hasn't been noticable for quite some time, because in many of the
themes the pie countdown hasn't actually been visible due to the actions
box having become hidden completely, meaning that the actions and pie show
very briefly, and are immediately nuked on a change to the notification.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>themes: Add functionality to test for presence of action-icons</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:43:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=124254a41b45b790866c8df8d116a7bbef47ca50'/>
<id>124254a41b45b790866c8df8d116a7bbef47ca50</id>
<content type='text'>
Each of the themes will have to detect the 'action-icons' hint passed to
them in 'set_notification_hints' to make a determination on whether or not
to use image based buttons, instead of textual buttons, in their actions
boxes.

This factory behaviour simply extends the existing checks for urgency-hint,
as well as unifying the code style between the various in-tree theme
implementations.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Each of the themes will have to detect the 'action-icons' hint passed to
them in 'set_notification_hints' to make a determination on whether or not
to use image based buttons, instead of textual buttons, in their actions
boxes.

This factory behaviour simply extends the existing checks for urgency-hint,
as well as unifying the code style between the various in-tree theme
implementations.

Signed-off-by: Ikey Doherty &lt;ikey@solus-project.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix: bold formatting #111</title>
<updated>2016-10-07T14:48:19+00:00</updated>
<author>
<name>kajzer</name>
<email>kajzersoze72@gmail.com</email>
</author>
<published>2016-10-07T14:48:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=3fa974b37a629eab3668b2565dd0c59dbe38c1a8'/>
<id>3fa974b37a629eab3668b2565dd0c59dbe38c1a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix: properly escape text</title>
<updated>2016-09-09T16:35:48+00:00</updated>
<author>
<name>kajzer</name>
<email>kajzersoze72@gmail.com</email>
</author>
<published>2016-09-09T16:35:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=a550bac7a423943b79b98c322d665cef6f16e759'/>
<id>a550bac7a423943b79b98c322d665cef6f16e759</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix: escape text #106</title>
<updated>2016-08-27T19:58:17+00:00</updated>
<author>
<name>kajzer</name>
<email>kajzersoze72@gmail.com</email>
</author>
<published>2016-08-27T19:25:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=f95d699d693d3781a15c90a04bc63ad62897eb48'/>
<id>f95d699d693d3781a15c90a04bc63ad62897eb48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Slider: improve GtkStyleContex functions</title>
<updated>2016-06-29T11:49:42+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-06-25T22:29:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=9cb275b38a382159a90ef9379b44dd8304ae042c'/>
<id>9cb275b38a382159a90ef9379b44dd8304ae042c</id>
<content type='text'>
theme looks really better now
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
theme looks really better now
</pre>
</div>
</content>
</entry>
<entry>
<title>themes: make text translatable</title>
<updated>2016-06-24T20:04:58+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-06-24T20:04:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=2111df36e03c9d1dbb5529594ebce42cf9e39f85'/>
<id>2111df36e03c9d1dbb5529594ebce42cf9e39f85</id>
<content type='text'>
taken from:
https://git.gnome.org/browse/notification-daemon/commit/?id=b156f34
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
taken from:
https://git.gnome.org/browse/notification-daemon/commit/?id=b156f34
</pre>
</div>
</content>
</entry>
<entry>
<title>slider: do not use dprecated GtkAlignment</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-20T23:49:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-notification-daemon/commit/?id=cbb5a9e9867b228611b9bb14cca62bdcccbd6dbf'/>
<id>cbb5a9e9867b228611b9bb14cca62bdcccbd6dbf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
