summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-10-05travis(ci): enable notify_serversraveit651-0/+2
2019-09-23build: Don't stop building when cpufreq.h isn't availableraveit651-3/+0
2019-09-22ci: add cpupower build dependency to archlinuxWu Xiaotian1-0/+1
2019-09-15drivemount: remove -Wformat-nonliteral warningrbuj1-1/+1
drive-button.c:618:6: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] 618 | gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), error->message, NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-09-13netspeed: remove -Wunused-but-set-variable warningrbuj1-7/+0
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; | ^~
2019-09-10cpufreq: remove -Wabsolute-value warningrbuj3-3/+3
cpufreq-selector-sysfs.c:244:18: warning: taking the absolute value of unsigned type ‘guint’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 244 | current_dist = abs (frequency - f); | ^~~ -- cpufreq-selector-procfs.c:187:7: warning: taking the absolute value of unsigned type ‘guint’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 187 | if (abs (sc_max - frequency) < abs (frequency - sc_min)) | ^~~ cpufreq-selector-procfs.c:187:34: warning: taking the absolute value of unsigned type ‘guint’ {aka ‘unsigned int’} has no effect [-Wabsolute-value] 187 | if (abs (sc_max - frequency) < abs (frequency - sc_min)) | ^~~ -- cpufreq-selector-libcpufreq.c:109:18: warning: taking the absolute value of unsigned type ‘long unsigned int’ has no effect [-Wabsolute-value] 109 | current_dist = abs (freq->frequency - frequency); | ^~~
2019-09-09travis [CI]: expand WARN_CFLAGSraveit651-1/+1
2019-09-09build: extend --enable-more-warnings configure flagraveit651-2/+3
Add -Wextra, -Wunused-but-set-variable, -Wformat-nonliteral -Wabsolute-value, -Werror=format-security CFLAGS_WARNINGS and drop -std=gnu89. -Wsign-compare is already in -Wextra.
2019-09-03Travis CI: clang: -enable-checker alpha.deadcode.UnreachableCodePablo Barciela1-0/+1
2019-08-29Travis CI: Fix ubuntu buildPablo Barciela1-4/+0
2019-08-29Make cpufreq builds independent from kernel header version.Mike Gabriel3-36/+61
Ported from gnome-applets, see git diff e48b2d73~..5882df7f cpufreq/ configure.ac on the gnome-applets repository. Fixes mate-desktop/mate-applets#238.
2019-08-29 timerapplet.c: remove reductant conditionPavel Shlyak1-1/+1
2019-08-29geyes: avoid memory leakPavel Shlyak1-5/+2
2019-07-13multiload: Use /proc/diskstats for NVMe drivesVictor Kareh3-20/+106
Since glibtop does not support NVMe drives, we rely on /proc/diskstats to tell use load information for NVMe drives. If diskstats is not present it returns to glibtop as a fallback.
2019-07-11treat output as utf8 when limiting width.Jonathan Krebs1-3/+3
fixes #374
2019-07-08command: use MaCommand objectWu Xiaotian4-134/+610
2019-07-08Make command applet run commands asynchronouslyWu Xiaotian1-7/+116
2019-07-08Revert "Make command applet run commands asynchronously"raveit651-124/+8
This reverts commit 18cf1e9710b8a308b8f8f9c6c0019b3a9c2b3cda.
2019-07-08Revert "for pr review"raveit651-12/+19
This reverts commit 1c197aa881092efcdb2d9013e73d0004d58ccdf3.
2019-07-08Revert "command: use MaCommand object"raveit654-610/+134
This reverts commit dc14537a19b3fb3448f46d78707517d197e8febb.
2019-07-08command: use MaCommand objectWu Xiaotian4-134/+610
2019-07-08for pr reviewWu Xiaotian1-19/+12
2019-07-08Make command applet run commands asynchronouslyWu Xiaotian1-8/+124
2019-06-16Update FSF addressLaurent Napias10-11/+11
2019-06-16release 1.23.0v1.23.0raveit651-0/+18
2019-06-16tx: sync with transifexraveit651441-226588/+239321
2019-06-16tx: update transifex resourceraveit6512-101/+101
2019-05-31Create FUNDING.ymlMartin Wimpress1-0/+9
2019-05-31[ci] Add cppcheck html reportPablo Barciela1-1/+4
2019-05-27cpufreq: deprecated g_type_class_add_privateWu Xiaotian5-39/+14
2019-05-24travis: use fedora-30 and ubuntu-19.10 for buildingraveit651-2/+2
2019-05-21mateweather: deprecated g_type_class_add_privateWu Xiaotian2-15/+4
2019-05-16cpufreq: support kernel 5.1.0raveit652-2/+17
2019-05-09weather: align Gtk_Box to centerraveit651-0/+6
fixes https://github.com/mate-desktop/mate-applets/issues/395
2019-05-04multiload: filter-out non-local disks and user mountsrbuj1-3/+4
Fix #171
2019-04-22pre-bump versionraveit652-1/+3
2019-04-18travis: enable 'cppcheck' in debianPablo Barciela1-0/+4
2019-04-14Use g_list_free_full() convenience functionrbuj4-23/+8
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
2019-04-14Fix use-after-free clang warningrbuj2-4/+6
battstat_applet.c:755:3: warning: Use of memory after it is freed static_global_teardown (battstat); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ stickynotes.c:674:24: warning: Use of memory after it is freed stickynotes->notes = g_list_remove(stickynotes->notes, note); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-04-11[ci] enable clang analyzerWu Xiaotian1-3/+64
2019-03-31github releaseraveit651-0/+19
2019-03-23help: update copyrightraveit6511-11/+11
2019-03-20tx: update resource filesraveit6511-1381/+1271
2019-03-20Help: Use XInclude instead of ENTITY for legal.xmlrbuj11-45/+14
The ENTITY is expanded in i18n process, and legal.xml file is never read.
2019-03-20assignment discards 'const' qualifier from pointer target typerbuj3-3/+3
2019-03-20tx: update resource file for transifexrbuj1-134/+283
2019-03-20Make translatable documenters in about dialogrbuj10-6/+76
2019-03-20Make translatable copyright info in about dialogrbuj13-68/+30
2019-03-20Ensure proper translation of the about dialog titlerbuj13-3/+16
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
2019-03-17tx: sync with transifexrbuj116-425/+1877