<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-utils, branch v1.22.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.22.1</title>
<updated>2019-04-23T11:53:26+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-23T11:39:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=31a51b718ad7711534bb667b2ba289c871269e78'/>
<id>31a51b718ad7711534bb667b2ba289c871269e78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: sync with transifex</title>
<updated>2019-04-23T11:32:12+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-23T11:32:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=68b4fb2747c8c1f16f40076cfad165a9ffe28a59'/>
<id>68b4fb2747c8c1f16f40076cfad165a9ffe28a59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: update resource file</title>
<updated>2019-04-23T11:12:26+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-23T11:12:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=08540ad969414bdff7959f294991260358e0b618'/>
<id>08540ad969414bdff7959f294991260358e0b618</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix -Werror=cast-function-type with GCC 8</title>
<updated>2019-04-09T19:40:56+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-03T09:43:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3'/>
<id>bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3</id>
<content type='text'>
In addition, it removes unnecessary function type casts like:
  (GDestroyNotify) g_object_unref
  (GDestroyNotify) g_free
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In addition, it removes unnecessary function type casts like:
  (GDestroyNotify) g_object_unref
  (GDestroyNotify) g_free
</pre>
</div>
</content>
</entry>
<entry>
<title>mate-disk-usage-analyzer: Memory leak</title>
<updated>2019-04-09T19:30:45+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-04T06:29:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=dd4c5965cd3fab114440d6b01e83153acdacd155'/>
<id>dd4c5965cd3fab114440d6b01e83153acdacd155</id>
<content type='text'>
To detect the memory leak using valgrind:

export CFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie"
export CXXFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie"
./autogen.sh --prefix=/usr
make clean
make
sudo make install
valgrind --tool=memcheck --undef-value-errors=no --leak-check=full --log-file="report.txt" /usr/bin/mate-disk-usage-analyzer

report.txt content:

==16061== 6 bytes in 1 blocks are definitely lost in loss record 174 of 14,390
==16061==    at 0x483880B: malloc (vg_replace_malloc.c:309)
==16061==    by 0x56B10D7: g_malloc (gmem.c:99)
==16061==    by 0x56CAAEE: g_strdup (gstrfuncs.c:363)
==16061==    by 0x56E3743: g_variant_dup_string (gvariant.c:1533)
==16061==    by 0x5509DE6: g_settings_get_string (gsettings.c:1795)
==16061==    by 0x115664: initialize_charts (baobab.c:1185)
==16061==    by 0x11640C: main (baobab.c:1307)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To detect the memory leak using valgrind:

export CFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie"
export CXXFLAGS="-Og -g -fno-omit-frame-pointer -fPIE -pie"
./autogen.sh --prefix=/usr
make clean
make
sudo make install
valgrind --tool=memcheck --undef-value-errors=no --leak-check=full --log-file="report.txt" /usr/bin/mate-disk-usage-analyzer

report.txt content:

==16061== 6 bytes in 1 blocks are definitely lost in loss record 174 of 14,390
==16061==    at 0x483880B: malloc (vg_replace_malloc.c:309)
==16061==    by 0x56B10D7: g_malloc (gmem.c:99)
==16061==    by 0x56CAAEE: g_strdup (gstrfuncs.c:363)
==16061==    by 0x56E3743: g_variant_dup_string (gvariant.c:1533)
==16061==    by 0x5509DE6: g_settings_get_string (gsettings.c:1795)
==16061==    by 0x115664: initialize_charts (baobab.c:1185)
==16061==    by 0x11640C: main (baobab.c:1307)
</pre>
</div>
</content>
</entry>
<entry>
<title>github release page for stable branch</title>
<updated>2019-04-05T11:50:43+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-05T11:50:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=bcd23558985fab871cd03139fb971373ebaadf7d'/>
<id>bcd23558985fab871cd03139fb971373ebaadf7d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pre-bump version</title>
<updated>2019-03-25T12:16:26+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-03-25T12:16:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=cfead43b35a5618edf01f223c5da3cbc2394916f'/>
<id>cfead43b35a5618edf01f223c5da3cbc2394916f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>travis: add new build dependencies</title>
<updated>2019-03-25T12:15:26+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-03-24T11:57:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=a25a5ba66787219ee8614a11fd474026d3db005a'/>
<id>a25a5ba66787219ee8614a11fd474026d3db005a</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 svg files</title>
<updated>2019-03-25T12:15:05+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-16T17:22:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=14cd43685163f3ad3e9a79a5b2cb05e7fb420f91'/>
<id>14cd43685163f3ad3e9a79a5b2cb05e7fb420f91</id>
<content type='text'>
  PNG icons are created if they are not present in icon folder.

  To remove png icons:
    make -C baobab/pixmaps clean-png-icons
    make -C logview/data/icons clean-png-icons

  To build png icons:
    make -C baobab/pixmaps build-png-icons
    make -C logview/data/icons build-png-icons

This removes baobab/pixmaps/shot.png file, use applets-screenshooter
named icon (used in mate-screenshot).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  PNG icons are created if they are not present in icon folder.

  To remove png icons:
    make -C baobab/pixmaps clean-png-icons
    make -C logview/data/icons clean-png-icons

  To build png icons:
    make -C baobab/pixmaps build-png-icons
    make -C logview/data/icons build-png-icons

This removes baobab/pixmaps/shot.png file, use applets-screenshooter
named icon (used in mate-screenshot).
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: update resource file</title>
<updated>2019-03-24T10:23:11+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-03-24T10:23:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=e46d962c7d048121bf845bbc2eaaac5849d2aefc'/>
<id>e46d962c7d048121bf845bbc2eaaac5849d2aefc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
