<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-applets/cpufreq/src, branch v1.22.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>Use g_list_free_full() convenience function</title>
<updated>2019-04-22T17:27:03+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=fc7d34b3b9a99a9d2c8932d386cb54c810adb681'/>
<id>fc7d34b3b9a99a9d2c8932d386cb54c810adb681</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>assignment discards 'const' qualifier from pointer target type</title>
<updated>2019-03-20T14:56:37+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-20T13:58:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=28728e9f596c3c7e4d0c420849c2a00fd62eb0b0'/>
<id>28728e9f596c3c7e4d0c420849c2a00fd62eb0b0</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 documenters in about dialog</title>
<updated>2019-03-20T14:56:00+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-13T17:29:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7'/>
<id>fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7</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 copyright info in about dialog</title>
<updated>2019-03-20T14:55:47+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=e2b5737f3401f29a77c2d4aa00950e081e4ce64b'/>
<id>e2b5737f3401f29a77c2d4aa00950e081e4ce64b</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:55:32+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=177f1081b3b52753bec2fbb560f40e1c9faaae52'/>
<id>177f1081b3b52753bec2fbb560f40e1c9faaae52</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>cpufreq: stop segfault with gtk3.23</title>
<updated>2018-07-12T19:44:31+00:00</updated>
<author>
<name>lukefromdc</name>
<email>lukefromdc@hushmail.com</email>
</author>
<published>2018-07-09T22:59:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=881233e8e6b6f0d70fd6a2dcd4235afe94c9b659'/>
<id>881233e8e6b6f0d70fd6a2dcd4235afe94c9b659</id>
<content type='text'>
Also stop any other segfaults caused by failure of deprecated gtk_action_group_get_action to return the name of the active item. With GTK 3.23.0 cpufreq_popup_menu_set_active sends invalid name information for userspace governors
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also stop any other segfaults caused by failure of deprecated gtk_action_group_get_action to return the name of the active item. With GTK 3.23.0 cpufreq_popup_menu_set_active sends invalid name information for userspace governors
</pre>
</div>
</content>
</entry>
<entry>
<title>cpufreq: fix a -Wimplicit-function-declaration</title>
<updated>2018-07-10T09:50:06+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2018-07-08T08:20:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=0746a55cd53d806361ec7520220d79d37986788b'/>
<id>0746a55cd53d806361ec7520220d79d37986788b</id>
<content type='text'>
happens if build with -lcpupower and kernel 4.7+

```
cpufreq-monitor-libcpufreq.c: In function 'cpufreq_monitor_libcpufreq_run':
cpufreq-monitor-libcpufreq.c:117:7: warning: implicit declaration of function 'cpupower_is_cpu_online' [-Wimplicit-function-declaration]
   if (cpupower_is_cpu_online (cpu)) {
       ^~~~~~~~~~~~~~~~~~~~~~
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
happens if build with -lcpupower and kernel 4.7+

```
cpufreq-monitor-libcpufreq.c: In function 'cpufreq_monitor_libcpufreq_run':
cpufreq-monitor-libcpufreq.c:117:7: warning: implicit declaration of function 'cpupower_is_cpu_online' [-Wimplicit-function-declaration]
   if (cpupower_is_cpu_online (cpu)) {
       ^~~~~~~~~~~~~~~~~~~~~~
```
</pre>
</div>
</content>
</entry>
<entry>
<title>cpu-freq: replace deprecated gtk_menu_popup</title>
<updated>2018-07-08T09:54:53+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2018-07-07T19:13:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=3cd2d150036b7a3d5286bae02e7c45e4f689c4d5'/>
<id>3cd2d150036b7a3d5286bae02e7c45e4f689c4d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cpufreq: Force the frequency label to render if frequencies are not found right away</title>
<updated>2018-06-11T18:23:44+00:00</updated>
<author>
<name>lukefromdc</name>
<email>lukefromdc@hushmail.com</email>
</author>
<published>2018-06-10T05:55:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=f0b33d1125f60bd5fe8b605d88efd37b2b0b2427'/>
<id>f0b33d1125f60bd5fe8b605d88efd37b2b0b2427</id>
<content type='text'>
Use a default "---" label until frequency values are found
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a default "---" label until frequency values are found
</pre>
</div>
</content>
</entry>
<entry>
<title>Cpufreq: Refactor to remove more GTK2 leftovers</title>
<updated>2018-06-11T18:23:44+00:00</updated>
<author>
<name>lukefromdc</name>
<email>lukefromdc@hushmail.com</email>
</author>
<published>2018-06-08T22:20:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=618ab266bc51aa7c7e880b8459f4389a12c3f21e'/>
<id>618ab266bc51aa7c7e880b8459f4389a12c3f21e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
