<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-applets/netspeed/src, branch v1.24.1</title>
<subtitle>Applets for use with the MATE panel</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/'/>
<entry>
<title>netspeed: don't define MATELOCALEDIR</title>
<updated>2020-03-04T11:11:02+00:00</updated>
<author>
<name>monsta</name>
<email>monsta@inbox.ru</email>
</author>
<published>2020-03-04T05:46:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=a638c404280d4d5226935427d8dee2990c7ad8c5'/>
<id>a638c404280d4d5226935427d8dee2990c7ad8c5</id>
<content type='text'>
it's already defined in configure.ac for all applets
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it's already defined in configure.ac for all applets
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright to 2020</title>
<updated>2020-01-10T16:56:41+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2020-01-10T16:56:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=b9331e748a23dca488832c4bfc410dbcddc43214'/>
<id>b9331e748a23dca488832c4bfc410dbcddc43214</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>netspeed: remove -Wunused-but-set-variable warning</title>
<updated>2019-09-13T17:22:40+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-09-05T17:13:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=92575c4932ec84cbfc228cad2e41525d69eac931'/>
<id>92575c4932ec84cbfc228cad2e41525d69eac931</id>
<content type='text'>
netspeed.c:477:15: warning: variable ‘state’ set but not used [-Wunused-but-set-variable]
  477 |  GtkStateType state;
      |               ^~~~~
netspeed.c:476:15: warning: variable ‘ra’ set but not used [-Wunused-but-set-variable]
  476 |  GdkRectangle ra;
      |               ^~
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
netspeed.c:477:15: warning: variable ‘state’ set but not used [-Wunused-but-set-variable]
  477 |  GtkStateType state;
      |               ^~~~~
netspeed.c:476:15: warning: variable ‘ra’ set but not used [-Wunused-but-set-variable]
  476 |  GdkRectangle ra;
      |               ^~
</pre>
</div>
</content>
</entry>
<entry>
<title>Use g_list_free_full() convenience function</title>
<updated>2019-04-14T13:24:07+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-14T07:19:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=b02b6b0fe430b9dcb137f4aaf24efde94ba70afe'/>
<id>b02b6b0fe430b9dcb137f4aaf24efde94ba70afe</id>
<content type='text'>
void
g_list_free_full (GList *list,
                  GDestroyNotify free_func);

Convenience method, which frees all the memory used
by a GList, and calls free_func on every element's
data.

https://developer.gnome.org/glib/stable/glib-Doubly-Linked-Lists.html#g-list-free-full
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
void
g_list_free_full (GList *list,
                  GDestroyNotify free_func);

Convenience method, which frees all the memory used
by a GList, and calls free_func on every element's
data.

https://developer.gnome.org/glib/stable/glib-Doubly-Linked-Lists.html#g-list-free-full
</pre>
</div>
</content>
</entry>
<entry>
<title>Make translatable copyright info in about dialog</title>
<updated>2019-03-20T14:38:56+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-13T12:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=5059df0f47487b7aed5be05640bdec87a4573813'/>
<id>5059df0f47487b7aed5be05640bdec87a4573813</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure proper translation of the about dialog title</title>
<updated>2019-03-20T14:38:56+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-13T10:56:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=5b153a6130de6b905b73b9e1a23b3922c929a0a7'/>
<id>5b153a6130de6b905b73b9e1a23b3922c929a0a7</id>
<content type='text'>
Note that GTK+ sets a default title of _("About %s") on the dialog
window (where %s is replaced by the name of the application, but
in order to ensure proper translation of the title, applications
should set the title property explicitly when constructing a
GtkAboutDialog

https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that GTK+ sets a default title of _("About %s") on the dialog
window (where %s is replaced by the name of the application, but
in order to ensure proper translation of the title, applications
should set the title property explicitly when constructing a
GtkAboutDialog

https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Support git.mk to generate .gitignore</title>
<updated>2018-12-08T09:29:02+00:00</updated>
<author>
<name>Wu Xiaotian</name>
<email>yetist@gmail.com</email>
</author>
<published>2018-11-26T08:50:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=70085d237ef4c014ae4bfbd413c6b7667e65efed'/>
<id>70085d237ef4c014ae4bfbd413c6b7667e65efed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>netspeed: Use theme icons instead of embedded</title>
<updated>2018-05-12T20:22:15+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@vkareh.net</email>
</author>
<published>2018-05-02T19:17:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=2b9d8bf7c7338ed984a3529b06d8551f5fffec88'/>
<id>2b9d8bf7c7338ed984a3529b06d8551f5fffec88</id>
<content type='text'>
This removes old icons included with the applet and instead uses icons from the current theme.

Known issues:
* Loopback interface does not have an icon, instead we use a "reload" icon to simulate it.
* PLIP/SLIP interfaces do not have proper icons, I managed to find an old PLIP icon in the hicolor theme and re-purposed it.
* Since not all icons have the same levels of scaling, I'm capping the size at 48px to keep all interfaces consistent.
* There are no icons for Wireless Quality, so I retained the existing ones for now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This removes old icons included with the applet and instead uses icons from the current theme.

Known issues:
* Loopback interface does not have an icon, instead we use a "reload" icon to simulate it.
* PLIP/SLIP interfaces do not have proper icons, I managed to find an old PLIP icon in the hicolor theme and re-purposed it.
* Since not all icons have the same levels of scaling, I'm capping the size at 48px to keep all interfaces consistent.
* There are no icons for Wireless Quality, so I retained the existing ones for now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert applet icons from pixbuf to surfaces</title>
<updated>2018-05-12T20:22:15+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@vkareh.net</email>
</author>
<published>2018-05-01T02:02:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=7185a704026f9fccf253c0993be986d359f16526'/>
<id>7185a704026f9fccf253c0993be986d359f16526</id>
<content type='text'>
This improves support for HiDPI by loading properly scaled surfaces for applets.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This improves support for HiDPI by loading properly scaled surfaces for applets.
</pre>
</div>
</content>
</entry>
<entry>
<title>avoid deprecated GtkStock</title>
<updated>2018-02-09T15:17:56+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2018-02-03T17:03:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=607d5228f3a280dd8acfcdaba7da7c83c496de32'/>
<id>607d5228f3a280dd8acfcdaba7da7c83c496de32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
