Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-01-09 | update copyright year to 2018 | monsta | 1 | -1/+1 | |
2017-12-05 | WidthOfScreen and HeightOfScreen implementation | Pablo Barciela | 1 | -7/+3 | |
This commit reverts: https://github.com/mate-desktop/mate-applets/commit/d809e57c7b09f545f1cf847f514fa738d44ac2b3 https://github.com/mate-desktop/mate-applets/commit/2f5515815c1f6c9b66f85d6ec228aad7aea0b441 And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height gdk_screen_width gdk_screen_height | |||||
2017-11-09 | Cpufreq: fix a build warning | lukefromdc | 1 | -1/+1 | |
2017-11-09 | Cpufreq: stop jumping numbers moving units label | lukefromdc | 1 | -29/+38 | |
*Force the frequency label to hold the largest size it ever takes *Reset label size with any change of theme or font to avoid truncation *Clean up a nasty mix of spaced and tabs in cpufreq_applet_refresh | |||||
2017-10-05 | update copyright year in other applets | monsta | 1 | -1/+1 | |
2017-09-22 | cpufreq: fix calculating max width of frequency/unit/percent labels | monsta | 1 | -23/+22 | |
fixes https://github.com/mate-desktop/mate-applets/issues/268 | |||||
2017-09-19 | cpufreq: refresh applet size on style change (e.g. font size) | monsta | 1 | -0/+16 | |
2017-09-05 | cpufreq: fix random invisibility of the applet | monsta | 1 | -2/+2 | |
2017-08-09 | avoid deprecated gdk_screen_get_width/height | ZenWalker | 1 | -3/+8 | |
2017-08-05 | cpufreq: don't use deprecated gtk_show_uri | raveit65 | 2 | -6/+16 | |
2017-07-24 | cpufreq-prefs: don't use deprecated gtk_show_uri | raveit65 | 1 | -0/+4 | |
2017-04-02 | cpufreq:set frequency on all cores | lukefromdc | 1 | -23/+41 | |
Still can be set to monitor any given core's speed but sets governor or userspace speed on all cores together | |||||
2017-01-14 | CpuFreq: fix warning from GTK_ORIENTABLE | lukefromdc | 1 | -3/+1 | |
gtk_orientable_get_orientation now throws warnings so remove it. It does not appear to work anyway. Applet tested in a vertical (left side) panel as well as a horizontal one, as long as the vertical panel is wide enough to accept the applet it works and puts the frequency and units on two levels. Puts them on one level in a horizontal panel. | |||||
2016-11-22 | move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build option | monsta | 1 | -103/+1 | |
and require mate-panel >= 1.17 WARNING: use GTK+3 build of libmateweather for this build. that lib is not migrated to GTK+3 only as we will possibly use libgweather instead of it. | |||||
2016-11-22 | fix some indent and a couple of typos | monsta | 1 | -1/+1 | |
2016-08-31 | cpu-freq: avoid deprecated polkit_authority_get | raveit65 | 1 | -1/+1 | |
And bump polkit requirement. polkit_authority_get is deprecated since polkit-0.97 from 2010. So the requirement bump should be save for all distros. | |||||
2016-08-16 | cpufreq: remove useless #include | monsta | 1 | -3/+0 | |
there's implicit declaration warning with or without it, see https://bugzilla.kernel.org/show_bug.cgi?id=153161 | |||||
2016-08-15 | cpufreq: fix build warning when polkit is disabled | monsta | 1 | -0/+2 | |
2016-07-31 | cpufreq: use GtkAbout and update copyright | raveit65 | 1 | -3/+6 | |
2016-06-09 | fix build with kernel-4.7 | leigh123linux | 1 | -1/+8 | |
2016-03-30 | GTK 3.20 cpufreq: fix themes clipping units label | lukefromdc | 1 | -6/+1 | |
Stop BlackMATE, possibly other themes from cutting off the end of the units label and get rid of an #1f block for GTK 3.19 at the same time. GTK 3.19 seemed to pad the end of this label a bit, not so with released GTK 3.20. | |||||
2016-03-07 | cpufreq GTK3: hardcode fewer labels | lukefromdc | 1 | -22/+17 | |
In gtk3, replacing "label" with "applet->label" makes the gtk_widget_get_preferred_width functions work for the frequency and unit labels without issue. Trim them a bit in gtk3.19 builds as they render 2px wider there for some reason. The exception is the percentage label. That one apparently always starts with "0%" entered-and it does NOT update it's width when larger character strings come up. Thus, a fixed figure of 20px still has to be added to that one. On the other hand, that will ensure the applet never jumps from percentage changes. Height of the whole applet is still limited somewhere to 24 px, still looking for that issue as it hurts the match to taller panels. | |||||
2016-01-06 | cpufreq: remove unused argument "parent" | lukefromdc | 3 | -26/+9 | |
remove unused argument "parent" in cpufreq_selector_set_xxx_async functions | |||||
2016-01-03 | gtk3: stop cpufreq-applet turning transparent | lukefromdc | 1 | -3/+7 | |
gtk3: stop cpufreq-applet turning transparent -prevent the cpufreq applet and panel area beneath from becoming transparent to the desktop when a menu item in the popup menu is clicked. Veriied to work on gtk3.19.5 | |||||
2015-10-16 | GTK3 cpufreq:fix bottom panel render & 0px labels | lukefromdc | 1 | -2/+20 | |
fix bottom panel rendering of popup menu in gtk3 builds, fix zero-width frequency/percentage labels in gtk3 builds. | |||||
2015-10-16 | GTK3 cpufreq: support custom panel themes | lukefromdc | 1 | -1/+14 | |
support custom panel themes in gtk3 builds. Include robust support for transparent themes in cases where gtk3 has issues properly detecting a compositing window manager, e.g compiz. | |||||
2015-10-15 | GTK cpufreq: fix label position on horizontal panels | raveit65 | 1 | -0/+18 | |
The issue was caused by using deprecated widgets and defines for orientation with GTK3. #define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) #define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) Deprecated gtk_[h/v]box_new don't use them. | |||||
2014-12-30 | cpufreq, README: removed more obsolete stuff | Monsta | 1 | -2/+0 | |
2014-11-26 | cpufreq: Bring gsettings code in line with gnome-panel | infirit | 1 | -37/+8 | |
Taken from 6d61304f8ee62eb2776725b8424140a332f651cf | |||||
2014-11-26 | cpufreq: Add missing #include <config.h> to make translations work | infirit | 1 | -0/+4 | |
2014-11-26 | GDK_KEY_* is also in Gtk+2 | infirit | 1 | -9/+6 | |
2014-11-26 | Gtk3: Silence GtkVbox and GtkHbox deprecation warnings | infirit | 1 | -1/+6 | |
2014-11-26 | avoid dereferencing NULL pointer | Monsta | 1 | -4/+5 | |
Closes https://github.com/mate-desktop/mate-applets/pull/114 | |||||
2014-11-26 | zero-init signals array | monsta | 1 | -2/+2 | |
Closes https://github.com/mate-desktop/mate-applets/pull/108 | |||||
2014-11-25 | cpufreq: Fix 'allow' directives must always specify a 'send_destination' | infirit | 1 | -2/+2 | |
Closes #46 | |||||
2014-06-25 | Use $(datadir)/mate instead of $(datadir)/mate-2.0mate-applets-1.9.0 | Stefano Karapetsas | 1 | -1/+1 | |
And also rename binaries without "-2" suffix | |||||
2014-06-02 | Replace GtkObject with GObject also for gtk2 | infirit | 1 | -20/+0 | |
2014-06-02 | Remove deprecated call to g_type_init | infirit | 1 | -2/+0 | |
2014-05-03 | Use MateAboutDialog from libmate-desktop | Stefano Karapetsas | 2 | -1/+4 | |
2014-04-30 | Update vendor_url in policy file | infirit | 1 | -1/+1 | |
2014-02-08 | Fix help uri for applets | infirit | 2 | -2/+2 | |
2014-01-20 | cpufreq: Add GTK3 support | Stefano Karapetsas | 1 | -2/+89 | |
https://git.gnome.org/browse/gnome-applets/commit/cpufreq?id=6fd55674cdb0154d26c6d9a78001818cfe44fc58 | |||||
2013-08-02 | Use yelp-tools instead of mate-doc-utils | infirit | 2 | -2/+2 | |
2013-06-02 | fix some make files for automake-1.13 | raveit | 2 | -3/+3 | |
2013-04-04 | cpufreq: Fix GSettings init | Stefano Karapetsas | 1 | -1/+1 | |
2013-02-23 | Rename cpufreq applet not to file conflict with GNOME | Elan Ruusamäe | 1 | -3/+3 | |
2012-11-24 | cpufreq: migrate to gsettings | Stefano Karapetsas | 4 | -127/+42 | |
2012-10-09 | Fixed fsf addresses. Closes #18. | Steve Zesch | 35 | -35/+35 | |
2012-04-20 | Fixes https://github.com/mate-desktop/mate-desktop/issues/10 | Steve Zesch | 1 | -1/+1 | |
2011-11-15 | renaming cpufreq-selector to mate-cpufreq-selector | Perberos | 1 | -6/+6 | |