diff options
-rw-r--r-- | .build.yml | 9 | ||||
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | mate-indicator-applet.pot | 6 | ||||
-rw-r--r-- | src/applet-main.c | 2 |
4 files changed, 13 insertions, 8 deletions
@@ -26,7 +26,8 @@ requires: - gcc - git - libgtk-3-dev - - libindicator3-dev + - libayatana-ido3-dev + - libayatana-indicator3-dev - libmate-panel-applet-dev - libtool - libx11-dev @@ -103,7 +104,11 @@ build_scripts: - fi - NOCONFIGURE=1 ./autogen.sh - - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum + - if [ ${DISTRO_NAME} == "debian" ];then + - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum --with-ayatana-indicators=yes + - else + - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum + - fi - if [ $CPU_COUNT -gt 1 ]; then - if [ ${DISTRO_NAME} == "debian" ];then - scan-build $CHECKERS --keep-cc --use-cc=clang --use-c++=clang++ -o html-report make -j $CPU_COUNT diff --git a/.travis.yml b/.travis.yml index 89f330c..70be534 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,7 +69,7 @@ after_success: fi' env: - - DISTRO="archlinux:latest" +# - DISTRO="archlinux:latest" - DISTRO="debian:testing" - DISTRO="fedora:latest" - - DISTRO="ubuntu:devel" + - DISTRO="ubuntu:rolling" diff --git a/mate-indicator-applet.pot b/mate-indicator-applet.pot index cc8e360..81eb379 100644 --- a/mate-indicator-applet.pot +++ b/mate-indicator-applet.pot @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: mate-indicator-applet 1.24.0\n" +"Project-Id-Version: mate-indicator-applet 1.25.0\n" "Report-Msgid-Bugs-To: https://github.com/mate-desktop/mate-indicator-applet/" "issues\n" -"POT-Creation-Date: 2020-08-20 16:25+0200\n" +"POT-Creation-Date: 2021-01-16 14:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <[email protected]>\n" "Language-Team: LANGUAGE <[email protected]>\n" @@ -82,7 +82,7 @@ msgstr "" #: src/applet-main.c:810 msgid "" "Copyright © 2009-2010 Canonical, Ltd.\n" -"Copyright © 2011-2020 MATE developers" +"Copyright © 2011-2021 MATE developers" msgstr "" #: src/applet-main.c:813 diff --git a/src/applet-main.c b/src/applet-main.c index ecfe86f..3710c1f 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -963,7 +963,7 @@ applet_fill_cb (MatePanelApplet * applet, const gchar * iid G_GNUC_UNUSED, #endif static const GtkActionEntry menu_actions[] = { - {"About", GTK_STOCK_ABOUT, N_("_About"), NULL, NULL, G_CALLBACK(about_cb)} + {"About", "help-about", N_("_About"), NULL, NULL, G_CALLBACK(about_cb)} }; static const gchar *menu_xml = "<menuitem name=\"About\" action=\"About\"/>"; |