<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-desktop/icons, branch 1.28</title>
<subtitle>Library with common API for various MATE modules</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/'/>
<entry>
<title>build: add meson config files to EXTRA_DIST</title>
<updated>2020-02-17T12:14:48+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2020-02-16T13:20:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=ac126c9bdfd70d899a6926a8a1194ebeeb23436b'/>
<id>ac126c9bdfd70d899a6926a8a1194ebeeb23436b</id>
<content type='text'>
fixes https://github.com/mate-desktop/mate-desktop/issues/431
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes https://github.com/mate-desktop/mate-desktop/issues/431
</pre>
</div>
</content>
</entry>
<entry>
<title>make 'rsvg-convert' optional</title>
<updated>2019-07-24T10:15:39+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-07-05T15:50:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=560dd38d0a444cdcd4916c739f53acc924e66578'/>
<id>560dd38d0a444cdcd4916c739f53acc924e66578</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: add meson build</title>
<updated>2019-05-22T08:30:33+00:00</updated>
<author>
<name>Marty E. Plummer</name>
<email>hanetzer@startmail.com</email>
</author>
<published>2019-05-21T22:01:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=a30185610beb815648854207cb2a29d0fa9303dc'/>
<id>a30185610beb815648854207cb2a29d0fa9303dc</id>
<content type='text'>
Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Marty E. Plummer &lt;hanetzer@startmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify icons/Makefile.am</title>
<updated>2019-04-08T16:40:03+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-04-03T15:56:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=6109546780fde4bc8e9986c3f258960a5fdd76bf'/>
<id>6109546780fde4bc8e9986c3f258960a5fdd76bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use radial gradient (Blur 13.9%, Opacity 73.4%) for MATE logo shadow</title>
<updated>2019-04-08T16:40:03+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-04-02T19:37:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=01c40983fb0c016549158b690fb8a5e54fbe508e'/>
<id>01c40983fb0c016549158b690fb8a5e54fbe508e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GEN png icons from hicolor_apps_scalable_mate.svg</title>
<updated>2019-03-21T00:26:56+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-16T10:19:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=d83bccb64d612034be471c0724edd129519c3584'/>
<id>d83bccb64d612034be471c0724edd129519c3584</id>
<content type='text'>
Update icon cache and avoid conflict with mate theme:

  PNG icons are created if they are not present in icon folder.

  To remove png icons:
    cd icons; make clean-png-icons

$ cat test.py
import gtk
screen = gtk.gdk.screen_get_default()
icon_theme = gtk.icon_theme_get_for_screen(screen)
print icon_theme.lookup_icon("mate-desktop", 16, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 22, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 24, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 32, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 48, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 128, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 256, 0).get_filename()
print icon_theme.lookup_icon("mate", 16, 0).get_filename()
print icon_theme.lookup_icon("mate", 22, 0).get_filename()
print icon_theme.lookup_icon("mate", 24, 0).get_filename()
print icon_theme.lookup_icon("mate", 32, 0).get_filename()
print icon_theme.lookup_icon("mate", 48, 0).get_filename()
print icon_theme.lookup_icon("mate", 128, 0).get_filename()
print icon_theme.lookup_icon("mate", 256, 0).get_filename()
print icon_theme.lookup_icon("mate", 1000, 0).get_filename()

$ python test.py
/usr/share/icons/hicolor/16x16/apps/mate-desktop.png
/usr/share/icons/hicolor/22x22/apps/mate-desktop.png
/usr/share/icons/hicolor/24x24/apps/mate-desktop.png
/usr/share/icons/hicolor/32x32/apps/mate-desktop.png
/usr/share/icons/hicolor/48x48/apps/mate-desktop.png
/usr/share/icons/hicolor/128x128/apps/mate-desktop.png
/usr/share/icons/hicolor/scalable/apps/mate-desktop.svg
/usr/share/icons/mate/16x16/apps/mate.png
/usr/share/icons/mate/22x22/apps/mate.png
/usr/share/icons/mate/24x24/apps/mate.png
/usr/share/icons/mate/32x32/apps/mate.png
/usr/share/icons/mate/48x48/apps/mate.png
/usr/share/icons/mate/scalable/apps/mate.svg
/usr/share/icons/mate/scalable/apps/mate.svg
/usr/share/icons/mate/scalable/apps/mate.svgT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update icon cache and avoid conflict with mate theme:

  PNG icons are created if they are not present in icon folder.

  To remove png icons:
    cd icons; make clean-png-icons

$ cat test.py
import gtk
screen = gtk.gdk.screen_get_default()
icon_theme = gtk.icon_theme_get_for_screen(screen)
print icon_theme.lookup_icon("mate-desktop", 16, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 22, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 24, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 32, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 48, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 128, 0).get_filename()
print icon_theme.lookup_icon("mate-desktop", 256, 0).get_filename()
print icon_theme.lookup_icon("mate", 16, 0).get_filename()
print icon_theme.lookup_icon("mate", 22, 0).get_filename()
print icon_theme.lookup_icon("mate", 24, 0).get_filename()
print icon_theme.lookup_icon("mate", 32, 0).get_filename()
print icon_theme.lookup_icon("mate", 48, 0).get_filename()
print icon_theme.lookup_icon("mate", 128, 0).get_filename()
print icon_theme.lookup_icon("mate", 256, 0).get_filename()
print icon_theme.lookup_icon("mate", 1000, 0).get_filename()

$ python test.py
/usr/share/icons/hicolor/16x16/apps/mate-desktop.png
/usr/share/icons/hicolor/22x22/apps/mate-desktop.png
/usr/share/icons/hicolor/24x24/apps/mate-desktop.png
/usr/share/icons/hicolor/32x32/apps/mate-desktop.png
/usr/share/icons/hicolor/48x48/apps/mate-desktop.png
/usr/share/icons/hicolor/128x128/apps/mate-desktop.png
/usr/share/icons/hicolor/scalable/apps/mate-desktop.svg
/usr/share/icons/mate/16x16/apps/mate.png
/usr/share/icons/mate/22x22/apps/mate.png
/usr/share/icons/mate/24x24/apps/mate.png
/usr/share/icons/mate/32x32/apps/mate.png
/usr/share/icons/mate/48x48/apps/mate.png
/usr/share/icons/mate/scalable/apps/mate.svg
/usr/share/icons/mate/scalable/apps/mate.svg
/usr/share/icons/mate/scalable/apps/mate.svgT
</pre>
</div>
</content>
</entry>
<entry>
<title>enable installation of mate.svg</title>
<updated>2016-04-11T15:38:05+00:00</updated>
<author>
<name>Wolfgang Ulbrich</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2016-04-11T15:38:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=2e2176f062b84da4652eb24d21979d51b4bdb061'/>
<id>2e2176f062b84da4652eb24d21979d51b4bdb061</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove iconcache generation from make file to fix distcheck</title>
<updated>2015-10-07T13:45:41+00:00</updated>
<author>
<name>raveit65</name>
<email>chat-to-me@raveit.de</email>
</author>
<published>2015-10-07T13:45:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=156946474e0bca44939d308d52bab0c10ebb458c'/>
<id>156946474e0bca44939d308d52bab0c10ebb458c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add source svg for mate icon</title>
<updated>2015-09-14T13:59:49+00:00</updated>
<author>
<name>Balló György</name>
<email>ballogyor@gmail.com</email>
</author>
<published>2015-07-29T09:34:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=090de4463a26a35dbd0eb7c4d7439061e9e162a4'/>
<id>090de4463a26a35dbd0eb7c4d7439061e9e162a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix missing icons on GTK3 with custom icon theme</title>
<updated>2015-09-14T13:59:49+00:00</updated>
<author>
<name>Balló György</name>
<email>ballogyor@gmail.com</email>
</author>
<published>2015-07-29T08:00:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-desktop/commit/?id=b838c8c828d2d4e988b10b18f5f734f29bcac28c'/>
<id>b838c8c828d2d4e988b10b18f5f734f29bcac28c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
