<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-utils, branch v1.15.1</title>
<subtitle>MATE desktop utilities</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/'/>
<entry>
<title>release 1.15.1</title>
<updated>2016-09-01T17:27:15+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-09-01T17:27:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=89dd1b2ab1e261745bb4b796e82a844c3601c1c0'/>
<id>89dd1b2ab1e261745bb4b796e82a844c3601c1c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sync with transiflex</title>
<updated>2016-09-01T16:31:33+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-09-01T16:31:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=08ff2ca08485ebf3fd0644b501d79fdb0d697bd8'/>
<id>08ff2ca08485ebf3fd0644b501d79fdb0d697bd8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 logview-prefs: complete migration to GdkRGBA</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T13:51:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=b56e693edb14526236f921592bb2209e407864db'/>
<id>b56e693edb14526236f921592bb2209e407864db</id>
<content type='text'>
taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=d71f51f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=d71f51f
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 logview-window: don't use GtkStyle to get a dim color</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T13:29:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=f400f03c2e7245f903b8d769304dfae67e6e479c'/>
<id>f400f03c2e7245f903b8d769304dfae67e6e479c</id>
<content type='text'>
Use the "dim-label" style class instead

taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=9c4c0d2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the "dim-label" style class instead

taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=9c4c0d2
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 logview-filter-manger: don't use deprecated GdkColor</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T13:13:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=0c53fd04dd18eb578398526973decf9360c0183c'/>
<id>0c53fd04dd18eb578398526973decf9360c0183c</id>
<content type='text'>
taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=db81a5e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
taken from:
https://git.gnome.org/browse/gnome-system-log/commit/?id=db81a5e
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 screenshot-dialog: Avoid resizing the preview too much</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T11:03:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=5b0b7091d7f3338df67064ea057a9ce49e47608a'/>
<id>5b0b7091d7f3338df67064ea057a9ce49e47608a</id>
<content type='text'>
Relying on configure events to resize the preview makes us do more
work than necessary and, in particular, gtk+ sometimes sends us phony
configure events sized 1x1 which make us hit a pretty CPU intensive
resize operation in gdk-pixbuf.

Instead, we can avoid all that by creating the preview pixbuf lazily
on the draw handler using the actual allocated widget size.

https://bugzilla.gnome.org/show_bug.cgi?id=768087

taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?id=c21823b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Relying on configure events to resize the preview makes us do more
work than necessary and, in particular, gtk+ sometimes sends us phony
configure events sized 1x1 which make us hit a pretty CPU intensive
resize operation in gdk-pixbuf.

Instead, we can avoid all that by creating the preview pixbuf lazily
on the draw handler using the actual allocated widget size.

https://bugzilla.gnome.org/show_bug.cgi?id=768087

taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?id=c21823b
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 screenshot-utils: don't use deprecated GDK api</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T10:46:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=bc2bda8c7e60627677c701aa20ef5998e32ce42c'/>
<id>bc2bda8c7e60627677c701aa20ef5998e32ce42c</id>
<content type='text'>
Use GdkDevice and GdkDeviceManager instead of the deprecated pointer GDK
API.

taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?h=gnome-3-4&amp;id=29e5f8c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use GdkDevice and GdkDeviceManager instead of the deprecated pointer GDK
API.

taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?h=gnome-3-4&amp;id=29e5f8c
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 screenshot-utils: use GtkStyleContext to draw the area selection</title>
<updated>2016-09-01T06:21:55+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T09:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=206323736d82a707230e02eab1f891fdfd652e7f'/>
<id>206323736d82a707230e02eab1f891fdfd652e7f</id>
<content type='text'>
taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?h=gnome-3-4&amp;id=e25c879
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
taken from:
https://git.gnome.org/browse/gnome-screenshot/commit/?h=gnome-3-4&amp;id=e25c879
</pre>
</div>
</content>
</entry>
<entry>
<title>avoid deprecated gdk_cursor_new ()</title>
<updated>2016-09-01T06:21:46+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T09:10:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=7d859a9e17f0c4f0b790e8b2a3d8ac25481d7fe6'/>
<id>7d859a9e17f0c4f0b790e8b2a3d8ac25481d7fe6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GTK+-3 babab-chart: use GtkStyleContext</title>
<updated>2016-09-01T06:14:49+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-08-07T07:22:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=8819ce43d5dcdfd102fd63f7a5ae7713a9e25b04'/>
<id>8819ce43d5dcdfd102fd63f7a5ae7713a9e25b04</id>
<content type='text'>
taken from:
https://git.gnome.org/browse/baobab/commit/?id=b6642cd
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
taken from:
https://git.gnome.org/browse/baobab/commit/?id=b6642cd
</pre>
</div>
</content>
</entry>
</feed>
