<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-utils/baobab/src, branch v1.23.0</title>
<subtitle>MATE desktop utilities</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/'/>
<entry>
<title>Remove trailing whitespaces</title>
<updated>2019-07-04T13:07:12+00:00</updated>
<author>
<name>Laurent Napias</name>
<email>tamplan@free.fr</email>
</author>
<published>2019-06-29T09:57:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=61b94ba9a4953aba56764dac7e0f8751aaa11571'/>
<id>61b94ba9a4953aba56764dac7e0f8751aaa11571</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused variables</title>
<updated>2019-05-07T14:56:56+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-05-03T10:08:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=8ef9f0668c383b117b7f2ae6ddacb7dd38c1a543'/>
<id>8ef9f0668c383b117b7f2ae6ddacb7dd38c1a543</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:38:19+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=13a56b2801b8a562519d5c90fb038d3d4f5d0f74'/>
<id>13a56b2801b8a562519d5c90fb038d3d4f5d0f74</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:29:03+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=fccbbbcb04d5173ffae27fcbdabb00128c330c20'/>
<id>fccbbbcb04d5173ffae27fcbdabb00128c330c20</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>Improve performance by removing unused assignments</title>
<updated>2019-04-09T18:48:55+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-27T18:01:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=532a8d3e9794c9bc0f639b40f98eed0049b70757'/>
<id>532a8d3e9794c9bc0f639b40f98eed0049b70757</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:10:42+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=d20242dd35e7711463516691807e20b404013ec1'/>
<id>d20242dd35e7711463516691807e20b404013ec1</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>Update documenters in about dialog</title>
<updated>2019-03-24T10:03:44+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-20T18:05:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=5e42d34cdffe3bb72b545cb686ba7888850e6a3e'/>
<id>5e42d34cdffe3bb72b545cb686ba7888850e6a3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mate-dictionary: Use g_strjoin to build license text</title>
<updated>2019-03-24T10:03:44+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-20T17:13:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=c56141f59efa11edee8d9b4f99a2e37ff64f92ba'/>
<id>c56141f59efa11edee8d9b4f99a2e37ff64f92ba</id>
<content type='text'>
full stop at end of sentence in license paragraphs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
full stop at end of sentence in license paragraphs
</pre>
</div>
</content>
</entry>
<entry>
<title>Use program-name and title in gtk_show_about_dialog call</title>
<updated>2019-03-24T10:03:44+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-20T17:00:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=0080da43241fcccb27bc9becd4df7583a3efb7a6'/>
<id>0080da43241fcccb27bc9becd4df7583a3efb7a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make translatable the copyright in about dialog</title>
<updated>2019-02-16T15:22:12+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-15T12:33:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-utils/commit/?id=f2c1234cdbc1fafc79f80a6e5f442ef2a5da387f'/>
<id>f2c1234cdbc1fafc79f80a6e5f442ef2a5da387f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
