summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-10-10release 1.23.1v1.23.1raveit652-1/+37
2019-10-10tx: sync with transifexraveit65231-14419/+14601
2019-10-10tx: update resource for transifexraveit651-118/+114
2019-10-07Travis CI: use Debian "testing" instead "sid"Pablo Barciela1-1/+1
2019-10-06travis(ci): enable notify_serversraveit651-0/+2
2019-10-03brightness-applet: use GdkSeat operationsraveit651-14/+10
2019-10-01Set compiler debug flags using MATE_DEBUG_CHECKrbuj1-4/+2
-enable-debug=yes/info/profile/no By default, compiler debug flags are disabled. Test: $ ./autogen.sh --prefix=/usr -enable-debug ... MATE Power Manager 1.23.0 ============================= prefix: /usr datadir: ${datarootdir} compiler: gcc cflags: -g -O0 gnome-keyring support: yes Building extra applets: yes Self test support: no dbus-1 services dir: ${datarootdir}/dbus-1/services Now type `make' to compile mate-power-manager $ ./autogen.sh --prefix=/usr ... MATE Power Manager 1.23.0 ============================= prefix: /usr datadir: ${datarootdir} compiler: gcc cflags: gnome-keyring support: yes Building extra applets: yes Self test support: no dbus-1 services dir: ${datarootdir}/dbus-1/services Now type `make' to compile mate-power-manager
2019-09-30travis (ci): use --enable-compile-warnings=maximumraveit651-2/+15
- build mate-common from tarball
2019-09-30Use WARN_CFLAGS which are only set with -enable-compiler-warningsrbuj5-55/+31
MATE_COMPILE_WARNINGS is present in configure.ac but WARN_CFLAGS variable is not used. git grep WARN_CFLAGS It removes -enable-extra-warn=yes, since it is recommended to use -enable-compile-warnings=maximum. It sets -enable-compiler-warnings=yes, the default value for all MATE packager for now. It prints WARN_CFLAGS in summary table.
2019-09-26drop obsolete version checks for upowerraveit657-467/+2
with required version bump to upower-0.99.8 we don't need them any more.
2019-09-26require upower-0.99.8raveit651-1/+1
2019-09-26Use up_client_get_devices2()raveit653-3/+3
The previous code would have leaked all the UpDevice objects because no free function was set on the returned GPtrArray. With depending on upower-glib 0.99.8 get_devices() was deprecated and get_devices2() was introduced, we can simply switch to get_devices2() which does set a free function on the returned GPtrArray, stopping the leak. Inspired from: https://gitlab.gnome.org/GNOME/gnome-control-center/commit/c1210c5 see upower upstream: https://gitlab.freedesktop.org/upower/upower/commit/cb1071b
2019-09-01Travis CI: clang: -enable-checker alpha.deadcode.UnreachableCodePablo Barciela1-0/+1
2019-08-20Use gresources for gpm-prefs.ui and gpm-statistics.uirbuj12-35/+117
2019-08-20egg-console-kit: avoid 'g_type_class_add_private'Pablo Barciela1-5/+4
2019-08-20gpm-engine: avoid 'g_type_class_add_private'Pablo Barciela1-5/+3
2019-08-20gpm-phone: avoid 'g_type_class_add_private'Pablo Barciela1-6/+3
2019-08-20gpm-prefs-core: avoid 'g_type_class_add_private'Pablo Barciela1-6/+3
2019-08-20gpm-screensaver: avoid 'g_type_class_add_private'Pablo Barciela1-7/+3
2019-08-20gsd-media-keys-window: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20gpm-tray-icon: avoid 'g_type_class_add_private'Pablo Barciela1-5/+2
2019-08-20msd-osd-window: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20gpm-load: avoid 'g_type_class_add_private'Pablo Barciela1-5/+2
2019-08-20gpm-brightness: avoid 'g_type_class_add_private'Pablo Barciela1-5/+3
2019-08-20gpm-manager: avoid 'g_type_class_add_private'Pablo Barciela1-4/+2
2019-08-20gpm-kbd-backlight: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20gpm-dpms: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20gpm-button: avoid 'g_type_class_add_private'Pablo Barciela1-6/+3
2019-08-20gpm-backlight: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20egg-idletime: avoid 'g_type_class_add_private'Pablo Barciela1-6/+3
2019-08-20gpm-graph-widget: avoid 'g_type_class_add_private'Pablo Barciela1-5/+3
2019-08-20gpm-session: avoid 'g_type_class_add_private'Pablo Barciela1-6/+3
2019-08-20gpm-idle: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20gpm-control: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-20Simplify the installation process of the iconsrbuj26-643/+17
2019-08-20Remove unused UI filerbuj3-45/+0
2019-07-25prefs: Fix mnemonic relationshipsColomban Wendling1-0/+13
This fixes navigation with mnemonic keys as well as giving proper a11y context for the labeled widgets. Fixes #292.
2019-07-24gpm-upower: fix some build warningsraveit651-1/+1
``` gpm-upower.c:222:51: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] gpm-upower.c:222:44: note: add parentheses around left hand side expression to silence this warning 222 | if (state == UP_DEVICE_STATE_CHARGING || !state == UP_DEVICE_STATE_DISCHARGING) { | ^~~~~~ ``` ``` gpm-upower.c:222:53: warning: comparison of constant '2' with boolean expression is always false [-Wbool-compare] 222 | if (state == UP_DEVICE_STATE_CHARGING || (!state) == UP_DEVICE_STATE_DISCHARGING) { | ```
2019-07-10Add scroll interface tabs with mouse wheelLaurent Napias4-22/+98
in preferences and gpm-statistics (mouse-battery)
2019-06-25[ci] Add cppcheck html reportPablo Barciela1-1/+4
2019-06-25Travis CI: add icon to the static code analyzer websitePablo Barciela1-1/+1
2019-06-25travis: enable 'cppcheck' in debianPablo Barciela1-0/+4
2019-06-24[ci] remove libgnome-keyring-dev on ubuntuPablo Barciela1-2/+1
2019-06-18release 1.23.0v1.23.0raveit651-0/+11
2019-06-18tx: sync with transifexraveit65133-24472/+26435
2019-06-18tx: update resource for transifexraveit652-106/+110
2019-06-17use --without-keyring for make distcheckWu Xiaotian1-0/+1
2019-06-17[ci] use autogen.sh --without-keyring on debianWu Xiaotian1-1/+2
2019-06-17[ci] remove libgnome-keyring-dev on debianWu Xiaotian1-1/+0
2019-06-17[ci] Enable Clang Static AnalyzerWu Xiaotian1-5/+68