commit 7f9b7668f1404687246fcee964a10fa33a5b2496
Author: Victor Kareh <vkareh@redhat.com>
Date:   Thu Sep 4 16:33:33 2025 -0400

    Release v1.28.6
    
    Removing deprecations, dependency bumps, and some bug fixes

 NEWS         | 13 +++++++++++++
 configure.ac |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

commit a70cde0eccbf0890831d1f7a27aa5d86feeb4796
Author: Victor Kareh <vkareh@redhat.com>
Date:   Wed Sep 3 06:27:59 2025 -0400

    Fix uninitialized and unused screen vars
    
    A previous overzealous cleanup left some hanging screen variables and
    one instance of an uninitialized screen being used.

 applets/clock/clock.c         | 1 +
 applets/fish/fish.c           | 1 -
 applets/wncklet/window-list.c | 1 -
 mate-panel/panel-toplevel.c   | 3 ++-
 4 files changed, 3 insertions(+), 3 deletions(-)

commit 04531898458c4b31730c72fc672dab6f09d8c79b
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Aug 8 13:08:41 2025 -0400

    wncklet: Bump libwnck to 43.0
    
    Recent versions of libwnck introduced a WnckHandler object to be used as
    the main entry point into the library.

 applets/wncklet/showdesktop.c        | 16 +++++++++++++++-
 applets/wncklet/window-list.c        | 13 +++++++++++--
 applets/wncklet/window-menu.c        |  9 ++++++++-
 applets/wncklet/wncklet.c            | 19 ++++---------------
 applets/wncklet/wncklet.h            |  7 ++++---
 applets/wncklet/workspace-switcher.c | 13 +++++++++++--
 configure.ac                         |  2 +-
 7 files changed, 54 insertions(+), 25 deletions(-)

commit bc2ebb874d5b5228fbb9a54a60aa97c3c735d8f4
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Aug 1 22:42:34 2025 -0400

    wncklet: Remove window preview conditionals
    
    There are no distros (that I could find) that ship both an old
    libwnck<3.32.0 with a new MATE>=1.28. Dropping this should be safe and
    removes complexity.
    
    Since all of these were already wrapped inside HAVE_X11, it should not
    affect Wayland at all.

 applets/wncklet/Makefile.am   |  6 ------
 applets/wncklet/window-list.c | 33 ---------------------------------
 configure.ac                  | 12 ++----------
 3 files changed, 2 insertions(+), 49 deletions(-)

commit 4e2f0755fc01b6bee61347c4a951d2ce8a7cd387
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Aug 1 20:46:48 2025 -0400

    clock: Provide fallback preferences path
    
    Provide a fallback preferences path in case the applet doesn't provide
    one. This happens when running outside the actual panel, like in the
    case of mate-panel-test-applets.

 applets/clock/clock.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 226c03b3f9b010fd8f988aa3754558217598832d
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Jul 18 14:34:16 2025 -0400

    Bump GTK version to 3.24

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 944eec840f807d6b4dd06d5c7e78e8ff29708935
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Jul 18 15:07:38 2025 -0400

    panel-stock-icons: Remove deprecated GtkIconFactory and GtkIconSource
    
    All applet menus already use theme icon names directly, making this
    legacy stock icon code obsolete. Removing it eliminates all the icon
    factory deprecation warnings.

 mate-panel/panel-stock-icons.c | 69 ------------------------------------------
 mate-panel/panel-stock-icons.h | 12 --------
 2 files changed, 81 deletions(-)

commit 744a162adc885f3f5a85125682eec46ca1be06dc
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Jul 18 10:51:52 2025 -0400

    Remove deprecated gdk_screen_get_* functions
    
    Screen functions are replaced with their Display equivalents to remove
    deprecation warnings. Display functions take into account the entire
    display server connection, rather than a single physical monitor.

 applets/clock/clock.c            | 3 +--
 applets/fish/fish.c              | 3 +--
 applets/wncklet/window-list.c    | 7 +++----
 mate-panel/panel-action-button.c | 4 ++--
 mate-panel/panel-toplevel.c      | 3 +--
 5 files changed, 8 insertions(+), 12 deletions(-)

commit ac31bee9b801bfbe3da6f37d90043c85a8e67abb
Author: Victor Kareh <vkareh@redhat.com>
Date:   Fri Jul 18 10:15:20 2025 -0400

    remove deprecated GtkStockItem
    
    Also replace gtk_dialog_add_button with panel_dialog_add_button to
    ensure mnemonics and icons are preserved.

 mate-panel/panel-applet-frame.c |  4 ++--
 mate-panel/panel-force-quit.c   |  6 +++---
 mate-panel/panel-recent.c       |  6 +++---
 mate-panel/panel-stock-icons.c  | 10 ----------
 4 files changed, 8 insertions(+), 18 deletions(-)

commit 1c768b7af4813cea0dc6c3c0a586339e61b3909f
Author: Victor Kareh <vkareh@redhat.com>
Date:   Mon Apr 22 15:50:38 2024 -0400

    wncklet: Remove unused attributes
    
    Since the icon loader is no longer present, there is no need to track
    the icon theme when the applet is realized. This is will all be taken
    care of by libwnck.

 applets/wncklet/window-list.c | 10 ----------
 1 file changed, 10 deletions(-)

commit 48d45df162e61a5c16bd4ba1e02bc9655d343512
Author: Victor Kareh <vkareh@redhat.com>
Date:   Mon Apr 22 15:44:57 2024 -0400

    wncklet: Remove icon loader function from window list applet
    
    This function only loads the icon during the startup-notification, at
    which point it gets replaced by the actual icon read in libwnck. Moving
    forward the loading function should become part of libwnck.

 applets/wncklet/window-list.c | 51 -------------------------------------------
 1 file changed, 51 deletions(-)

commit d5b5b28fd701f1c8969afc9465d2c08489a113c4
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Apr 24 03:06:31 2025 -0400

    Release 1.28.5
    
    Bugfix release

 NEWS         | 3 +++
 configure.ac | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 702af8793c44992fbe2e44db73dfbde62b89afa7
Author: Gordon Norman Squash <gordsqsh@protonmail.com>
Date:   Mon Oct 14 22:47:26 2024 -0400

    Clock Applet: Add scrollbar to Locations lists when the lists get too long
    
    Before this commit, the Clock Applet's popup window would expand off the
    screen if the user added more than a few locations to the Locations list.
    In addition, the list of locations in the Clock Applet Preferences could get
    extremely tall as well, and could even push the bottom part of the
    Preferences dialog off the screen.
    
    This commit adds (vertical) scrollbars to both widgets.

 applets/clock/clock.c  | 17 ++++++++++++++---
 applets/clock/clock.ui |  3 ++-
 2 files changed, 16 insertions(+), 4 deletions(-)

commit be855481d5618ea6e342231b0ff503b36981cdee
Author: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Date:   Sat Oct 5 23:01:38 2024 +0700

    applets/clock: Fix compatibility with musl libc
    
    %l is an glibc extension for strftime, this extensions isn't supported
    by musl libc.
    
    Replace %l with %_I, which is functionaly equivalence.
    %_I itself is also an extensions, however, %_I is supported by both
    glibc, musl, FreeBSD and deriviates, AIX, and Solaris.
    
    Fix: #1451

 applets/clock/clock-location-tile.c | 6 +++---
 applets/clock/clock.c               | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

commit f8d04498632261a2f31345347679fa33d4d15fe8
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Dec 6 18:45:18 2024 -0500

    ci: fix Faraday issue on deploy

 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

commit 5382f14d0ba35716cc1ef8f0548b9df3efb9226d
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Dec 6 18:32:52 2024 -0500

    ci: fix start of builds

 .travis.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 6baecc6bd3ce0d4ab3b8516a15573c4bb8edd974
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Oct 17 01:23:32 2024 -0400

    Release 1.28.4

 NEWS         | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f2c3ec86c259ffafdb01eef56e2066b74098df54
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Oct 15 15:29:54 2024 -0400

    Attempt to fix 2nd Travis deployment issue

 .travis.yml | 6 ++++++
 1 file changed, 6 insertions(+)

commit 65b2b9e74e8c6c5fc030036a2f11354cc496dd07
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Oct 16 02:50:46 2024 -0400

    Release 1.28.3

 NEWS         | 5 +++++
 configure.ac | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a3a20ccb54e56e9178addd382e78f4e518ae3826
Author: correctmost <134317971+correctmost@users.noreply.github.com>
Date:   Tue Oct 15 18:12:03 2024 -0400

    ci: Bump dpl branches for Ruby 3 support

 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c0eaf88d485d699338d64c97baa38134ca2a0d18
Author: Balló György <ballogyor@gmail.com>
Date:   Tue Oct 15 05:13:16 2024 +0200

    Check the existence of dconf-editor's schema (#1447)
    
    We need to check the existence of dconf-editor's GSettings schema before
    using it, because the program will abort if dconf-editor is not installed
    on the system when it tries to access it.

 libmate-panel-applet/mate-panel-applet-gsettings.c | 18 ++++++++++++++++--
 mate-panel/panel-profile.c                         | 18 ++++++++++++++++--
 2 files changed, 32 insertions(+), 4 deletions(-)

commit 2c39f2490c060b1771f2166b4455e790ac5968eb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jun 18 15:40:26 2024 -0400

    Release 1.28.2

 NEWS         | 5 +++++
 configure.ac | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit ef970c587da92f572a7af79de50c0cc4179400ba
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jun 18 15:36:25 2024 +0200

    status-notifier: Plug large leak with icons from paths
    
    When loading an icon from a path rather than the icon theme, we scale
    it down to match the scale we need[^1], but we leaked the original
    pixbuf in this case.
    
    Fixes #1444.
    
    [^1]: See commit e5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af

 applets/notification_area/status-notifier/sn-item-v0.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit c1ee68665e937a380422e05fb1f10b77aaa1f3e7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jun 18 13:16:00 2024 -0400

    Fix travis deploy

 .travis.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c365f4419b9ea9d00f7fb120afca3bdf50a8c821
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Apr 3 23:48:22 2024 -0400

    Release 1.28.1

 NEWS         | 6 ++++++
 configure.ac | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 3ff43c7fa14e43c60307bdb95b8182868f23bfde
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Apr 3 23:17:51 2024 -0400

    Build: require mate-desktop 1.28.2

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4193d26de16b2b18e7a6dac114d3ccd200674952
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Mar 17 21:44:41 2024 -0400

    ci: use mate-desktop 1.28.2 upon which this depends

 .build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c5f0878a45c383983ebf67b6366a1989b0bea878
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Mar 6 13:27:48 2024 -0500

    Use MateImageMenuItem properly
    
    switch out the last vestiges of deprecated GtkImageMenuItem

 mate-panel/panel-menu-items.h | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 83da4d5e069cb428fd8032f4ab5f2e4642910787
Author: raveit65 <mate@raveit.de>
Date:   Tue Feb 20 02:20:26 2024 +0100

    release 1.28.0

 NEWS         | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit c36e374f45e7d4d153aa743c42e141030f3344be
Author: raveit65 <mate@raveit.de>
Date:   Tue Feb 20 02:18:25 2024 +0100

    tx: sync with transifex

 po/ja.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 7169a9f0bca49b46db343d19d67482cf322f6b8c
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 4 19:43:35 2024 +0100

    release 1.27.3

 NEWS         | 69 ++++++++++++++++++++++++++++++++++++++++++++----------------
 configure.ac |  2 +-
 2 files changed, 52 insertions(+), 19 deletions(-)

commit ebf811fe770a93fea355e2245984e1d0b402d936
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 4 18:59:26 2024 +0100

    tx: sync with transifex

 help/mate-clock/de/de.po      |    2 +-
 help/mate-clock/it/it.po      |    2 +-
 help/mate-clock/ja/ja.po      |    6 +-
 help/mate-clock/ko/ko.po      |    4 +-
 help/mate-clock/la/la.po      |  687 +++++++++
 help/mate-clock/nb/nb.po      |    2 +-
 help/mate-fish/de/de.po       |    2 +-
 help/mate-fish/it/it.po       |    2 +-
 help/mate-fish/ja/ja.po       |    6 +-
 help/mate-fish/ko/ko.po       |    4 +-
 help/mate-fish/ku_IQ/ku_IQ.po |    6 +-
 help/mate-fish/la/la.po       |    7 +-
 help/mate-fish/nan/nan.po     |  435 ++++++
 help/mate-fish/nb/nb.po       |    2 +-
 help/mate-fish/ru/ru.po       |    2 +-
 po/LINGUAS                    |    1 +
 po/af.po                      |  224 ++-
 po/am.po                      |  205 +--
 po/ar.po                      |  222 ++-
 po/as.po                      |  224 ++-
 po/ast.po                     |  226 ++-
 po/az.po                      |  219 ++-
 po/be.po                      |  231 ++-
 po/bg.po                      |  225 ++-
 po/bn.po                      |  219 ++-
 po/bn_IN.po                   |  224 ++-
 po/br.po                      |  229 ++-
 po/bs.po                      |  222 ++-
 po/ca.po                      |  231 ++-
 po/ca@valencia.po             |  230 ++-
 po/cmn.po                     |  216 +--
 po/crh.po                     |  223 ++-
 po/cs.po                      |  223 ++-
 po/cy.po                      |  222 ++-
 po/da.po                      |  247 ++--
 po/de.po                      |  237 ++--
 po/dz.po                      |  231 ++-
 po/el.po                      |  232 ++-
 po/en_AU.po                   |  225 ++-
 po/en_CA.po                   |  221 ++-
 po/en_GB.po                   |  232 +--
 po/eo.po                      |  221 ++-
 po/es.po                      |  235 ++--
 po/es_AR.po                   |  199 +--
 po/es_CL.po                   |  199 +--
 po/es_CO.po                   |  199 +--
 po/es_CR.po                   |  199 +--
 po/es_DO.po                   |  199 +--
 po/es_EC.po                   |  199 +--
 po/es_ES.po                   |  199 +--
 po/es_MX.po                   |  199 +--
 po/es_NI.po                   |  199 +--
 po/es_PA.po                   |  199 +--
 po/es_PE.po                   |  199 +--
 po/es_PR.po                   |  199 +--
 po/es_SV.po                   |  199 +--
 po/es_UY.po                   |  199 +--
 po/es_VE.po                   |  199 +--
 po/et.po                      |  224 ++-
 po/eu.po                      |  224 ++-
 po/fa.po                      |  222 ++-
 po/fi.po                      |  225 ++-
 po/fr.po                      |  231 ++-
 po/fr_CA.po                   |  199 +--
 po/frp.po                     |  199 +--
 po/fur.po                     |  222 ++-
 po/fy.po                      |  199 +--
 po/ga.po                      |  199 +--
 po/gl.po                      |  228 ++-
 po/gu.po                      |  220 ++-
 po/ha.po                      |  226 ++-
 po/he.po                      |  225 ++-
 po/hi.po                      |  220 ++-
 po/hr.po                      |  222 ++-
 po/hu.po                      |  230 ++-
 po/hy.po                      |  222 ++-
 po/ia.po                      |  199 +--
 po/id.po                      |  247 ++--
 po/ie.po                      |  199 +--
 po/ig.po                      |  221 ++-
 po/is.po                      |  222 ++-
 po/it.po                      |  263 ++--
 po/ja.po                      |  265 ++--
 po/jv.po                      |  199 +--
 po/ka.po                      |  225 ++-
 po/kab.po                     |  199 +--
 po/kk.po                      |  199 +--
 po/kn.po                      |  227 ++-
 po/ko.po                      |  221 ++-
 po/ku.po                      |  221 ++-
 po/ku_IQ.po                   |  199 +--
 po/ky.po                      |  224 ++-
 po/li.po                      |  199 +--
 po/lt.po                      |  225 ++-
 po/lv.po                      |  223 ++-
 po/mai.po                     |  219 ++-
 po/mg.po                      |  227 ++-
 po/mi.po                      |  199 +--
 po/mk.po                      |  221 ++-
 po/ml.po                      |  223 ++-
 po/mn.po                      |  219 ++-
 po/mr.po                      |  225 ++-
 po/ms.po                      |  223 ++-
 po/nan.po                     | 3115 +++++++++++++++++++++++++++++++++++++++++
 po/nb.po                      |  235 ++--
 po/nds.po                     |  199 +--
 po/ne.po                      |  222 ++-
 po/nl.po                      |  236 ++--
 po/nn.po                      |  223 ++-
 po/nso.po                     |  225 ++-
 po/oc.po                      |  231 ++-
 po/or.po                      |  219 ++-
 po/pa.po                      |  222 ++-
 po/pl.po                      |  346 ++---
 po/pms.po                     |  199 +--
 po/ps.po                      |  199 +--
 po/pt.po                      |  228 ++-
 po/pt_BR.po                   |  229 ++-
 po/ro.po                      |  222 ++-
 po/ru.po                      |  229 ++-
 po/rw.po                      |  199 +--
 po/sc.po                      |  199 +--
 po/si.po                      |  199 +--
 po/sk.po                      |  223 ++-
 po/sl.po                      |  225 ++-
 po/sq.po                      |  221 ++-
 po/sr.po                      |  269 ++--
 po/sr@latin.po                |  222 ++-
 po/sv.po                      |  232 ++-
 po/ta.po                      |  219 ++-
 po/te.po                      |  222 ++-
 po/th.po                      |  226 ++-
 po/tk.po                      |  199 +--
 po/tr.po                      |  227 ++-
 po/ug.po                      |  224 ++-
 po/uk.po                      |  232 ++-
 po/ur.po                      |  199 +--
 po/uz.po                      |  199 +--
 po/vi.po                      |  228 ++-
 po/wa.po                      |  199 +--
 po/xh.po                      |  224 ++-
 po/yi.po                      |  199 +--
 po/yo.po                      |  226 ++-
 po/zh_CN.po                   |  240 ++--
 po/zh_HK.po                   |  214 +--
 po/zh_TW.po                   |  235 ++--
 po/zu.po                      |  222 ++-
 147 files changed, 18535 insertions(+), 14288 deletions(-)

commit 63952b76ef6fce89854d0868d5337230c2ba4b38
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Nov 21 21:12:36 2023 +0100

    Constify some pointer references in locals
    
    No need to have pointers to mutables when not needed.
    
    This does not cover everything at all, and is limited to one file for
    the moment.
    
    origin commit was:
    https://github.com/mate-desktop/mate-panel/commit/b913762

 mate-panel/panel-widget.c | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

commit 406e09ec637deeafe6d34361c8896df6bbfef22b
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:39:56 2023 +0100

    Reduce scope of more code
    
    The computed values are only used in one branch, so compute them there.

 mate-panel/libpanel-util/panel-color.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit d437f5bba6a55ef585a2d51beadf68d71f7f7221
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:31:27 2023 +0100

    Avoid a redundant NULL check
    
    It's probably not necessary to perform the NULL check at all as the
    only code paths that could make `list` NULL are already pretty
    dramatically broken, but as we have a NULL check move everything
    relevant inside it.

 mate-panel/panel-profile.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 62fabfc793b545250dafaf37f75650cbfdce095f
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:10:11 2023 +0100

    Reduce scope of variables
    
    Mostly found by cppcheck.
    
    origin commit was:
    https://github.com/mate-desktop/mate-panel/commit/96c7ebc

 applets/clock/calendar-window.c                    |  4 ++--
 applets/clock/clock.c                              | 15 ++++++--------
 applets/notification_area/na-grid.c                |  5 +++--
 .../notification_area/status-notifier/sn-host-v0.c |  3 +--
 .../notification_area/status-notifier/sn-item-v0.c |  3 +--
 .../system-tray/na-tray-manager.c                  |  3 +--
 libmate-panel-applet/mate-panel-applet-gsettings.c |  8 ++++----
 mate-panel/button-widget.c                         |  6 +++---
 .../panel-applets-manager-dbus.c                   | 13 ++++++------
 mate-panel/libpanel-util/panel-color.c             |  8 +++++---
 mate-panel/libpanel-util/panel-gtk.c               |  3 +--
 mate-panel/libpanel-util/panel-keyfile.c           |  5 +++--
 mate-panel/mate-desktop-item-edit.c                |  3 +--
 mate-panel/panel-lockdown.c                        |  8 ++------
 mate-panel/panel-menu-items.c                      | 24 ++++++++++------------
 mate-panel/panel-multimonitor.c                    |  3 +--
 mate-panel/panel-profile.c                         |  4 +---
 mate-panel/panel-test-applets.c                    |  5 ++---
 mate-panel/panel-widget.c                          |  2 --
 19 files changed, 55 insertions(+), 70 deletions(-)

commit f98be9734446e1b620312b69dc8fa8ed0f0997d9
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:55:04 2024 +0100

    Revert "Add "center-stick" capability applets on the panel"
    
    This reverts commit 38e00280e9d17282717595a05411736a308804c0.

 data/default.layout                       |   6 +-
 data/fedora.layout                        |   8 +-
 data/linuxmint.layout                     |   4 +-
 data/mageia.layout                        |   6 +-
 data/opensuse.layout                      |   8 +-
 data/org.mate.panel.object.gschema.xml.in |   9 +-
 data/ubuntu.layout                        |  16 +-
 mate-panel/applet.c                       |  93 ++++----
 mate-panel/applet.h                       |  14 +-
 mate-panel/drawer.c                       |   4 +-
 mate-panel/launcher.c                     |   3 +-
 mate-panel/panel-action-button.c          |   2 +-
 mate-panel/panel-applet-frame.c           |   2 +-
 mate-panel/panel-enums-gsettings.h        |   6 -
 mate-panel/panel-layout.c                 |   1 -
 mate-panel/panel-menu-bar.c               |   2 +-
 mate-panel/panel-menu-button.c            |   2 +-
 mate-panel/panel-profile.c                |  75 ++-----
 mate-panel/panel-profile.h                |  30 +--
 mate-panel/panel-schemas.h                |   1 -
 mate-panel/panel-separator.c              |   2 +-
 mate-panel/panel-toplevel.c               |  28 ++-
 mate-panel/panel-widget.c                 | 339 +++++++-----------------------
 mate-panel/panel-widget.h                 |   6 +-
 mate-panel/panel.c                        |  12 +-
 mate-panel/panel.h                        |   2 +-
 26 files changed, 222 insertions(+), 459 deletions(-)

commit 53bfbaac0c874932503d3481a91ed96476212682
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:54:39 2024 +0100

    Revert "Fix center- and right-sticking of expanding applets"
    
    This reverts commit 7b1b00d5ddffc349ca117843bd0d015e9fb08a89.

 mate-panel/panel-widget.c | 147 ++++++++--------------------------------------
 1 file changed, 26 insertions(+), 121 deletions(-)

commit e663fbaeba760003b4088e567af0883534891e59
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:53:56 2024 +0100

    Revert "Reduce scope of variables"
    
    This reverts commit 96c7ebc6dc9e8b8327db04a9570054ee78743353.

 applets/clock/calendar-window.c                    |  4 ++--
 applets/clock/clock.c                              | 15 ++++++++------
 applets/notification_area/na-grid.c                |  5 ++---
 .../notification_area/status-notifier/sn-host-v0.c |  3 ++-
 .../notification_area/status-notifier/sn-item-v0.c |  3 ++-
 .../system-tray/na-tray-manager.c                  |  3 ++-
 libmate-panel-applet/mate-panel-applet-gsettings.c |  8 ++++----
 mate-panel/button-widget.c                         |  6 +++---
 .../panel-applets-manager-dbus.c                   | 13 ++++++------
 mate-panel/libpanel-util/panel-color.c             |  8 +++-----
 mate-panel/libpanel-util/panel-gtk.c               |  3 ++-
 mate-panel/libpanel-util/panel-keyfile.c           |  5 ++---
 mate-panel/mate-desktop-item-edit.c                |  3 ++-
 mate-panel/panel-lockdown.c                        |  8 ++++++--
 mate-panel/panel-menu-items.c                      | 24 ++++++++++++----------
 mate-panel/panel-multimonitor.c                    |  3 ++-
 mate-panel/panel-profile.c                         |  4 +++-
 mate-panel/panel-test-applets.c                    |  5 +++--
 mate-panel/panel-widget.c                          |  9 +++++---
 19 files changed, 74 insertions(+), 58 deletions(-)

commit 6a9848eb8388807d13c38cdaceabfc143f6640aa
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:53:36 2024 +0100

    Revert "Avoid a redundant NULL check"
    
    This reverts commit 17b87e321bfca409c31ce4b4e0e3326eeef92b88.

 mate-panel/panel-profile.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 03f528e7c28cddf1fd68cb63ee4372d715aeacc2
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:53:16 2024 +0100

    Revert "Reduce scope of more code"
    
    This reverts commit 655a8f484598a07a210dc56f1662021f8be69737.

 mate-panel/libpanel-util/panel-color.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit a28797be4ad70d1546a7071af60ddf1a726a5c46
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 28 02:52:52 2024 +0100

    Revert "Constify some pointer references in locals"
    
    This reverts commit b91376262abb56d95f9ec86993edaa8e9fb2cc1a.

 mate-panel/panel-widget.c | 60 +++++++++++++++++++++++------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

commit c7b20bf68329757738c70032f0269758294d5f59
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Jan 6 18:30:46 2024 -0500

    wayland: keep window list menu off space not used for buttons
    
    *Fix the window list menu replacing the panel context menu between the end of the window list and the next applet

 libmate-panel-applet/mate-panel-applet.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit ad39a8ba88f4286c8f1e5f0cb9ac2b89b1d79726
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Thu Jan 25 10:53:38 2024 +0100

    run-dialog: Don't needlessly override DISPLAY environment variable
    
    This code got introduced with 3c21f66bf30810fcb25dfe8c3c0960df270dc416
    trying to mimic `gdk_spawn_on_screen()`, but does not: what
    `gdk_spawn_on_screen()` did (on X11) was to append the screen number to
    the display, so that it worked on a multi-screen setup where the app is
    not on the default X screen.
    
    However, the code that got introduced just sets the display, which is
    gonna be already there anyway (yet possibly loosing the default screen
    in the process?), and AFAIK GDK dropped support for multi-screen setups
    anyway (not to be confused with multi-monitor with e.g. Xinerama).
    
    We should actually be better of without any of this, as it most likely
    doesn't do what it is supposed to, nobody needs what it failed to do,
    and it breaks XWayland on Wayland.
    
    Fixes #1387.

 mate-panel/panel-run-dialog.c | 22 ++--------------------
 1 file changed, 2 insertions(+), 20 deletions(-)

commit 5f5d0a538d5fadb54c20bb92a5f737b7bcd1d06f
Author: raveit65 <mate@raveit.de>
Date:   Tue Jan 23 12:09:39 2024 +0100

    ci: use ubuntu jammy as docker

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f608c40f5b8256aea281804369760a1eb2696be2
Author: zhu yaliang <zhuyaliang@loongson.cn>
Date:   Thu Dec 28 10:00:31 2023 +0800

    Update opacity when changed gsettings color value

 mate-panel/panel-properties-dialog.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit cb1a440f1f3f740bbaeb9577465c999c67f5c80a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Nov 21 15:23:46 2023 -0500

    wnck-pager: Fix workspace switcher aspect ratio

 applets/wncklet/workspace-switcher.c | 154 ++++++++++++++++++++++++++++++++++-
 1 file changed, 153 insertions(+), 1 deletion(-)

commit b91376262abb56d95f9ec86993edaa8e9fb2cc1a
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Nov 21 21:12:36 2023 +0100

    Constify some pointer references in locals
    
    No need to have pointers to mutables when not needed.
    
    This does not cover everything at all, and is limited to one file for
    the moment.

 mate-panel/panel-widget.c | 60 +++++++++++++++++++++++------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

commit 655a8f484598a07a210dc56f1662021f8be69737
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:39:56 2023 +0100

    Reduce scope of more code
    
    The computed values are only used in one branch, so compute them there.

 mate-panel/libpanel-util/panel-color.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 6a3df1342b957f0293c7a9f05b3037dff3156487
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:32:56 2023 +0100

    Remove a redundant NULL check
    
    `info` cannot be NULL, and if it was it'd already have crashed above.
    
    > mate-panel/panel.c:893:34: warning: Either the condition 'info!=((void*)0)' is redundant or there is possible null pointer dereference: info. [nullPointerRedundantCheck]
    >  parent = gtk_widget_get_parent (info->widget);
    >                                  ^
    > mate-panel/panel.c:895:11: note: Assuming that condition 'info!=((void*)0)' is not redundant
    >  if (info != NULL &&
    >           ^
    > mate-panel/panel.c:893:34: note: Null pointer dereference
    >  parent = gtk_widget_get_parent (info->widget);
    >                                  ^

 mate-panel/panel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 17b87e321bfca409c31ce4b4e0e3326eeef92b88
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:31:27 2023 +0100

    Avoid a redundant NULL check
    
    It's probably not necessary to perform the NULL check at all as the
    only code paths that could make `list` NULL are already pretty
    dramatically broken, but as we have a NULL check move everything
    relevant inside it.

 mate-panel/panel-profile.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 1b15e2f5f6d33bd8139636a3c6f72fd07d3e5d7b
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:31:00 2023 +0100

    Constify a parameter

 mate-panel/panel-background.c | 2 +-
 mate-panel/panel-background.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 5da3bf92a500d5ad4dbd0835472fa0abbf1a5c2c
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:29:15 2023 +0100

    Return a value even after an assertion failure
    
    This is not strictly needed as there's already an assertion (assuming
    it's not compiled out), but returning a value help analyzers get this
    right.

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 31f2b7e8f1f3efbd83715ed9acddb310edde4423
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:27:27 2023 +0100

    Remove redundant shadowing variable
    
    No need to get the default icon theme again anyway.

 mate-panel/button-widget.c | 1 -
 1 file changed, 1 deletion(-)

commit 83fae06e1e7e232c9006ccf4ef5e30b65ddc642f
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:27:11 2023 +0100

    Remove unused-but-set variable

 libmate-panel-applet/mate-panel-applet.c | 2 --
 1 file changed, 2 deletions(-)

commit 8724f32fa0f776b2ce08763531906b1136fe355f
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:26:18 2023 +0100

    wncklet: Remove double assignment

 applets/wncklet/workspace-switcher.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 96c7ebc6dc9e8b8327db04a9570054ee78743353
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 15:10:11 2023 +0100

    Reduce scope of variables
    
    Mostly found by cppcheck.

 applets/clock/calendar-window.c                    |  4 ++--
 applets/clock/clock.c                              | 15 ++++++--------
 applets/notification_area/na-grid.c                |  5 +++--
 .../notification_area/status-notifier/sn-host-v0.c |  3 +--
 .../notification_area/status-notifier/sn-item-v0.c |  3 +--
 .../system-tray/na-tray-manager.c                  |  3 +--
 libmate-panel-applet/mate-panel-applet-gsettings.c |  8 ++++----
 mate-panel/button-widget.c                         |  6 +++---
 .../panel-applets-manager-dbus.c                   | 13 ++++++------
 mate-panel/libpanel-util/panel-color.c             |  8 +++++---
 mate-panel/libpanel-util/panel-gtk.c               |  3 +--
 mate-panel/libpanel-util/panel-keyfile.c           |  5 +++--
 mate-panel/mate-desktop-item-edit.c                |  3 +--
 mate-panel/panel-lockdown.c                        |  8 ++------
 mate-panel/panel-menu-items.c                      | 24 ++++++++++------------
 mate-panel/panel-multimonitor.c                    |  3 +--
 mate-panel/panel-profile.c                         |  4 +---
 mate-panel/panel-test-applets.c                    |  5 ++---
 mate-panel/panel-widget.c                          |  9 +++-----
 19 files changed, 58 insertions(+), 74 deletions(-)

commit 7632b4fe9bb81a440bdde64c8cc45b15e07b1de8
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 14:53:10 2023 +0100

    Remove unused member PanelAction::type
    
    > mate-panel/panel-action-button.c:516:26: style: struct member 'PanelAction::type' is never used. [unusedStructMember]
    >  PanelActionButtonType   type;
    >                          ^

 mate-panel/panel-action-button.c | 9 ---------
 1 file changed, 9 deletions(-)

commit e59c6d0276832bf8201561f71718daeca2465360
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 14:45:37 2023 +0100

    Optimize mate_panel_applet_settings_get_g*list()
    
    - Build the list in reverse order, then reverse the result.  This is
      useful because GS?List are list nodes, not containers of nodes, and
      thus don't contain a pointer to the list's end, meaning to append one
      has to walk the entire list to find the end each time.  To avoid this
      we use the common idiom of prepending to the list (which is cheap, as
      it's adding a node before the given one), and then reversing the
      resulting list to get back the original order.
    - Avoid unnecessary memory copy by stealing the GStrv's members.  We
      get the array as a copy, so we can simply steal the members and free
      the container array only, saving a copy for each member.

 libmate-panel-applet/mate-panel-applet-gsettings.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit ec5938e508526a70962e770ddd811f020951d1e8
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 14:42:02 2023 +0100

    clock: Simplify sort_locations_by_time()
    
    There is no need to return -1 or 1 specifically, anything on the right
    side of 0 is OK, so simplify using the usual `a - b` implementation for
    such sort functions.
    
    Note that the type is OK here, as the `struct tm` are ints, the same as
    the function's return value.

 applets/clock/clock.c | 40 +++++++++++-----------------------------
 1 file changed, 11 insertions(+), 29 deletions(-)

commit f9fb27ba92e61a16a81285aedcfab5d28bd5519e
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 14:38:49 2023 +0100

    Do not perform useless incoherent NULL check
    
    cppcheck tells us that we perform NULL checking inconsistently, and
    reports a potential NULL dereference.  Here however the string cannot
    be NULL, so just drop the unnecessary check.
    
    > mate-panel/panel-run-dialog.c:1663:10: warning: Either the condition '!start' is redundant or there is possible null pointer dereference: start. [nullPointerRedundantCheck]
    >  while (*start != '\0' && g_ascii_isspace (*start))
    >          ^
    > mate-panel/panel-run-dialog.c:1679:6: note: Assuming that condition '!start' is not redundant
    >  if (!start || !start [0]) {
    >      ^
    > mate-panel/panel-run-dialog.c:1663:10: note: Null pointer dereference
    >  while (*start != '\0' && g_ascii_isspace (*start))
    >         ^

 mate-panel/panel-run-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 074e5d0136beb84dec62e0a40209c42dab793d87
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Nov 15 14:34:16 2023 +0100

    Reorder array index limit check
    
    This is *not* an issue, as it's not really a bounds check but a mere
    limit, and the array is NULL-terminated.
    
    However, it looks odd and cppcheck (unsurprisingly) doesn't understand
    the details well enough and reports this as a misordered bounds check.
    
    > mate-panel/panel-run-dialog.c:166:12: style: Array index 'i' is used before limits check. [arrayIndexThenCheck]
    >       items[i] && i < history_max_size;
    >            ^

 mate-panel/panel-run-dialog.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit d87c912ce8c09bd64263c6296314b6f17de3ad73
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Oct 24 13:34:04 2023 +0200

    status-notifier: Show AttentionIcon when Status is NeedsAttention
    
    Fixes #1412.

 .../notification_area/status-notifier/sn-item-v0.c | 39 +++++++++++++++++-----
 1 file changed, 30 insertions(+), 9 deletions(-)

commit 95a92215de5abb2a2a6eb34cad342497ba2b5bc5
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Sat Feb 29 17:46:59 2020 +0200

    status-notifier: fix typo
    
    Cherry-picked from gnome-panel commit
    1cc654e16dc06edccaef8c877db4e0da30ceeeaa.

 applets/notification_area/status-notifier/sn-dbus-menu-item.c | 2 +-
 applets/notification_area/status-notifier/sn-dbus-menu-item.h | 2 +-
 applets/notification_area/status-notifier/sn-dbus-menu.c      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 353c71eaf99ab3454033611d3e6cfac4e4f6e924
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Sat Jan 20 23:54:19 2018 +0200

    status-notifier: fix a typo
    
    Cherry-picked from gnome-panel commit
    55667a735ea33336f5b0912631b184b95ea2140b.

 applets/notification_area/status-notifier/sn-dbus-menu-item.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 675f72ff302409dcbfb1991cf56fd09a294039bf
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Oct 11 15:37:08 2023 -0400

    Main menus: fix missing Places, System icons
    
    *After replacing gtk_image_menu_item with mate_image_menu_item
    *We must also replace GTK_TYPE_IMAGE_MENU_ITEM with MATE_TYPE_IMAGE_MENU_ITEM
    
    *This fixes leftover GtkImageMenuItem deprecation warnings and restores missing Places and System icons in main menus

 mate-panel/panel-menu-items.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ebb3a795a351ca600eb539ed2bba013a6533d749
Author: raveit65 <mate@raveit.de>
Date:   Fri Oct 6 17:58:58 2023 +0200

    replace deprecated gtk-image-menu-item*

 .build.yml                                         | 33 ++++++++++++++++++++++
 .../status-notifier/sn-dbus-menu-item.c            | 18 ++++++------
 configure.ac                                       |  2 +-
 mate-panel/menu.c                                  |  9 +++---
 mate-panel/panel-menu-bar.c                        |  6 ++--
 mate-panel/panel-menu-items.c                      |  9 +++---
 mate-panel/panel-recent.c                          |  6 ++--
 7 files changed, 60 insertions(+), 23 deletions(-)

commit a6ea51bbaf4b9edf3bab3fea5daf0d0bb30b5d7a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Oct 1 17:23:17 2023 -0400

    Wayland: Fix force-quit unsupported message dialog
    
    *For some reason "widget" is not being properly passed to this, so use NULL for the parent window

 mate-panel/panel-action-button.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4c6fc7e38e6d482bbe1172fdda9302a9e58c357e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Sep 25 16:44:10 2023 -0400

    Wayland: Make panel shutdown button work under wayland
    
    *This uses systemd to be able to shutdown when a display manager is running as root
    *If no session or display manager is running as root, systemd used only to suspend or hibernate
    *Suspend/hibernate require systemd at this point
    *If suspend or hibernate not supported error dialog shown if those buttons clicked
    *If "disable logout" lockdown option set, shut down button cannot be added same as in x11
    *If shut down button added to panel and lockout later disabled, same non-responsive button as in x11
    *Logind support would be welcome

 mate-panel/panel-action-button.c | 206 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 202 insertions(+), 4 deletions(-)

commit 170842ce7a4aada7730830f75507bd29d1dcc03f
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Oct 3 07:35:41 2023 -0400

    Force-quit/x11: Fix misalignment of popup with multimonitors
    
    *Compute the size of the monitor we are actually showing the popup on
    *by getting the monitor it is shown on and running gdk_monitor_get_geometry()
    
    *This returns application (scaled) pixels not device pixels

 mate-panel/panel-force-quit.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit cf544b717345dc405b2e2f189d53d69a79120e8b
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Oct 1 16:48:48 2023 -0400

    Hidpi x11: center panel force-quit popup window

 mate-panel/panel-force-quit.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit f229fdc5f590f2e586a3e45c650794b6ce2f378b
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 2 19:27:34 2023 +0200

    tx: update resources

 mate-panel.pot | 198 +++++++++++++++++++++++++++++++--------------------------
 1 file changed, 107 insertions(+), 91 deletions(-)

commit 34af0e1b375a59508cc79e6f87140e9358d0b1a3
Author: raveit65 <mate@raveit.de>
Date:   Wed Aug 23 09:36:12 2023 +0200

    release 1.27.2

 NEWS         | 24 ++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 25 insertions(+), 1 deletion(-)

commit 892b53526cbd9c08c8b62e1a3a6195c93d898ee9
Author: raveit65 <mate@raveit.de>
Date:   Wed Aug 23 09:30:09 2023 +0200

    tx: pull with transifex

 help/mate-clock/ca/ca.po       |  2 +-
 help/mate-clock/el/el.po       |  5 +++--
 help/mate-clock/en_GB/en_GB.po |  2 +-
 help/mate-clock/ko/ko.po       |  4 ++--
 help/mate-clock/oc/oc.po       |  7 +++----
 help/mate-clock/zh_CN/zh_CN.po |  4 ++--
 help/mate-fish/ca/ca.po        |  2 +-
 help/mate-fish/el/el.po        |  5 +++--
 help/mate-fish/en_GB/en_GB.po  |  2 +-
 help/mate-fish/ko/ko.po        |  4 ++--
 help/mate-fish/oc/oc.po        |  6 +++---
 po/ca.po                       |  2 +-
 po/cs.po                       |  6 ++++--
 po/en_GB.po                    |  2 +-
 po/eu.po                       |  5 +++--
 po/ko.po                       |  2 +-
 po/oc.po                       |  2 +-
 po/ru.po                       |  6 +++---
 po/sl.po                       |  2 +-
 po/tr.po                       | 12 ++++++------
 20 files changed, 43 insertions(+), 39 deletions(-)

commit 6a948c63ee0e1ea13eb30fe47602cff0628604cc
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Aug 9 06:40:32 2023 -0400

    libmate-panel-applet: don't use panel plug to find the screen
    
    * There is only one screen in GTK 3.22 or later
    * Finding the screen from that used by GtkPanelPlug is out of process only
    * Any in-process applet calling mate_panel_applet_request_focus needs this to avoid a segfault
    * One known user: dictionary applet

 libmate-panel-applet/mate-panel-applet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fff4b7e24868e7a8fa3634f618c6bdf813f402ca
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Jul 30 13:36:50 2023 -0400

    wayland-tasklist: really set maximum label width
    
    *Otherwise taskbuttons for programs using URLs or filenames in the window name can balloon across the whole taskbar

 applets/wncklet/wayland-backend.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit e20f321294a83eb50481999177ab090036cc9270
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jul 24 01:29:27 2023 -0400

    wayland tasklist:  fit buttons to tasklist, limit button size, hide contents as necessary
    
    *Empty space between buttons removed
    *padding in buttons similar to x11
    
    *Vertical panel: do not modify buttons, they just plain work!
    *We have a working window list on vertical panels in wayland only
    
    *Horizontal panels:
    
    *expand buttons like in X11 until more expanded buttons won't fit
    *When expanded buttons won't fit,  resize buttons to fit tasklist
    *When ellipsized text plus icon won't fit, remove the label
    *When one more button with icon won't fit, remove the icon
            *but bring back the (compressable) label as in x11.
            *Prevents window list buttons disappearing when theme does not set a border

 applets/wncklet/wayland-backend.c | 242 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 237 insertions(+), 5 deletions(-)

commit 7400deb9327447541b4552f15ac9c290fea11c87
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jul 24 12:32:29 2023 -0400

    notification-area: stop warning on removal
    
    *Use automatic signal handling for changing icon size so this code doesn't get called when the applet is removed

 applets/notification_area/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 013273665127bc7303f06616193aea158b7e9d5d
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jul 25 12:19:14 2023 +0200

    Update org.mate.panel.object schema descriptions
    
    It was listing outdated values, and missing new ones.
    
    Fixes #1132.

 data/org.mate.panel.object.gschema.xml.in | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 8943e386b010b2913d686410a5f968b34db390b0
Author: Luke from DC <lukefromdc@hushmail.com>
Date:   Sun Jul 23 09:57:41 2023 +0000

    button-widget.c: replace tabs with 4 spaces
    
    
    - button-widget.c: replace tabs with 4 spaces and reformat as necessary
    - button-widget.h: tab to 4 spaces
    - button-widget.c: adjust indents and bracket style
    
    ---------
    
    Co-authored-by: raveit65 <mate@raveit.de>

 mate-panel/button-widget.c | 1173 ++++++++++++++++++++++----------------------
 mate-panel/button-widget.h |   40 +-
 2 files changed, 607 insertions(+), 606 deletions(-)

commit 3793adb1149d4ed55e26de4b2f01c06782fee3b3
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Jul 20 22:24:49 2023 -0400

    Wayland: Fix blurry rendering of panel launcher icons
    
    *Custom icons not findable by gtk_icon_theme_load_surface are still blurry

 mate-panel/button-widget.c | 83 +++++++++++++++++++++++++++-------------------
 1 file changed, 49 insertions(+), 34 deletions(-)

commit fa9beeef701038a78b8de638aebed3cfcacdd7fd
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Jul 20 01:31:48 2023 -0400

    Wayland: ensure tasklist buttons get widget name
    
      *we need this for theming

 applets/wncklet/wayland-backend.c | 1 +
 1 file changed, 1 insertion(+)

commit 0f5f3a8dcf3719cf43d03f71acc171955178e78a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jul 19 22:12:39 2023 -0400

    wayland: stop tasklist overflowing over other applets
    
    *allows up to 20 window buttons on a half screen width window list before overflow

 applets/wncklet/wayland-backend.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit e8cd95789810bc9efb7961f553e99f0c2eaa0cd0
Author: Luke from DC <lukefromdc@hushmail.com>
Date:   Tue Jul 11 10:02:50 2023 +0000

    Clock applet/wayland: position calendar window same as in x11
    
    * Clock applet/wayland: position calendar window same as in x11
    
    - Wayland/clock: fix calendar window rendering when moved
    Ensure the calendar window cannot be "stretched" across the screen
    if the panel or the applet is moved while the calendar is showing

 .build.yml                |   2 +-
 applets/clock/Makefile.am |   8 ++
 applets/clock/clock.c     | 258 ++++++++++++++++++++++++++++++++--------------
 3 files changed, 190 insertions(+), 78 deletions(-)

commit 5a7f770082568453f3a5f271a274156f08352101
Author: Brahmajit Das <brahmajit.xyz@gmail.com>
Date:   Mon Jun 26 21:37:46 2023 +0530

    libmate-panel-applet/Makefile.am: Fix build with gettext 0.22
    
    With gettext-0.22 we are getting build errors like:
    /usr/bin/msgfmt --desktop --keyword Name --keyword Description --template org.mate.panel.TestApplet.mate-panel-applet.desktop.in -d ../po -o org.mate.panel.TestApplet.mate-panel-applet
    /usr/bin/msgfmt: no input file should be given if --desktop and -d are specified
    Try '/usr/bin/msgfmt --help' for more information.
    make[3]: *** [Makefile:1035: org.mate.panel.TestApplet.mate-panel-applet] Error 1
    make[3]: *** Waiting for unfinished jobs....
    
    Bug: https://bugs.gentoo.org/908877
    Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>

 libmate-panel-applet/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 54786e2663840035f61840205735e16c0dbe5214
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Jun 28 15:18:47 2023 +0200

    Fix distribution of applet service files
    
    Fix distribution of the applet service files sources when building from
    an in-process-configured build.  This fixes `make distcheck` and
    tarballs in builds configured with `--with-in-process-applets=all` (or
    actually any in-process applet).
    
    The issue was that the .service.in file was referenced indirectly in
    EXTRA_DIST, and the variable listed there was only filled in a
    conditional.  Automake is not able to resolve this and see it still
    should distribute the reference of that variable, even if set
    conditionally.  Fix this by always setting the variable properly, even
    if it's only used for out-of-process builds.

 applets/clock/Makefile.am             | 2 +-
 applets/fish/Makefile.am              | 2 +-
 applets/notification_area/Makefile.am | 2 +-
 applets/wncklet/Makefile.am           | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

commit e61dad01e852d7913f4c9b3dae508088e3e7b287
Author: Luke from DC <lukefromdc@hushmail.com>
Date:   Thu Jun 15 18:30:56 2023 +0000

    Wayland, Tray applet: allow in-process applet to load, using SNI only (#1372)
    
    *We cannot load the legacy system tray in Wayland as that requires xembed.
    *We CAN load the status-notifier (SNI support)
    *Wayland needs us to explicitly set gtk_button_set_always_show_image to TRUE
    *Wayland needs us to explicitly set gtk_image_menu_item_set_always_show_image to TRUE

 applets/notification_area/main.c                           |  5 -----
 applets/notification_area/na-grid.c                        | 14 +++++++++-----
 ....NotificationAreaApplet.mate-panel-applet.desktop.in.in |  2 +-
 .../notification_area/status-notifier/sn-dbus-menu-item.c  |  1 +
 applets/notification_area/status-notifier/sn-item.c        |  1 +
 5 files changed, 12 insertions(+), 11 deletions(-)

commit 4350e7e839ec1ecd2eb063a2e250b843162ee418
Author: Luke from DC <lukefromdc@hushmail.com>
Date:   Mon May 22 15:41:48 2023 +0000

    Wayland, hidpi: do not scale buttons in wayland (#1370)
    
    Otherwise they are rendered double-sized and offset. Wayland apparently handles this for us

 mate-panel/button-widget.c | 44 ++++++++++++++++++++++++++++++++++++--------
 1 file changed, 36 insertions(+), 8 deletions(-)

commit 277418cea7b011520df9759301d416cd51709564
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Wed May 17 06:56:21 2023 +0300

    tell dconf-edit about relocatable schemas (#1355)
    
    * tell dconf-edit about relocatable schemas
    
    * self fix for incorrect and duplicated records
    
    remove duplicated schemas for currect path
    remove incorrect schemas for current path
    
    * remove clock applet hack
    
    * expose mate_panel_applet_settings_new to introspection
    
    add "transfer full" annotation to make this method available throught
    introspection

 applets/clock/clock.c                              | 10 ---
 libmate-panel-applet/mate-panel-applet-gsettings.c | 82 ++++++++++++++++++++++
 libmate-panel-applet/mate-panel-applet-gsettings.h |  8 +++
 mate-panel/panel-profile.c                         | 47 +++++++++++++
 4 files changed, 137 insertions(+), 10 deletions(-)

commit 1a16bc12de9b45637445ca53ec81cfe0a26c831f
Author: Consolatis <35009135+Consolatis@users.noreply.github.com>
Date:   Wed May 17 05:51:34 2023 +0200

    applets/wncklet/wayland-backend: Add basic icon support (#1275)
    
    * applets/wncklet/wayland-backend: add basic icon support
    
    This commit uses GTK to find an icon with the same name as the wayland app_id.
    A more complete implementation would need to search for .desktop files matching the app_id, get the icon name and finally use GTK to find the proper icon based on that name.
    
    * applets/wncklet/wayland-backend: add more complete icon support
    
    * applets/wncklet/wayland-backend: code style fixup

 applets/wncklet/wayland-backend.c | 33 +++++++++++++++++++++++++++++++--
 1 file changed, 31 insertions(+), 2 deletions(-)

commit 1ce4fb29541195e2c305843d1ead0ff040c309be
Author: Consolatis <35009135+Consolatis@users.noreply.github.com>
Date:   Wed May 17 05:41:40 2023 +0200

    applets/wncklet/wayland-backend: Add basic context menu (#1276)
    
    * applets/wncklet/wayland-backend: Add basic context menu for (un)maximize, (un)minimize and close
    
    * applets/wncklet/wayland-backend: code style fixup

 applets/wncklet/wayland-backend.c | 115 ++++++++++++++++++++++++++++++++++++--
 1 file changed, 110 insertions(+), 5 deletions(-)

commit 0e97b7e653a70a25d6c6e8504cc011286cf94ee3
Author: Matthias Reis <20595601+mattarroz@users.noreply.github.com>
Date:   Sun May 7 08:24:34 2023 +0200

    panel-run-dialog: Add accelerator keys for "list of known applications" (#1359)
    
    * panel-run-dialog: Add accelerator keys for "list of known applications" in panel run dialog, display modifier keys by using GtkCellRendererAccel
    
    * fixup! panel-run-dialog: Add accelerator keys for "list of known applications" in panel run dialog, display modifier keys by using GtkCellRendererAccel
    
    * fixup! fixup! panel-run-dialog: Add accelerator keys for "list of known applications" in panel run dialog, display modifier keys by using GtkCellRendererAccel
    
    * fixup! fixup! fixup! panel-run-dialog: Add accelerator keys for "list of known applications" in panel run dialog, display modifier keys by using GtkCellRendererAccel
    
    * fixup! fixup! fixup! fixup! panel-run-dialog: Add accelerator keys for "list of known applications" in panel run dialog, display modifier keys by using GtkCellRendererAccel

 mate-panel/panel-run-dialog.c | 154 ++++++++++++++++++++++++++++++++++++------
 1 file changed, 135 insertions(+), 19 deletions(-)

commit 14c840524317354aeaecd1b781954b749e5952b7
Author: raveit65 <mate@raveit.de>
Date:   Tue Apr 4 22:34:47 2023 +0200

    release 1.27.1

 NEWS         | 29 +++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 30 insertions(+), 1 deletion(-)

commit 201580576887ecaf416db4ab4584c279cb194e04
Author: raveit65 <mate@raveit.de>
Date:   Tue Apr 4 22:21:13 2023 +0200

    tx: sync with transifex

 help/mate-clock/af/af.po                   |   2 +-
 help/mate-clock/am/am.po                   |   2 +-
 help/mate-clock/ar/ar.po                   |   2 +-
 help/mate-clock/as/as.po                   |   2 +-
 help/mate-clock/ast/ast.po                 |   2 +-
 help/mate-clock/az/az.po                   |   2 +-
 help/mate-clock/be/be.po                   |   2 +-
 help/mate-clock/bg/bg.po                   |   2 +-
 help/mate-clock/bn/bn.po                   |   2 +-
 help/mate-clock/bn_IN/bn_IN.po             |   2 +-
 help/mate-clock/br/br.po                   |   2 +-
 help/mate-clock/bs/bs.po                   |   2 +-
 help/mate-clock/ca/ca.po                   |   2 +-
 help/mate-clock/ca@valencia/ca@valencia.po |   2 +-
 help/mate-clock/cmn/cmn.po                 |   2 +-
 help/mate-clock/crh/crh.po                 |   2 +-
 help/mate-clock/cs/cs.po                   |   2 +-
 help/mate-clock/cy/cy.po                   |   2 +-
 help/mate-clock/da/da.po                   |   2 +-
 help/mate-clock/de/de.po                   |   7 +-
 help/mate-clock/dz/dz.po                   |   2 +-
 help/mate-clock/el/el.po                   |   2 +-
 help/mate-clock/en_AU/en_AU.po             |   2 +-
 help/mate-clock/en_CA/en_CA.po             |   2 +-
 help/mate-clock/en_GB/en_GB.po             | 183 +++++++++++++++++++++--------
 help/mate-clock/eo/eo.po                   |   2 +-
 help/mate-clock/es/es.po                   |   2 +-
 help/mate-clock/es_AR/es_AR.po             |   2 +-
 help/mate-clock/es_CL/es_CL.po             |   2 +-
 help/mate-clock/es_CO/es_CO.po             |   2 +-
 help/mate-clock/es_PR/es_PR.po             |   2 +-
 help/mate-clock/et/et.po                   |   2 +-
 help/mate-clock/eu/eu.po                   |   2 +-
 help/mate-clock/fa/fa.po                   |   2 +-
 help/mate-clock/fi/fi.po                   |   2 +-
 help/mate-clock/fr/fr.po                   |   2 +-
 help/mate-clock/fur/fur.po                 |   2 +-
 help/mate-clock/fy/fy.po                   |   2 +-
 help/mate-clock/ga/ga.po                   |   2 +-
 help/mate-clock/gl/gl.po                   |   2 +-
 help/mate-clock/gu/gu.po                   |   2 +-
 help/mate-clock/ha/ha.po                   |   2 +-
 help/mate-clock/he/he.po                   |   6 +-
 help/mate-clock/hi/hi.po                   |   2 +-
 help/mate-clock/hr/hr.po                   |   2 +-
 help/mate-clock/hu/hu.po                   |   2 +-
 help/mate-clock/hy/hy.po                   |   2 +-
 help/mate-clock/id/id.po                   |   2 +-
 help/mate-clock/ie/ie.po                   |   2 +-
 help/mate-clock/ig/ig.po                   |   2 +-
 help/mate-clock/is/is.po                   |   2 +-
 help/mate-clock/it/it.po                   |   2 +-
 help/mate-clock/ja/ja.po                   |   6 +-
 help/mate-clock/ka/ka.po                   |   2 +-
 help/mate-clock/kab/kab.po                 |   2 +-
 help/mate-clock/kk/kk.po                   |   2 +-
 help/mate-clock/kn/kn.po                   |   2 +-
 help/mate-clock/ko/ko.po                   |   6 +-
 help/mate-clock/ku/ku.po                   |   2 +-
 help/mate-clock/ky/ky.po                   |   2 +-
 help/mate-clock/lt/lt.po                   |   2 +-
 help/mate-clock/lv/lv.po                   |   2 +-
 help/mate-clock/mai/mai.po                 |   2 +-
 help/mate-clock/mg/mg.po                   |   2 +-
 help/mate-clock/mk/mk.po                   |   2 +-
 help/mate-clock/ml/ml.po                   |   2 +-
 help/mate-clock/mn/mn.po                   |   2 +-
 help/mate-clock/mr/mr.po                   |   2 +-
 help/mate-clock/ms/ms.po                   |   2 +-
 help/mate-clock/nb/nb.po                   |   2 +-
 help/mate-clock/nds/nds.po                 |   2 +-
 help/mate-clock/ne/ne.po                   |   2 +-
 help/mate-clock/nl/nl.po                   |   2 +-
 help/mate-clock/nn/nn.po                   |   2 +-
 help/mate-clock/nso/nso.po                 |   2 +-
 help/mate-clock/oc/oc.po                   |   2 +-
 help/mate-clock/or/or.po                   |   2 +-
 help/mate-clock/pa/pa.po                   |   2 +-
 help/mate-clock/pl/pl.po                   |   2 +-
 help/mate-clock/ps/ps.po                   |   2 +-
 help/mate-clock/pt/pt.po                   |   2 +-
 help/mate-clock/pt_BR/pt_BR.po             |   2 +-
 help/mate-clock/ro/ro.po                   |   2 +-
 help/mate-clock/ru/ru.po                   |   6 +-
 help/mate-clock/si/si.po                   |   2 +-
 help/mate-clock/sk/sk.po                   |   2 +-
 help/mate-clock/sl/sl.po                   |   2 +-
 help/mate-clock/sq/sq.po                   |   2 +-
 help/mate-clock/sr/sr.po                   |   2 +-
 help/mate-clock/sr@latin/sr@latin.po       |   2 +-
 help/mate-clock/sv/sv.po                   |   2 +-
 help/mate-clock/ta/ta.po                   |   2 +-
 help/mate-clock/te/te.po                   |   2 +-
 help/mate-clock/th/th.po                   |   2 +-
 help/mate-clock/tr/tr.po                   |   2 +-
 help/mate-clock/ug/ug.po                   |   2 +-
 help/mate-clock/uk/uk.po                   |   2 +-
 help/mate-clock/ur/ur.po                   |   2 +-
 help/mate-clock/uz/uz.po                   |   2 +-
 help/mate-clock/vi/vi.po                   |   2 +-
 help/mate-clock/wa/wa.po                   |   2 +-
 help/mate-clock/xh/xh.po                   |   2 +-
 help/mate-clock/yo/yo.po                   |   2 +-
 help/mate-clock/zh-Hans/zh-Hans.po         |   2 +-
 help/mate-clock/zh_CN/zh_CN.po             |   7 +-
 help/mate-clock/zh_HK/zh_HK.po             |   2 +-
 help/mate-clock/zh_TW/zh_TW.po             |   2 +-
 help/mate-clock/zu/zu.po                   |   2 +-
 help/mate-fish/af/af.po                    |   2 +-
 help/mate-fish/am/am.po                    |   2 +-
 help/mate-fish/an/an.po                    |   2 +-
 help/mate-fish/ar/ar.po                    |   2 +-
 help/mate-fish/as/as.po                    |   2 +-
 help/mate-fish/ast/ast.po                  |   2 +-
 help/mate-fish/az/az.po                    |   2 +-
 help/mate-fish/be/be.po                    |   2 +-
 help/mate-fish/bg/bg.po                    |   2 +-
 help/mate-fish/bn/bn.po                    |   2 +-
 help/mate-fish/bn_IN/bn_IN.po              |   2 +-
 help/mate-fish/br/br.po                    |   2 +-
 help/mate-fish/bs/bs.po                    |   2 +-
 help/mate-fish/ca/ca.po                    |   2 +-
 help/mate-fish/ca@valencia/ca@valencia.po  |   2 +-
 help/mate-fish/cmn/cmn.po                  |   2 +-
 help/mate-fish/crh/crh.po                  |   2 +-
 help/mate-fish/cs/cs.po                    |   2 +-
 help/mate-fish/cy/cy.po                    |   2 +-
 help/mate-fish/da/da.po                    |   2 +-
 help/mate-fish/de/de.po                    |   7 +-
 help/mate-fish/dz/dz.po                    |   2 +-
 help/mate-fish/el/el.po                    |   2 +-
 help/mate-fish/en_AU/en_AU.po              |   2 +-
 help/mate-fish/en_CA/en_CA.po              |   2 +-
 help/mate-fish/en_GB/en_GB.po              |  93 ++++++++++++---
 help/mate-fish/eo/eo.po                    |   2 +-
 help/mate-fish/es/es.po                    |   2 +-
 help/mate-fish/es_AR/es_AR.po              |   2 +-
 help/mate-fish/es_CL/es_CL.po              |   2 +-
 help/mate-fish/es_CO/es_CO.po              |   2 +-
 help/mate-fish/es_ES/es_ES.po              |   2 +-
 help/mate-fish/es_MX/es_MX.po              |   2 +-
 help/mate-fish/es_PR/es_PR.po              |   2 +-
 help/mate-fish/et/et.po                    |   2 +-
 help/mate-fish/eu/eu.po                    |   2 +-
 help/mate-fish/fa/fa.po                    |   2 +-
 help/mate-fish/fi/fi.po                    |   2 +-
 help/mate-fish/fr/fr.po                    |   2 +-
 help/mate-fish/frp/frp.po                  |   2 +-
 help/mate-fish/fur/fur.po                  |   2 +-
 help/mate-fish/fy/fy.po                    |   2 +-
 help/mate-fish/ga/ga.po                    |   2 +-
 help/mate-fish/gl/gl.po                    |   2 +-
 help/mate-fish/gu/gu.po                    |   2 +-
 help/mate-fish/ha/ha.po                    |   2 +-
 help/mate-fish/he/he.po                    |   6 +-
 help/mate-fish/hi/hi.po                    |   2 +-
 help/mate-fish/hr/hr.po                    |   2 +-
 help/mate-fish/hu/hu.po                    |   2 +-
 help/mate-fish/hy/hy.po                    |   2 +-
 help/mate-fish/ia/ia.po                    |   2 +-
 help/mate-fish/id/id.po                    |   2 +-
 help/mate-fish/ie/ie.po                    |   2 +-
 help/mate-fish/ig/ig.po                    |   2 +-
 help/mate-fish/is/is.po                    |   2 +-
 help/mate-fish/it/it.po                    |   2 +-
 help/mate-fish/ja/ja.po                    |   6 +-
 help/mate-fish/jv/jv.po                    |   2 +-
 help/mate-fish/ka/ka.po                    |   2 +-
 help/mate-fish/kab/kab.po                  |   2 +-
 help/mate-fish/kk/kk.po                    |   2 +-
 help/mate-fish/km/km.po                    |   2 +-
 help/mate-fish/kn/kn.po                    |   2 +-
 help/mate-fish/ko/ko.po                    |   6 +-
 help/mate-fish/ku/ku.po                    |   2 +-
 help/mate-fish/ku_IQ/ku_IQ.po              |   2 +-
 help/mate-fish/ky/ky.po                    |   2 +-
 help/mate-fish/la/la.po                    |   2 +-
 help/mate-fish/lt/lt.po                    |   2 +-
 help/mate-fish/lv/lv.po                    |   2 +-
 help/mate-fish/mai/mai.po                  |   2 +-
 help/mate-fish/mg/mg.po                    |   2 +-
 help/mate-fish/mi/mi.po                    |   2 +-
 help/mate-fish/mk/mk.po                    |   2 +-
 help/mate-fish/ml/ml.po                    |   2 +-
 help/mate-fish/mn/mn.po                    |   2 +-
 help/mate-fish/mr/mr.po                    |   2 +-
 help/mate-fish/ms/ms.po                    |   2 +-
 help/mate-fish/nb/nb.po                    |   2 +-
 help/mate-fish/nds/nds.po                  |   2 +-
 help/mate-fish/ne/ne.po                    |   2 +-
 help/mate-fish/nl/nl.po                    |   2 +-
 help/mate-fish/nn/nn.po                    |   2 +-
 help/mate-fish/nso/nso.po                  |   2 +-
 help/mate-fish/oc/oc.po                    |   2 +-
 help/mate-fish/or/or.po                    |   2 +-
 help/mate-fish/pa/pa.po                    |   2 +-
 help/mate-fish/pl/pl.po                    |   2 +-
 help/mate-fish/ps/ps.po                    |   2 +-
 help/mate-fish/pt/pt.po                    |   2 +-
 help/mate-fish/pt_BR/pt_BR.po              |   2 +-
 help/mate-fish/ro/ro.po                    |   2 +-
 help/mate-fish/ru/ru.po                    |   6 +-
 help/mate-fish/si/si.po                    |   2 +-
 help/mate-fish/sk/sk.po                    |   2 +-
 help/mate-fish/sl/sl.po                    |   2 +-
 help/mate-fish/sq/sq.po                    |   2 +-
 help/mate-fish/sr/sr.po                    |   2 +-
 help/mate-fish/sr@latin/sr@latin.po        |   2 +-
 help/mate-fish/sv/sv.po                    |   2 +-
 help/mate-fish/ta/ta.po                    |   2 +-
 help/mate-fish/te/te.po                    |   2 +-
 help/mate-fish/th/th.po                    |   2 +-
 help/mate-fish/tk/tk.po                    |   2 +-
 help/mate-fish/tr/tr.po                    |   2 +-
 help/mate-fish/ug/ug.po                    |   2 +-
 help/mate-fish/uk/uk.po                    |   2 +-
 help/mate-fish/ur/ur.po                    |   2 +-
 help/mate-fish/uz/uz.po                    |   2 +-
 help/mate-fish/vi/vi.po                    |   2 +-
 help/mate-fish/wa/wa.po                    |   2 +-
 help/mate-fish/xh/xh.po                    |   2 +-
 help/mate-fish/yo/yo.po                    |   2 +-
 help/mate-fish/zh-Hans/zh-Hans.po          |   2 +-
 help/mate-fish/zh_CN/zh_CN.po              |   2 +-
 help/mate-fish/zh_HK/zh_HK.po              |   2 +-
 help/mate-fish/zh_TW/zh_TW.po              |   2 +-
 help/mate-fish/zu/zu.po                    |   2 +-
 po/af.po                                   |   2 +-
 po/am.po                                   |   2 +-
 po/ar.po                                   |   2 +-
 po/as.po                                   |   2 +-
 po/ast.po                                  |   2 +-
 po/az.po                                   |   2 +-
 po/be.po                                   |   2 +-
 po/bg.po                                   |   2 +-
 po/bn.po                                   |   2 +-
 po/bn_IN.po                                |   2 +-
 po/br.po                                   |   2 +-
 po/bs.po                                   |   2 +-
 po/ca.po                                   |   2 +-
 po/ca@valencia.po                          |   2 +-
 po/cmn.po                                  |   2 +-
 po/crh.po                                  |   2 +-
 po/cs.po                                   |  20 +++-
 po/cy.po                                   |   2 +-
 po/da.po                                   |   2 +-
 po/de.po                                   |   2 +-
 po/dz.po                                   |   2 +-
 po/el.po                                   |   2 +-
 po/en_AU.po                                |   2 +-
 po/en_CA.po                                |   2 +-
 po/en_GB.po                                |  20 +++-
 po/eo.po                                   |   2 +-
 po/es.po                                   |   2 +-
 po/es_AR.po                                |   2 +-
 po/es_CL.po                                |   2 +-
 po/es_CO.po                                |   2 +-
 po/es_CR.po                                |   2 +-
 po/es_DO.po                                |   2 +-
 po/es_EC.po                                |   2 +-
 po/es_ES.po                                |   2 +-
 po/es_MX.po                                |   2 +-
 po/es_NI.po                                |   2 +-
 po/es_PA.po                                |   2 +-
 po/es_PE.po                                |   2 +-
 po/es_PR.po                                |   2 +-
 po/es_SV.po                                |   2 +-
 po/es_UY.po                                |   2 +-
 po/es_VE.po                                |   2 +-
 po/et.po                                   |   2 +-
 po/eu.po                                   |   2 +-
 po/fa.po                                   |   2 +-
 po/fi.po                                   |   2 +-
 po/fr.po                                   |   2 +-
 po/fr_CA.po                                |   2 +-
 po/frp.po                                  |   2 +-
 po/fur.po                                  |   2 +-
 po/fy.po                                   |   2 +-
 po/ga.po                                   |   2 +-
 po/gl.po                                   |   2 +-
 po/gu.po                                   |   2 +-
 po/ha.po                                   |   2 +-
 po/he.po                                   |   4 +-
 po/hi.po                                   |   2 +-
 po/hr.po                                   |   2 +-
 po/hu.po                                   |   2 +-
 po/hy.po                                   |   2 +-
 po/ia.po                                   |   2 +-
 po/id.po                                   |  20 +++-
 po/ie.po                                   |   2 +-
 po/ig.po                                   |   2 +-
 po/is.po                                   |   2 +-
 po/it.po                                   |   2 +-
 po/ja.po                                   |  22 ++--
 po/jv.po                                   |   2 +-
 po/ka.po                                   |  18 +--
 po/kab.po                                  |   2 +-
 po/kk.po                                   |   2 +-
 po/kn.po                                   |   2 +-
 po/ko.po                                   |   4 +-
 po/ku.po                                   |   2 +-
 po/ku_IQ.po                                |   2 +-
 po/ky.po                                   |   2 +-
 po/la.po                                   |   2 +-
 po/li.po                                   |   2 +-
 po/lt.po                                   |   2 +-
 po/lv.po                                   |   2 +-
 po/mai.po                                  |   2 +-
 po/mg.po                                   |   2 +-
 po/mi.po                                   |   2 +-
 po/mk.po                                   |   2 +-
 po/ml.po                                   |   2 +-
 po/mn.po                                   |   2 +-
 po/mr.po                                   |   2 +-
 po/ms.po                                   |   2 +-
 po/nb.po                                   |  17 ++-
 po/nds.po                                  |  12 +-
 po/ne.po                                   |   2 +-
 po/nl.po                                   |  20 +++-
 po/nn.po                                   |   2 +-
 po/nso.po                                  |   2 +-
 po/oc.po                                   |  14 +--
 po/or.po                                   |   2 +-
 po/pa.po                                   |   2 +-
 po/pl.po                                   |   2 +-
 po/pms.po                                  |   2 +-
 po/ps.po                                   |   2 +-
 po/pt.po                                   |   2 +-
 po/pt_BR.po                                |   2 +-
 po/ro.po                                   |   2 +-
 po/ru.po                                   |  19 ++-
 po/rw.po                                   |   2 +-
 po/sc.po                                   |   2 +-
 po/si.po                                   |   2 +-
 po/sk.po                                   |   2 +-
 po/sl.po                                   |   2 +-
 po/sq.po                                   |   2 +-
 po/sr.po                                   |   2 +-
 po/sr@latin.po                             |   2 +-
 po/sv.po                                   |   2 +-
 po/ta.po                                   |   2 +-
 po/te.po                                   |   2 +-
 po/th.po                                   |   2 +-
 po/tk.po                                   |   2 +-
 po/tr.po                                   |   2 +-
 po/tt.po                                   |   2 +-
 po/ug.po                                   |   2 +-
 po/uk.po                                   |   2 +-
 po/ur.po                                   |   2 +-
 po/uz.po                                   |   2 +-
 po/vi.po                                   |   2 +-
 po/wa.po                                   |   2 +-
 po/xh.po                                   |   2 +-
 po/yi.po                                   |   2 +-
 po/yo.po                                   |   2 +-
 po/zh_CN.po                                |   2 +-
 po/zh_HK.po                                |   2 +-
 po/zh_TW.po                                |   2 +-
 po/zu.po                                   |   2 +-
 359 files changed, 707 insertions(+), 496 deletions(-)

commit 061193aca2309da9caeecf228857631a40739d9a
Author: Gordon Norman Squash <gordsqsh@protonmail.com>
Date:   Fri Mar 17 21:06:33 2023 -0400

    Clock Applet: Update date/time and weather after resume from sleep mode
    
    Before this commit, the Clock Applet was unaware of when the system
    resumed from sleep mode (e.g. suspend or hibernate).  This meant that,
    if the user suspended the system and then woke it up some time later,
    the clock might not show the real current time, but instead would continue
    to show the time at which the system was suspended for up to a minute
    after the system woke up.  This could be confusing to the user if they
    peered up at the clock immediately after, say, opening their laptop lid.
    
    This commit connects to ConsoleKit or (if available) systemd-logind via
    D-Bus, and listens for a signal that indicates when the system wakes up
    from sleep mode.  When the system does wake up, the Clock Applet updates
    the date/time immediately, and also updates all the weather/temperature
    readings if possible.
    
    Note that if logind is missing, ConsoleKit2 is required for this feature
    to work; the original ConsoleKit lacked the signal required to implement
    this feature.  This should not be a problem since it is unlikely that
    anyone would even consider using the original ConsoleKit in this day and
    age.

 applets/clock/clock.c | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 103 insertions(+)

commit e504576092e499bdc5ecb14fc8b99db74ee9382d
Author: Nik Soggia <nsoggia@users.noreply.github.com>
Date:   Sat Feb 11 11:08:06 2023 +0100

    Update window-list.c
    
    Fix for "no option to disable middle-click to close in window list"
    https://github.com/mate-desktop/mate-panel/issues/962#issuecomment-1418934577

 applets/wncklet/window-list.c | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

commit efa34110e4c40950650bf035152d7f94ec2ba89e
Author: Nik Soggia <nsoggia@users.noreply.github.com>
Date:   Sat Feb 11 11:02:56 2023 +0100

    Update window-list.ui
    
    Fix for "no option to disable middle-click to close in window list"
    https://github.com/mate-desktop/mate-panel/issues/962#issuecomment-141893457

 applets/wncklet/window-list.ui | 60 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 59 insertions(+), 1 deletion(-)

commit 99ad8a5e42c5973cdee42c86c7fbd5b1a3ebb081
Author: Nik Soggia <nsoggia@users.noreply.github.com>
Date:   Sat Feb 11 11:00:30 2023 +0100

    Update org.mate.panel.applet.window-list.gschema.xml.in
    
    Fix for "no option to disable middle-click to close in window list"
    https://github.com/mate-desktop/mate-panel/issues/962#issuecomment-1418934577

 applets/wncklet/org.mate.panel.applet.window-list.gschema.xml.in | 5 +++++
 1 file changed, 5 insertions(+)

commit 28300f782fcb5849719260ec3fb2e998d02f6596
Author: Balazs Endresz <balazs.endresz@gmail.com>
Date:   Wed Jan 11 13:18:34 2023 +0100

    wncklet: center previews when scaling is enabled

 applets/wncklet/window-list.c | 22 ++++++----------------
 1 file changed, 6 insertions(+), 16 deletions(-)

commit 5240fdc4a7efba5da151ac257e8b327d494a8845
Author: Balazs Endresz <balazs.endresz@gmail.com>
Date:   Sat Jan 7 19:57:28 2023 +0100

    wncklet: fix incorrect preview positions for multiple monitors

 applets/wncklet/window-list.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit c7643edf77c5871b14e2196f347385a0d1557e04
Author: Balazs Endresz <balazs.endresz@gmail.com>
Date:   Mon Dec 26 15:45:14 2022 +0100

    wncklet: disable preview centering when scaling is enabled

 applets/wncklet/window-list.c | 29 +++++++++++++++++++++++------
 1 file changed, 23 insertions(+), 6 deletions(-)

commit 2b3549c8670d2390ca46f38320afe7076e7b1281
Author: Balazs Endresz <balazs.endresz@gmail.com>
Date:   Fri Dec 23 15:49:23 2022 +0100

    wncklet: center preview windows when grouping is enabled

 applets/wncklet/window-list.c | 79 ++++++++++++++++++++++++++++++++-----------
 1 file changed, 59 insertions(+), 20 deletions(-)

commit 43837da1f4c25438381a6efb26620c4e7baf5598
Author: Balazs Endresz <balazs.endresz@gmail.com>
Date:   Sat Nov 19 21:38:31 2022 +0100

    wncklet: center preview windows

 applets/wncklet/window-list.c | 63 ++++++++++++++++++++++++++++++++++---------
 1 file changed, 51 insertions(+), 12 deletions(-)

commit 45575725d197ade8c1bad0fb4df0dd492f1b3a93
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Nov 9 21:53:28 2022 -0500

    panel-menu-button: comment out wayland debugging message
    leave the code in place so it can be uncommented and used for further work on wayland

 mate-panel/panel-menu-button.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit cb47731b39b63c54740e78c46aefdd3c01b33261
Author: raveit65 <mate@raveit.de>
Date:   Fri Dec 2 15:11:23 2022 +0100

    windows-list.ui: lower gtk3 required version

 applets/wncklet/window-list.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b07ece6648b1daafb99dbf29ac5425a0d565a613
Author: mbkma <johannes.unruh@fau.de>
Date:   Sat Nov 5 15:17:14 2022 +0100

    tx: sync with transifex

 help/mate-clock/af/af.po                   |    2 +-
 help/mate-clock/am/am.po                   |    2 +-
 help/mate-clock/ar/ar.po                   |    2 +-
 help/mate-clock/as/as.po                   |    2 +-
 help/mate-clock/ast/ast.po                 |    2 +-
 help/mate-clock/az/az.po                   |    2 +-
 help/mate-clock/be/be.po                   |    2 +-
 help/mate-clock/bg/bg.po                   |    2 +-
 help/mate-clock/bn/bn.po                   |    2 +-
 help/mate-clock/bn_IN/bn_IN.po             |    2 +-
 help/mate-clock/br/br.po                   |    2 +-
 help/mate-clock/bs/bs.po                   |    2 +-
 help/mate-clock/ca/ca.po                   |    4 +-
 help/mate-clock/ca@valencia/ca@valencia.po |    2 +-
 help/mate-clock/cmn/cmn.po                 |    2 +-
 help/mate-clock/crh/crh.po                 |    2 +-
 help/mate-clock/cs/cs.po                   |    2 +-
 help/mate-clock/cy/cy.po                   |    2 +-
 help/mate-clock/da/da.po                   |    2 +-
 help/mate-clock/de/de.po                   |    2 +-
 help/mate-clock/dz/dz.po                   |    2 +-
 help/mate-clock/el/el.po                   |    2 +-
 help/mate-clock/en_AU/en_AU.po             |    2 +-
 help/mate-clock/en_CA/en_CA.po             |    2 +-
 help/mate-clock/en_GB/en_GB.po             |   18 +-
 help/mate-clock/eo/eo.po                   |    2 +-
 help/mate-clock/es/es.po                   |    4 +-
 help/mate-clock/es_AR/es_AR.po             |    4 +-
 help/mate-clock/es_CL/es_CL.po             |    6 +-
 help/mate-clock/es_CO/es_CO.po             |    4 +-
 help/mate-clock/es_PR/es_PR.po             |    4 +-
 help/mate-clock/et/et.po                   |    2 +-
 help/mate-clock/eu/eu.po                   |    2 +-
 help/mate-clock/fa/fa.po                   |    2 +-
 help/mate-clock/fi/fi.po                   |    2 +-
 help/mate-clock/fr/fr.po                   |    4 +-
 help/mate-clock/fur/fur.po                 |    2 +-
 help/mate-clock/fy/fy.po                   |    2 +-
 help/mate-clock/ga/ga.po                   |    2 +-
 help/mate-clock/gl/gl.po                   |    4 +-
 help/mate-clock/gu/gu.po                   |    2 +-
 help/mate-clock/ha/ha.po                   |    2 +-
 help/mate-clock/he/he.po                   |    2 +-
 help/mate-clock/hi/hi.po                   |    2 +-
 help/mate-clock/hr/hr.po                   |    2 +-
 help/mate-clock/hu/hu.po                   |    2 +-
 help/mate-clock/hy/hy.po                   |    2 +-
 help/mate-clock/id/id.po                   |    2 +-
 help/mate-clock/ie/ie.po                   |    2 +-
 help/mate-clock/ig/ig.po                   |    2 +-
 help/mate-clock/is/is.po                   |    2 +-
 help/mate-clock/it/it.po                   |   91 +-
 help/mate-clock/ja/ja.po                   |    2 +-
 help/mate-clock/ka/ka.po                   |    2 +-
 help/mate-clock/kab/kab.po                 |    2 +-
 help/mate-clock/kk/kk.po                   |    2 +-
 help/mate-clock/kn/kn.po                   |    2 +-
 help/mate-clock/ko/ko.po                   |    8 +-
 help/mate-clock/ku/ku.po                   |    2 +-
 help/mate-clock/ky/ky.po                   |    2 +-
 help/mate-clock/lt/lt.po                   |    2 +-
 help/mate-clock/lv/lv.po                   |    2 +-
 help/mate-clock/mai/mai.po                 |    2 +-
 help/mate-clock/mg/mg.po                   |    2 +-
 help/mate-clock/mk/mk.po                   |    2 +-
 help/mate-clock/ml/ml.po                   |    2 +-
 help/mate-clock/mn/mn.po                   |    2 +-
 help/mate-clock/mr/mr.po                   |    2 +-
 help/mate-clock/ms/ms.po                   |    2 +-
 help/mate-clock/nb/nb.po                   |    2 +-
 help/mate-clock/nds/nds.po                 |    2 +-
 help/mate-clock/ne/ne.po                   |    2 +-
 help/mate-clock/nl/nl.po                   |    2 +-
 help/mate-clock/nn/nn.po                   |    2 +-
 help/mate-clock/nso/nso.po                 |    2 +-
 help/mate-clock/oc/oc.po                   |    2 +-
 help/mate-clock/or/or.po                   |    2 +-
 help/mate-clock/pa/pa.po                   |    2 +-
 help/mate-clock/pl/pl.po                   |    4 +-
 help/mate-clock/ps/ps.po                   |    2 +-
 help/mate-clock/pt/pt.po                   |    4 +-
 help/mate-clock/pt_BR/pt_BR.po             |   10 +-
 help/mate-clock/ro/ro.po                   |    2 +-
 help/mate-clock/ru/ru.po                   |  183 +++-
 help/mate-clock/si/si.po                   |    2 +-
 help/mate-clock/sk/sk.po                   |    2 +-
 help/mate-clock/sl/sl.po                   |    4 +-
 help/mate-clock/sq/sq.po                   |    2 +-
 help/mate-clock/sr/sr.po                   |    2 +-
 help/mate-clock/sr@latin/sr@latin.po       |    2 +-
 help/mate-clock/sv/sv.po                   |    2 +-
 help/mate-clock/ta/ta.po                   |    2 +-
 help/mate-clock/te/te.po                   |    2 +-
 help/mate-clock/th/th.po                   |    2 +-
 help/mate-clock/tr/tr.po                   |   45 +-
 help/mate-clock/ug/ug.po                   |    2 +-
 help/mate-clock/uk/uk.po                   |    7 +-
 help/mate-clock/ur/ur.po                   |    2 +-
 help/mate-clock/uz/uz.po                   |    2 +-
 help/mate-clock/vi/vi.po                   |    2 +-
 help/mate-clock/wa/wa.po                   |    2 +-
 help/mate-clock/xh/xh.po                   |    2 +-
 help/mate-clock/yo/yo.po                   |    2 +-
 help/mate-clock/zh-Hans/zh-Hans.po         |    2 +-
 help/mate-clock/zh_CN/zh_CN.po             |    4 +-
 help/mate-clock/zh_HK/zh_HK.po             |    2 +-
 help/mate-clock/zh_TW/zh_TW.po             |    2 +-
 help/mate-clock/zu/zu.po                   |    2 +-
 help/mate-fish/af/af.po                    |    2 +-
 help/mate-fish/am/am.po                    |    2 +-
 help/mate-fish/an/an.po                    |    2 +-
 help/mate-fish/ar/ar.po                    |    2 +-
 help/mate-fish/as/as.po                    |    2 +-
 help/mate-fish/ast/ast.po                  |    2 +-
 help/mate-fish/az/az.po                    |    2 +-
 help/mate-fish/be/be.po                    |    2 +-
 help/mate-fish/bg/bg.po                    |    2 +-
 help/mate-fish/bn/bn.po                    |    2 +-
 help/mate-fish/bn_IN/bn_IN.po              |    2 +-
 help/mate-fish/br/br.po                    |    2 +-
 help/mate-fish/bs/bs.po                    |    2 +-
 help/mate-fish/ca/ca.po                    |    4 +-
 help/mate-fish/ca@valencia/ca@valencia.po  |    2 +-
 help/mate-fish/cmn/cmn.po                  |    2 +-
 help/mate-fish/crh/crh.po                  |    2 +-
 help/mate-fish/cs/cs.po                    |    2 +-
 help/mate-fish/cy/cy.po                    |    2 +-
 help/mate-fish/da/da.po                    |    2 +-
 help/mate-fish/de/de.po                    |    2 +-
 help/mate-fish/dz/dz.po                    |    2 +-
 help/mate-fish/el/el.po                    |    2 +-
 help/mate-fish/en_AU/en_AU.po              |    2 +-
 help/mate-fish/en_CA/en_CA.po              |    2 +-
 help/mate-fish/en_GB/en_GB.po              |   20 +-
 help/mate-fish/eo/eo.po                    |    2 +-
 help/mate-fish/es/es.po                    |    4 +-
 help/mate-fish/es_AR/es_AR.po              |    4 +-
 help/mate-fish/es_CL/es_CL.po              |    6 +-
 help/mate-fish/es_CO/es_CO.po              |    4 +-
 help/mate-fish/es_ES/es_ES.po              |    4 +-
 help/mate-fish/es_MX/es_MX.po              |    4 +-
 help/mate-fish/es_PR/es_PR.po              |    4 +-
 help/mate-fish/et/et.po                    |    2 +-
 help/mate-fish/eu/eu.po                    |    2 +-
 help/mate-fish/fa/fa.po                    |    2 +-
 help/mate-fish/fi/fi.po                    |    2 +-
 help/mate-fish/fr/fr.po                    |    4 +-
 help/mate-fish/frp/frp.po                  |    2 +-
 help/mate-fish/fur/fur.po                  |    2 +-
 help/mate-fish/fy/fy.po                    |    2 +-
 help/mate-fish/ga/ga.po                    |    2 +-
 help/mate-fish/gl/gl.po                    |    4 +-
 help/mate-fish/gu/gu.po                    |    2 +-
 help/mate-fish/ha/ha.po                    |    2 +-
 help/mate-fish/he/he.po                    |    2 +-
 help/mate-fish/hi/hi.po                    |    2 +-
 help/mate-fish/hr/hr.po                    |    2 +-
 help/mate-fish/hu/hu.po                    |    2 +-
 help/mate-fish/hy/hy.po                    |    2 +-
 help/mate-fish/ia/ia.po                    |    2 +-
 help/mate-fish/id/id.po                    |    8 +-
 help/mate-fish/ie/ie.po                    |    2 +-
 help/mate-fish/ig/ig.po                    |    2 +-
 help/mate-fish/is/is.po                    |    2 +-
 help/mate-fish/it/it.po                    |   84 +-
 help/mate-fish/ja/ja.po                    |    2 +-
 help/mate-fish/jv/jv.po                    |    2 +-
 help/mate-fish/ka/ka.po                    |    2 +-
 help/mate-fish/kab/kab.po                  |    2 +-
 help/mate-fish/kk/kk.po                    |    2 +-
 help/mate-fish/km/km.po                    |    2 +-
 help/mate-fish/kn/kn.po                    |    2 +-
 help/mate-fish/ko/ko.po                    |    8 +-
 help/mate-fish/ku/ku.po                    |    2 +-
 help/mate-fish/ku_IQ/ku_IQ.po              |    2 +-
 help/mate-fish/ky/ky.po                    |    2 +-
 help/mate-fish/la/la.po                    |    2 +-
 help/mate-fish/lt/lt.po                    |    2 +-
 help/mate-fish/lv/lv.po                    |    2 +-
 help/mate-fish/mai/mai.po                  |    2 +-
 help/mate-fish/mg/mg.po                    |    2 +-
 help/mate-fish/mi/mi.po                    |    2 +-
 help/mate-fish/mk/mk.po                    |    2 +-
 help/mate-fish/ml/ml.po                    |    2 +-
 help/mate-fish/mn/mn.po                    |    2 +-
 help/mate-fish/mr/mr.po                    |    2 +-
 help/mate-fish/ms/ms.po                    |    2 +-
 help/mate-fish/nb/nb.po                    |    2 +-
 help/mate-fish/nds/nds.po                  |    2 +-
 help/mate-fish/ne/ne.po                    |    2 +-
 help/mate-fish/nl/nl.po                    |    4 +-
 help/mate-fish/nn/nn.po                    |    2 +-
 help/mate-fish/nso/nso.po                  |    2 +-
 help/mate-fish/oc/oc.po                    |    2 +-
 help/mate-fish/or/or.po                    |    2 +-
 help/mate-fish/pa/pa.po                    |    2 +-
 help/mate-fish/pl/pl.po                    |    2 +-
 help/mate-fish/ps/ps.po                    |    2 +-
 help/mate-fish/pt/pt.po                    |    4 +-
 help/mate-fish/pt_BR/pt_BR.po              |   10 +-
 help/mate-fish/ro/ro.po                    |    2 +-
 help/mate-fish/ru/ru.po                    |   99 +-
 help/mate-fish/si/si.po                    |    2 +-
 help/mate-fish/sk/sk.po                    |    2 +-
 help/mate-fish/sl/sl.po                    |    4 +-
 help/mate-fish/sq/sq.po                    |    2 +-
 help/mate-fish/sr/sr.po                    |    2 +-
 help/mate-fish/sr@latin/sr@latin.po        |    2 +-
 help/mate-fish/sv/sv.po                    |    2 +-
 help/mate-fish/ta/ta.po                    |    2 +-
 help/mate-fish/te/te.po                    |    2 +-
 help/mate-fish/th/th.po                    |    2 +-
 help/mate-fish/tk/tk.po                    |    2 +-
 help/mate-fish/tr/tr.po                    |    2 +-
 help/mate-fish/ug/ug.po                    |    2 +-
 help/mate-fish/uk/uk.po                    |    7 +-
 help/mate-fish/ur/ur.po                    |    2 +-
 help/mate-fish/uz/uz.po                    |    2 +-
 help/mate-fish/vi/vi.po                    |    2 +-
 help/mate-fish/wa/wa.po                    |    2 +-
 help/mate-fish/xh/xh.po                    |    2 +-
 help/mate-fish/yo/yo.po                    |    2 +-
 help/mate-fish/zh-Hans/zh-Hans.po          |    2 +-
 help/mate-fish/zh_CN/zh_CN.po              |    4 +-
 help/mate-fish/zh_HK/zh_HK.po              |    2 +-
 help/mate-fish/zh_TW/zh_TW.po              |    2 +-
 help/mate-fish/zu/zu.po                    |    2 +-
 po/af.po                                   |  661 ++++++-------
 po/am.po                                   |  660 ++++++-------
 po/ar.po                                   |  660 ++++++-------
 po/as.po                                   |  660 ++++++-------
 po/ast.po                                  |  660 ++++++-------
 po/az.po                                   |  660 ++++++-------
 po/be.po                                   |  660 ++++++-------
 po/bg.po                                   |  660 ++++++-------
 po/bn.po                                   |  660 ++++++-------
 po/bn_IN.po                                |  660 ++++++-------
 po/br.po                                   |  660 ++++++-------
 po/bs.po                                   |  660 ++++++-------
 po/ca.po                                   |  664 ++++++-------
 po/ca@valencia.po                          |  660 ++++++-------
 po/cmn.po                                  |  660 ++++++-------
 po/crh.po                                  |  660 ++++++-------
 po/cs.po                                   |  660 ++++++-------
 po/cy.po                                   |  660 ++++++-------
 po/da.po                                   |  662 ++++++-------
 po/de.po                                   |  660 ++++++-------
 po/dz.po                                   |  660 ++++++-------
 po/el.po                                   |  662 ++++++-------
 po/en_AU.po                                |  754 +++++++--------
 po/en_CA.po                                |  660 ++++++-------
 po/en_GB.po                                |  754 +++++++--------
 po/eo.po                                   |  660 ++++++-------
 po/es.po                                   |  677 +++++++-------
 po/es_AR.po                                |  658 ++++++-------
 po/es_CL.po                                |  660 ++++++-------
 po/es_CO.po                                |  658 ++++++-------
 po/es_CR.po                                |  658 ++++++-------
 po/es_DO.po                                |  658 ++++++-------
 po/es_EC.po                                |  658 ++++++-------
 po/es_ES.po                                |  658 ++++++-------
 po/es_MX.po                                |  658 ++++++-------
 po/es_NI.po                                |  658 ++++++-------
 po/es_PA.po                                |  658 ++++++-------
 po/es_PE.po                                |  658 ++++++-------
 po/es_PR.po                                |  658 ++++++-------
 po/es_SV.po                                |  658 ++++++-------
 po/es_UY.po                                |  658 ++++++-------
 po/es_VE.po                                |  658 ++++++-------
 po/et.po                                   |  659 ++++++-------
 po/eu.po                                   |  660 ++++++-------
 po/fa.po                                   |  660 ++++++-------
 po/fi.po                                   |  660 ++++++-------
 po/fr.po                                   |  662 ++++++-------
 po/fr_CA.po                                |  658 ++++++-------
 po/frp.po                                  |  656 ++++++-------
 po/fur.po                                  |  656 ++++++-------
 po/fy.po                                   |  656 ++++++-------
 po/ga.po                                   |  656 ++++++-------
 po/gl.po                                   |  660 ++++++-------
 po/gu.po                                   |  660 ++++++-------
 po/ha.po                                   |  660 ++++++-------
 po/he.po                                   |  706 +++++++-------
 po/hi.po                                   |  660 ++++++-------
 po/hr.po                                   |  660 ++++++-------
 po/hu.po                                   |  660 ++++++-------
 po/hy.po                                   |  660 ++++++-------
 po/ia.po                                   |  656 ++++++-------
 po/id.po                                   |  660 ++++++-------
 po/ie.po                                   |  656 ++++++-------
 po/ig.po                                   |  660 ++++++-------
 po/is.po                                   |  660 ++++++-------
 po/it.po                                   | 1383 ++++++++++++++--------------
 po/ja.po                                   |  671 +++++++-------
 po/jv.po                                   |  656 ++++++-------
 po/ka.po                                   |  660 ++++++-------
 po/kab.po                                  |  656 ++++++-------
 po/kk.po                                   |  656 ++++++-------
 po/kn.po                                   |  660 ++++++-------
 po/ko.po                                   |  664 ++++++-------
 po/ku.po                                   |  660 ++++++-------
 po/ku_IQ.po                                |  656 ++++++-------
 po/ky.po                                   |  660 ++++++-------
 po/la.po                                   |  656 ++++++-------
 po/li.po                                   |  656 ++++++-------
 po/lt.po                                   |  660 ++++++-------
 po/lv.po                                   |  660 ++++++-------
 po/mai.po                                  |  660 ++++++-------
 po/mg.po                                   |  661 ++++++-------
 po/mi.po                                   |  656 ++++++-------
 po/mk.po                                   |  660 ++++++-------
 po/ml.po                                   |  660 ++++++-------
 po/mn.po                                   |  660 ++++++-------
 po/mr.po                                   |  660 ++++++-------
 po/ms.po                                   |  660 ++++++-------
 po/nb.po                                   |  660 ++++++-------
 po/nds.po                                  |  656 ++++++-------
 po/ne.po                                   |  660 ++++++-------
 po/nl.po                                   |  661 ++++++-------
 po/nn.po                                   |  660 ++++++-------
 po/nso.po                                  |  660 ++++++-------
 po/oc.po                                   |  709 +++++++-------
 po/or.po                                   |  660 ++++++-------
 po/pa.po                                   |  660 ++++++-------
 po/pl.po                                   |  676 +++++++-------
 po/pms.po                                  |  656 ++++++-------
 po/ps.po                                   |  656 ++++++-------
 po/pt.po                                   |  662 ++++++-------
 po/pt_BR.po                                |  667 +++++++-------
 po/ro.po                                   |  662 ++++++-------
 po/ru.po                                   |  666 +++++++-------
 po/rw.po                                   |  656 ++++++-------
 po/sc.po                                   |  656 ++++++-------
 po/si.po                                   |  656 ++++++-------
 po/sk.po                                   |  660 ++++++-------
 po/sl.po                                   |  664 ++++++-------
 po/sq.po                                   |  660 ++++++-------
 po/sr.po                                   |  660 ++++++-------
 po/sr@latin.po                             |  660 ++++++-------
 po/sv.po                                   |  660 ++++++-------
 po/ta.po                                   |  660 ++++++-------
 po/te.po                                   |  660 ++++++-------
 po/th.po                                   |  660 ++++++-------
 po/tk.po                                   |  656 ++++++-------
 po/tr.po                                   |  802 ++++++++--------
 po/tt.po                                   |  656 ++++++-------
 po/ug.po                                   |  660 ++++++-------
 po/uk.po                                   |  665 ++++++-------
 po/ur.po                                   |  656 ++++++-------
 po/uz.po                                   |  656 ++++++-------
 po/vi.po                                   |  660 ++++++-------
 po/wa.po                                   |  656 ++++++-------
 po/xh.po                                   |  660 ++++++-------
 po/yi.po                                   |  656 ++++++-------
 po/yo.po                                   |  660 ++++++-------
 po/zh_CN.po                                | 1012 ++++++++++----------
 po/zh_HK.po                                |  660 ++++++-------
 po/zh_TW.po                                |  667 +++++++-------
 po/zu.po                                   |  660 ++++++-------
 359 files changed, 45940 insertions(+), 43723 deletions(-)

commit 037ee25f3b92b9979adf26eb32f23c4c9bc6ec6e
Author: mbkma <johannes.unruh@fau.de>
Date:   Sat Oct 29 15:39:08 2022 +0200

    tx: update resource

 mate-clock.pot |   2 +-
 mate-fish.pot  |   2 +-
 mate-panel.pot | 230 ++++++++++++++++++++++++++++++---------------------------
 3 files changed, 125 insertions(+), 109 deletions(-)

commit 2e77d533eec27a907bb54eb2f3e742dd06f1804c
Author: mbkma <johannes.unruh@fau.de>
Date:   Fri Oct 28 21:55:32 2022 +0200

    tx: migrate config file

 .tx/config                    | 33 +++++++++++++++++----------------
 .tx/config_20221028214815.bak | 23 +++++++++++++++++++++++
 2 files changed, 40 insertions(+), 16 deletions(-)

commit 955ddc3187344cce1e3fa7343444ebe20634cb9a
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Jul 25 15:19:07 2022 +0200

    configure.ac: The macro 'AC_HELP_STRING' is obsolete

 configure.ac | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 7b1b00d5ddffc349ca117843bd0d015e9fb08a89
Author: Gordon Norman Squash <gordsqsh@protonmail.com>
Date:   Fri Aug 12 22:36:03 2022 -0400

    Fix center- and right-sticking of expanding applets
    
    In a prior commit (38e00280e9d17282717595a05411736a308804c0), I added
    support to stick applets to the center of the panel, so that no matter the
    width of the applet or the panel, the applet would always stay at the
    center of the panel.  That commit also added an "end-relative" mode, which
    is similar to the panel's old "right-stick" feature, except end-relative
    mode positions the applet's right edge relative to the panel's right edge,
    whereas right-sticking positioned the applet's left edge relative to the
    right edge of the panel.  The advantage of end-relative positioning is
    that the applet can resize without moving itself even further to the right
    than the user intended, whereas if positioned so that there is empty space
    between the applet and the edge of the panel, right-stuck applets would
    change the size of that gap (or close it entirely) when the applet
    resized.
    
    Unfortunately, I have since discovered that my original implementation of
    the center-stick and end-relative positioning of applets was inadequate.
    Some applets can accept any amount of space between a minimum and their
    "preferred" size -- if such an applet cannot be allocated its preferred
    size (perhaps because panel space is scarce), then the applet will be
    allocated as much space as is available, and the applet will "flex" itself
    to compensate.  Some examples of these "expanding" applets include the
    Window List (a component of the wncklet included in this package) and the
    MATE Dock Applet (a third-party panel applet from the Ubuntu MATE
    project).  When writing my original center-stick code, I did not properly
    take expanding applets into account, and with my original commit, such
    applets were off-center -- usually way off-center since the code seemed to
    position such applets based on their minimum size, rather than their
    actual allocated size.
    
    This commit adds center-sticking support for expanding applets.  It also
    works with end-relative expanding applets -- such applets will expand
    towards the left, thus keeping their right-relative position intact.

 mate-panel/panel-widget.c | 147 ++++++++++++++++++++++++++++++++++++++--------
 1 file changed, 121 insertions(+), 26 deletions(-)

commit 36be054255ff728061c056899c052c790ed43ae1
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jun 28 11:25:05 2022 +0200

    panel-applet: Fix leak in no-background code path

 libmate-panel-applet/mate-panel-applet.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 48ef669663d64062a5ed5d90e3e4787445a90859
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jun 28 11:23:01 2022 +0200

    clock: Fix memory leak

 applets/clock/clock.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4fb3334d01a1a774ef706300fe6cf60989fc9515
Author: rbuj <robert.buj@gmail.com>
Date:   Tue May 31 23:40:47 2022 +0200

    applet: SMALL_ICON_SIZE macro is not used [-Wunused-macros]

 mate-panel/applet.c | 2 --
 1 file changed, 2 deletions(-)

commit 83ff6350e806d3c03cc549ff576dcb4867d4d8f4
Author: Robert Antoni Buj Gelonch <rbuj@users.noreply.github.com>
Date:   Thu Jun 2 09:38:16 2022 +0200

    notification_area: Reduce lifetime of the settings local variable (#1309)

 applets/notification_area/na-grid.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 81e549c8870e19a379bc999e4f7f7faa7b8042c6
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Jun 1 09:26:58 2022 +0200

    build warning: AC_OUTPUT should be used without arguments

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 38e00280e9d17282717595a05411736a308804c0
Author: The Squash <gordsqsh@protonmail.com>
Date:   Fri May 6 01:11:58 2022 -0400

    Add "center-stick" capability applets on the panel
    
    Conventionally, the applets on a MATE Panel are positioned relative to the
    left edge of the panel (if the panel is horizontal) or the top edge (if the
    panel is vertical).  There has also been some (buggy) support for positioning
    of applets relative to the right (or bottom) edge of the panel, so that
    applets on the right side of the panel will stay on the right side even if
    the user changes screen resolutions or if the panel changes size for some
    other reason.
    
    However, many users want to also place applets at or near the center of their
    panel(s).  There is no such conventional support for positioning applets
    relative to the center of the panel, so users have positioned applets near
    the center of the panel -- but the position recorded is relative to the left
    side of the panel.  As such, the applets will almost certainly shift over
    to the left or right slightly if the panel is ever resized, and the user will
    have to reposition all those centered applets yet again.  This is especially
    frustrating if the user switches monitors on a regular basis!
    
    This patch radically revamps the MATE Panel's positioning framework, and
    deprecates the original "right-stick" feature.  To replace the right-stick
    feature, this patch instead associates an "edge relativity" setting with
    each and every panel applet:  An applet can be relative to the start (left/
    top), end (right/bottom), or center of the panel.  This setting can be
    changed using DConf/GSettings, using a custom panel layout file, or even
    by simply dragging the applet to the appropriate place on the panel.
    (Conventionally, applets are not even right-stuck automatically even when the
    user drags the applet over to the far right of the panel!)  As a bonus, when
    the user drags an applet across the center of the panel, the applet will
    temporarily "stick" to the very center of the panel, to allow the user to
    very precisely align any applet they wish.

 data/default.layout                       |   6 +-
 data/fedora.layout                        |   8 +-
 data/linuxmint.layout                     |   4 +-
 data/mageia.layout                        |   6 +-
 data/opensuse.layout                      |   8 +-
 data/org.mate.panel.object.gschema.xml.in |   9 +-
 data/ubuntu.layout                        |  16 +-
 mate-panel/applet.c                       |  93 ++++----
 mate-panel/applet.h                       |  14 +-
 mate-panel/drawer.c                       |   4 +-
 mate-panel/launcher.c                     |   3 +-
 mate-panel/panel-action-button.c          |   2 +-
 mate-panel/panel-applet-frame.c           |   2 +-
 mate-panel/panel-enums-gsettings.h        |   6 +
 mate-panel/panel-layout.c                 |   1 +
 mate-panel/panel-menu-bar.c               |   2 +-
 mate-panel/panel-menu-button.c            |   2 +-
 mate-panel/panel-profile.c                |  75 +++++--
 mate-panel/panel-profile.h                |  30 ++-
 mate-panel/panel-schemas.h                |   1 +
 mate-panel/panel-separator.c              |   2 +-
 mate-panel/panel-toplevel.c               |  28 +--
 mate-panel/panel-widget.c                 | 339 +++++++++++++++++++++++-------
 mate-panel/panel-widget.h                 |   6 +-
 mate-panel/panel.c                        |  12 +-
 mate-panel/panel.h                        |   2 +-
 26 files changed, 459 insertions(+), 222 deletions(-)

commit 02618b724a15443f6e5b4ce05612204d41269fa4
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Apr 26 11:44:47 2022 +0200

    wncklet: Fix crash thumbnailing dying or otherwise inaccessible windows
    
    Fixes https://github.com/mate-desktop/mate-desktop/issues/478

 applets/wncklet/window-list.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit f25d859347d32c363fb1e0a15266d66b06022b6c
Author: Ilya Fedin <fedin-ilja2010@ya.ru>
Date:   Sun Dec 27 09:14:58 2020 +0400

    Register SNI host only if SNI is enabled
    
    This prevents duplication of tray icons

 applets/notification_area/na-grid.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 258545c6e04a8299726122afd3a825483a9d7256
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Mar 10 10:17:13 2022 +0100

    fix undefined reference to g_clear_signal_handler (glib < 2.62)

 mate-panel/panel-toplevel.c | 2 --
 1 file changed, 2 deletions(-)

commit 9befec030d2f7252541bf1ca84d2fe56e093ff8f
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Mar 16 13:04:21 2022 +0100

    wncklet: Condition 'sdd->wnck_screen!=NULL' is always false

 applets/wncklet/showdesktop.c | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

commit 01c6f4fef3e8522728fafee5392489e62b910dc9
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Mar 16 13:31:45 2022 +0100

    panel-multimonitor: Condition '*monitors_ret>0' is always false

 mate-panel/panel-multimonitor.c | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

commit 3860befb8776c47b680f15256326a699275ce533
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Mar 15 15:21:49 2022 +0100

    clock: cast from function call of type 'gdouble' to non-matching type

 applets/clock/clock.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c4602959df4f2856e49ebf6b6c7a03be00d311f4
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Jan 26 15:09:45 2022 +0100

    wncklet: do not exceed workspace number when setting n_rows

 applets/wncklet/workspace-switcher.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 8d44fb8753b429f2c01e9ce964960723c5cabf54
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 13 19:36:34 2022 +0100

    ci: drop -Wunused-parameter compiler cflag from debian build

 .build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d65b4dfa9b985d05f4e29a2e6a811e01fab177f
Author: raveit65 <mate@raveit.de>
Date:   Wed Jan 26 17:12:56 2022 +0100

    release 1.27.0

 NEWS | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

commit 5e8a18b41ac95de09af162b73373598199fae562
Author: raveit65 <mate@raveit.de>
Date:   Wed Jan 26 17:08:06 2022 +0100

    tx: pull from transifex server

 help/mate-clock/ar/ar.po           |   5 +-
 help/mate-clock/ca/ca.po           |   4 +-
 help/mate-clock/da/da.po           |  12 +-
 help/mate-clock/de/de.po           |   8 +-
 help/mate-clock/es/es.po           |  10 +-
 help/mate-clock/fr/fr.po           |   4 +-
 help/mate-clock/gl/gl.po           |   2 +-
 help/mate-clock/ko/ko.po           |   4 +-
 help/mate-clock/lt/lt.po           |   6 +-
 help/mate-clock/nl/nl.po           |  15 +-
 help/mate-clock/or/or.po           |   2 +-
 help/mate-clock/pl/pl.po           |   2 +-
 help/mate-clock/ps/ps.po           |   2 +-
 help/mate-clock/pt_BR/pt_BR.po     |   2 +-
 help/mate-clock/ro/ro.po           |   7 +-
 help/mate-clock/tr/tr.po           |   5 +-
 help/mate-clock/zh-Hans/zh-Hans.po | 687 +++++++++++++++++++++++++++++++++++++
 help/mate-fish/ar/ar.po            |   5 +-
 help/mate-fish/ca/ca.po            |   4 +-
 help/mate-fish/cs/cs.po            |   2 +-
 help/mate-fish/da/da.po            |  12 +-
 help/mate-fish/de/de.po            |   8 +-
 help/mate-fish/es/es.po            |  12 +-
 help/mate-fish/gl/gl.po            |   2 +-
 help/mate-fish/id/id.po            |   2 +-
 help/mate-fish/ja/ja.po            |   2 +-
 help/mate-fish/ko/ko.po            |   4 +-
 help/mate-fish/lt/lt.po            |   6 +-
 help/mate-fish/nl/nl.po            |  17 +-
 help/mate-fish/or/or.po            |   2 +-
 help/mate-fish/ps/ps.po            |   2 +-
 help/mate-fish/pt_BR/pt_BR.po      |   2 +-
 help/mate-fish/ro/ro.po            |   5 +-
 help/mate-fish/tr/tr.po            |   5 +-
 help/mate-fish/zh-Hans/zh-Hans.po  |   7 +-
 po/af.po                           |  60 ++--
 po/am.po                           |  60 ++--
 po/ar.po                           |  60 ++--
 po/as.po                           |  60 ++--
 po/ast.po                          |  60 ++--
 po/az.po                           |  60 ++--
 po/be.po                           |  60 ++--
 po/bg.po                           |  60 ++--
 po/bn.po                           |  60 ++--
 po/bn_IN.po                        |  60 ++--
 po/br.po                           |  88 ++---
 po/bs.po                           |  60 ++--
 po/ca.po                           |  78 +++--
 po/ca@valencia.po                  |  60 ++--
 po/cmn.po                          |  64 ++--
 po/crh.po                          |  60 ++--
 po/cs.po                           |  62 ++--
 po/cy.po                           |  60 ++--
 po/da.po                           |  84 ++---
 po/de.po                           |  60 ++--
 po/dz.po                           |  60 ++--
 po/el.po                           |  62 ++--
 po/en_AU.po                        |  60 ++--
 po/en_CA.po                        |  60 ++--
 po/en_GB.po                        |  60 ++--
 po/eo.po                           |  60 ++--
 po/es.po                           |  82 ++---
 po/es_AR.po                        |  60 ++--
 po/es_CL.po                        |  60 ++--
 po/es_CO.po                        |  60 ++--
 po/es_CR.po                        |  60 ++--
 po/es_DO.po                        |  60 ++--
 po/es_EC.po                        |  60 ++--
 po/es_ES.po                        |  60 ++--
 po/es_MX.po                        |  60 ++--
 po/es_NI.po                        |  60 ++--
 po/es_PA.po                        |  60 ++--
 po/es_PE.po                        |  60 ++--
 po/es_PR.po                        |  60 ++--
 po/es_SV.po                        |  60 ++--
 po/es_UY.po                        |  60 ++--
 po/es_VE.po                        |  60 ++--
 po/et.po                           |  60 ++--
 po/eu.po                           |  65 ++--
 po/fa.po                           |  62 ++--
 po/fi.po                           |  60 ++--
 po/fr.po                           | 132 +++----
 po/fr_CA.po                        |  60 ++--
 po/frp.po                          |  60 ++--
 po/fur.po                          |  60 ++--
 po/fy.po                           |  60 ++--
 po/ga.po                           |  60 ++--
 po/gl.po                           |  60 ++--
 po/gu.po                           |  60 ++--
 po/ha.po                           |  60 ++--
 po/he.po                           |  60 ++--
 po/hi.po                           |  60 ++--
 po/hr.po                           |  60 ++--
 po/hu.po                           |  60 ++--
 po/hy.po                           |  60 ++--
 po/ia.po                           |  60 ++--
 po/id.po                           |  60 ++--
 po/ie.po                           |  60 ++--
 po/ig.po                           |  60 ++--
 po/is.po                           |  60 ++--
 po/it.po                           | 111 +++---
 po/ja.po                           |  62 ++--
 po/jv.po                           |  60 ++--
 po/ka.po                           |  60 ++--
 po/kab.po                          |  60 ++--
 po/kk.po                           |  60 ++--
 po/kn.po                           |  60 ++--
 po/ko.po                           |  62 ++--
 po/ku.po                           |  60 ++--
 po/ku_IQ.po                        |  60 ++--
 po/ky.po                           |  60 ++--
 po/la.po                           |  60 ++--
 po/li.po                           |  60 ++--
 po/lt.po                           |  60 ++--
 po/lv.po                           |  60 ++--
 po/mai.po                          |  60 ++--
 po/mg.po                           |  60 ++--
 po/mi.po                           |  60 ++--
 po/mk.po                           |  60 ++--
 po/ml.po                           |  60 ++--
 po/mn.po                           |  60 ++--
 po/mr.po                           |  60 ++--
 po/ms.po                           |  60 ++--
 po/nb.po                           |  78 ++---
 po/nds.po                          |  60 ++--
 po/ne.po                           |  60 ++--
 po/nl.po                           |  60 ++--
 po/nn.po                           |  60 ++--
 po/nso.po                          |  60 ++--
 po/oc.po                           | 418 ++++++++++++++++------
 po/or.po                           |  62 ++--
 po/pa.po                           |  60 ++--
 po/pl.po                           |  66 ++--
 po/pms.po                          |  60 ++--
 po/ps.po                           |  62 ++--
 po/pt.po                           |  77 +++--
 po/pt_BR.po                        |  60 ++--
 po/ro.po                           |  66 ++--
 po/ru.po                           | 135 +++++---
 po/rw.po                           |  60 ++--
 po/sc.po                           |  60 ++--
 po/si.po                           |  60 ++--
 po/sk.po                           |  60 ++--
 po/sl.po                           | 113 +++---
 po/sq.po                           |  60 ++--
 po/sr.po                           |  60 ++--
 po/sr@latin.po                     |  60 ++--
 po/sv.po                           |  60 ++--
 po/ta.po                           |  60 ++--
 po/te.po                           |  60 ++--
 po/th.po                           |  60 ++--
 po/tk.po                           |  60 ++--
 po/tr.po                           |  60 ++--
 po/tt.po                           |  60 ++--
 po/ug.po                           |  60 ++--
 po/uk.po                           |  79 +++--
 po/ur.po                           |  60 ++--
 po/uz.po                           |  60 ++--
 po/vi.po                           |  60 ++--
 po/wa.po                           |  60 ++--
 po/xh.po                           |  60 ++--
 po/yi.po                           |  60 ++--
 po/yo.po                           |  60 ++--
 po/zh_CN.po                        |  62 ++--
 po/zh_HK.po                        |  60 ++--
 po/zh_TW.po                        |  64 ++--
 po/zu.po                           |  60 ++--
 167 files changed, 5304 insertions(+), 4288 deletions(-)

commit f687eaa7a69362f9a5ad0d8a56bc505ad2065ce2
Author: raveit65 <mate@raveit.de>
Date:   Wed Jan 26 17:00:42 2022 +0100

    tx: update resource

 mate-panel.pot | 564 ++++++++++++++++++++++++++++-----------------------------
 1 file changed, 282 insertions(+), 282 deletions(-)

commit a32b67611920591c918c164b11b814d493923127
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Dec 20 21:11:41 2021 +0100

    Fix implicit conversion changes signedness: 'gboolean' to 'guint'

 .../notification_area/system-tray/na-tray-child.c  |  2 +-
 applets/wncklet/showdesktop.c                      |  2 +-
 mate-panel/button-widget.c                         |  8 ++--
 mate-panel/panel-action-button.c                   |  2 +-
 mate-panel/panel-applet-frame.c                    |  2 +-
 mate-panel/panel-background.c                      |  2 +-
 mate-panel/panel-config-global.c                   | 10 ++---
 mate-panel/panel-lockdown.c                        | 50 +++++++++++-----------
 mate-panel/panel-menu-button.c                     |  2 +-
 mate-panel/panel-menu-items.c                      |  6 +--
 mate-panel/panel-toplevel.c                        | 12 +++---
 mate-panel/panel-widget.c                          | 14 +++---
 12 files changed, 56 insertions(+), 56 deletions(-)

commit 42e01cf4992c552bc7924bb8fd0087832e85e8c1
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Jan 14 16:08:34 2022 +0100

    wncklet: The values stored in the wrapper hash table are incorrect

 applets/wncklet/window-list.c | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

commit 199ab405c50acb5a1219c9ff18fb4f2e7344fc32
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jan 4 11:15:46 2022 +0100

    notification_area: fix build warning -Wbad-function-cast

 applets/notification_area/testtray.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit a3807f46f81745f4125460bb7e92b4c417573bb8
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jan 4 10:08:07 2022 +0100

    panel-run-dialog: address of array 'dent->d_name' will always evaluate to 'true'

 mate-panel/panel-run-dialog.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 273a3c7aa035d3b7a53f181dd4f3a88ad0b94922
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 31 21:22:49 2021 +0100

    clock: fix memory leak

 applets/clock/calendar-window.c | 2 ++
 1 file changed, 2 insertions(+)

commit 56610fa8af9e5a88a7a12151e42d82102a98e5cb
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Dec 20 17:30:12 2021 +0100

    panel-toplevel.h: fix indent

 mate-panel/panel-toplevel.h | 108 ++++++++++++++++++++++----------------------
 1 file changed, 54 insertions(+), 54 deletions(-)

commit f3be406bb0f3be4f253b287c2f1f7d6283e1d05f
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Dec 15 11:04:52 2021 +0100

    Fix some -Wsign-compare warnings

 applets/clock/calendar-window.c                     | 10 +++++-----
 applets/wncklet/window-list.c                       |  4 ++--
 libmate-panel-applet/mate-panel-applet.c            |  2 +-
 .../panel-applet-container.c                        |  2 +-
 .../panel-applets-manager-dbus.c                    |  2 +-
 mate-panel/panel-action-protocol.c                  | 13 ++++++++-----
 mate-panel/panel-addto.c                            | 21 +++++++++++----------
 mate-panel/panel-applet-frame.c                     |  6 +++---
 mate-panel/panel-applet-frame.h                     |  4 ++--
 mate-panel/panel-bindings.c                         |  4 ++--
 mate-panel/panel-ditem-editor.c                     |  4 ++--
 mate-panel/panel-menu-button.c                      |  6 +++---
 mate-panel/panel-properties-dialog.c                |  2 +-
 mate-panel/panel-run-dialog.c                       |  6 +++---
 mate-panel/panel-stock-icons.c                      | 12 +++++++-----
 mate-panel/panel-test-applets.c                     |  2 +-
 mate-panel/panel-toplevel.c                         | 16 ++++++++++------
 mate-panel/panel-toplevel.h                         |  2 +-
 18 files changed, 64 insertions(+), 54 deletions(-)

commit 462949a3bc6b54675e9dec59745504c949856524
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Dec 19 18:35:38 2021 +0100

    Use dashes for applet-[added|removed|move], back-change, size-change

 mate-panel/panel-widget.c | 10 +++++-----
 mate-panel/panel.c        | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

commit 54e2bb1acaf71b7b54e796f7bfa311fb32d84830
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 17 14:17:29 2021 +0100

    Remove unnecessary cast in g_signal_connect* call

 applets/clock/clock-location-tile.c           |  2 +-
 applets/clock/clock.c                         | 37 +++++++-------
 applets/clock/system-timezone.c               |  3 +-
 applets/notification_area/main.c              |  2 +-
 applets/wncklet/showdesktop.c                 | 36 ++++++++++----
 applets/wncklet/wayland-backend.c             |  3 +-
 applets/wncklet/window-list.c                 | 69 ++++++++++++++++++++-------
 applets/wncklet/window-menu.c                 | 20 ++++++--
 applets/wncklet/workspace-switcher.c          | 52 ++++++++++++++------
 libmate-panel-applet/mate-panel-applet.c      |  2 +-
 libmate-panel-applet/test-dbus-applet.c       |  9 ++--
 mate-panel/applet.c                           | 20 ++++----
 mate-panel/launcher.c                         | 10 ++--
 mate-panel/libpanel-util/panel-error.c        |  6 +--
 mate-panel/libpanel-util/panel-icon-chooser.c |  6 +--
 mate-panel/mate-desktop-item-edit.c           | 10 ++--
 mate-panel/menu.c                             | 51 +++++++++++---------
 mate-panel/panel-addto.c                      | 22 +++++----
 mate-panel/panel-context-menu.c               | 21 ++++----
 mate-panel/panel-ditem-editor.c               |  4 +-
 mate-panel/panel-menu-bar.c                   |  2 +-
 mate-panel/panel-menu-items.c                 | 31 +++++++-----
 mate-panel/panel-recent.c                     | 10 ++--
 mate-panel/panel-toplevel.c                   |  9 ++--
 mate-panel/panel-widget.c                     |  8 ++--
 mate-panel/panel.c                            | 21 ++++----
 mate-panel/xstuff.c                           |  5 +-
 27 files changed, 283 insertions(+), 188 deletions(-)

commit 5bd053ad542479eaec4166e45195c5e911472f88
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Dec 19 10:37:36 2021 +0100

    Upscale in panel_xutils_set_strut

 mate-panel/panel-struts.c   | 23 +++++++----------------
 mate-panel/panel-struts.h   |  3 +--
 mate-panel/panel-toplevel.c |  7 +------
 mate-panel/panel-xutils.c   |  4 ++++
 4 files changed, 13 insertions(+), 24 deletions(-)

commit 79a8279c52e3d0b66985cbbeaeb88bae1522c4c2
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 18 22:24:15 2021 +0100

    panel-toplevel: fix the computed dimension for (non) auto hidden panels

 mate-panel/panel-toplevel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8a380c3e9af91a726b8ed45ccf9ef64911540595
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Thu Dec 16 13:18:12 2021 +0100

    struts: add support for _GNOME_WM_STRUT_AREA
    
    In addition to existing properties set also new _GNOME_WM_STRUT_AREA
    property that allows creating struts between monitors.
    
    https://mail.gnome.org/archives/wm-spec-list/2018-December/msg00000.html
    https://gitlab.freedesktop.org/xdg/xdg-specs/merge_requests/22
    
    https://gitlab.gnome.org/GNOME/gnome-panel/merge_requests/3
    
    Upscale area strut because of 73e025b0eab94fe06cdafee61c347fb5fe6f7545

 mate-panel/panel-struts.c |  4 +++-
 mate-panel/panel-xutils.c | 33 +++++++++++++++++++++++++++++----
 mate-panel/panel-xutils.h |  4 +++-
 3 files changed, 35 insertions(+), 6 deletions(-)

commit ede1f04954c5b64dbdaea7a75aecc1153cc6e9b3
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 18 14:31:49 2021 +0100

    Use dashes instead of underscores in signal names

 applets/clock/clock.c                              | 26 ++++++++++----------
 applets/fish/fish.c                                | 14 +++++------
 applets/notification_area/main.c                   |  2 +-
 applets/notification_area/system-tray/fixedtip.c   |  2 +-
 .../system-tray/na-tray-manager.c                  | 10 ++++----
 applets/notification_area/system-tray/na-tray.c    |  8 +++----
 applets/wncklet/showdesktop.c                      | 12 +++++-----
 applets/wncklet/window-list.c                      | 12 +++++-----
 applets/wncklet/window-menu.c                      |  6 ++---
 applets/wncklet/workspace-switcher.c               |  8 +++----
 libmate-panel-applet/mate-panel-applet.c           |  6 ++---
 libmate-panel-applet/test-dbus-applet.c            |  6 ++---
 mate-panel/applet.c                                |  4 ++--
 mate-panel/drawer.c                                | 16 ++++++-------
 mate-panel/launcher.c                              | 16 ++++++-------
 mate-panel/mate-desktop-item-edit.c                |  2 +-
 mate-panel/menu.c                                  | 28 +++++++++++-----------
 mate-panel/panel-addto.c                           |  2 +-
 mate-panel/panel-ditem-editor.c                    |  4 ++--
 mate-panel/panel-menu-items.c                      | 10 ++++----
 mate-panel/panel-properties-dialog.c               |  2 +-
 mate-panel/panel-recent.c                          |  2 +-
 mate-panel/panel-run-dialog.c                      |  4 ++--
 mate-panel/panel-toplevel.c                        |  6 ++---
 mate-panel/panel.c                                 |  8 +++----
 25 files changed, 108 insertions(+), 108 deletions(-)

commit 0791b258daba11925ced8406db204f27b827202f
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 17 07:55:38 2021 +0100

    clock: gtk_entry_set_alignment in clock.ui

 applets/clock/clock.c  | 3 ---
 applets/clock/clock.ui | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 7b694021f7c38a948ec96781f51df7e84a6141ca
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 17 07:48:27 2021 +0100

    clock: gtk_entry_set_width_chars in clock.ui

 applets/clock/clock.c  | 3 ---
 applets/clock/clock.ui | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 6ed10e1f6410e7827a23af39614469478003e0c5
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 17 07:42:59 2021 +0100

    clock: Upgrade clock.ui

 applets/clock/clock.ui | 634 ++++++++++++++++++++++++++-----------------------
 1 file changed, 340 insertions(+), 294 deletions(-)

commit 72f4bdd41343647e79b719b652a50afe8d42e162
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 17 08:16:37 2021 +0100

    clock: Define _clock_get_widget instead of using one sentence method

 applets/clock/clock.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit 440a9eef740e04821393c383c23d3937ea3bc28e
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Dec 16 23:39:00 2021 +0100

    clock: simplify temperature_unit_changed and speed_unit_changed

 applets/clock/clock.c | 45 +++++++++++++++++++++++----------------------
 1 file changed, 23 insertions(+), 22 deletions(-)

commit eefd98c9bd9965c9022316d1336d914bfb1063ed
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Dec 15 10:59:18 2021 +0100

    clock: fix temperature_unit_changed and -Wsign-compare warnings

 applets/clock/clock.c | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

commit 293948ad80f2f9dddf4af282e2b83b99b2e56014
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Oct 24 21:41:34 2021 +0200

    Use GLib's new g_clear_signal_handler() function to simplify code

 applets/clock/clock-location-tile.c |  12 ++-
 mate-panel/panel-menu-items.c       | 144 ++++++++++++++----------------------
 mate-panel/panel-toplevel.c         |  40 ++++++----
 3 files changed, 90 insertions(+), 106 deletions(-)

commit 6fbabd51619c92bcd8584e1bb2f12f2b52904ea6
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Nov 28 13:19:58 2021 +0100

    Use g_clear_pointer() and g_clear_object()

 applets/clock/calendar-window.c                    |  8 +--
 applets/clock/clock-face.c                         | 17 +----
 applets/clock/clock-location-tile.c                | 14 +---
 applets/clock/clock-location.c                     | 15 ++---
 applets/clock/clock-map.c                          | 27 ++------
 applets/clock/system-timezone.c                    |  8 +--
 applets/fish/fish.c                                | 28 ++------
 .../status-notifier/sn-dbus-menu.c                 |  4 +-
 .../notification_area/status-notifier/sn-item-v0.c | 12 ++--
 applets/notification_area/system-tray/na-tray.c    |  6 +-
 libmate-panel-applet/mate-panel-applet-factory.c   |  5 +-
 libmate-panel-applet/mate-panel-applet.c           | 33 +++-------
 mate-panel/applet.c                                |  6 --
 mate-panel/button-widget.c                         |  3 +-
 mate-panel/launcher.c                              | 12 ++--
 .../panel-applet-container.c                       | 18 ++---
 mate-panel/libpanel-util/panel-icon-chooser.c      | 20 ++----
 mate-panel/libpanel-util/panel-keyfile.c           |  3 +-
 mate-panel/libpanel-util/panel-session-manager.c   |  3 +-
 mate-panel/panel-action-button.c                   |  3 +-
 mate-panel/panel-addto.c                           | 77 +++++-----------------
 mate-panel/panel-applet-frame.c                    |  6 +-
 mate-panel/panel-background.c                      | 24 ++-----
 mate-panel/panel-ditem-editor.c                    |  3 +-
 mate-panel/panel-menu-button.c                     | 30 ++++-----
 mate-panel/panel-menu-items.c                      | 21 ++----
 mate-panel/panel-profile.c                         |  9 +--
 mate-panel/panel-run-dialog.c                      | 28 +++-----
 mate-panel/panel-toplevel.c                        | 34 +++-------
 mate-panel/panel-widget.c                          | 16 ++---
 30 files changed, 133 insertions(+), 360 deletions(-)

commit 94f3ec8c654363cd6a245eb9dca7c54f1b8f5649
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Oct 22 22:00:37 2021 +0200

    panel-test-applets: fix memory leak

 mate-panel/panel-test-applets.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c92b3aa972b3b2a7a00dfb2b3f9c4d96add929e2
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Oct 28 12:37:37 2021 +0200

    Fix build warnings about missing field initializer

 libmate-panel-applet/mate-panel-applet-factory.c | 3 ++-
 libmate-panel-applet/mate-panel-applet.c         | 6 ++++--
 mate-panel/main.c                                | 2 +-
 mate-panel/mate-desktop-item-edit.c              | 2 +-
 mate-panel/panel-test-applets.c                  | 2 +-
 mate-panel/xstuff.c                              | 2 +-
 6 files changed, 10 insertions(+), 7 deletions(-)

commit 09674ba9f9b9d6b6cb4b88d9fe81c30aaccef8e6
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Oct 27 18:02:13 2021 +0200

    Use a blank line at most

 applets/clock/clock-face.h                                        | 1 -
 applets/clock/clock-location.c                                    | 1 -
 applets/clock/clock-map.h                                         | 1 -
 applets/clock/clock-sunpos.c                                      | 1 -
 applets/clock/clock.c                                             | 5 -----
 applets/clock/system-timezone.c                                   | 4 ----
 applets/clock/system-timezone.h                                   | 1 -
 applets/fish/fish.c                                               | 1 -
 applets/notification_area/main.c                                  | 3 ---
 applets/notification_area/main.h                                  | 1 -
 applets/wncklet/showdesktop.c                                     | 1 -
 applets/wncklet/showdesktop.h                                     | 1 -
 applets/wncklet/wayland-backend.c                                 | 1 -
 applets/wncklet/wayland-backend.h                                 | 2 --
 applets/wncklet/window-list.c                                     | 5 -----
 applets/wncklet/wncklet.c                                         | 1 -
 applets/wncklet/workspace-switcher.c                              | 3 ---
 libmate-panel-applet/mate-panel-applet-factory.c                  | 1 -
 libmate-panel-applet/mate-panel-applet.c                          | 3 ---
 libmate-panel-applet/mate-panel-applet.h                          | 1 -
 libmate-panel-applet/test-dbus-applet.c                           | 1 -
 mate-panel/applet.c                                               | 2 --
 mate-panel/applet.h                                               | 3 ---
 mate-panel/drawer-private.h                                       | 3 ---
 mate-panel/drawer.c                                               | 5 -----
 mate-panel/drawer.h                                               | 3 ---
 mate-panel/launcher.c                                             | 3 ---
 mate-panel/launcher.h                                             | 1 -
 mate-panel/libmate-panel-applet-private/panel-applet-container.h  | 1 -
 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 1 -
 mate-panel/libpanel-util/panel-gtk.c                              | 1 -
 mate-panel/libpanel-util/panel-keyfile.h                          | 1 -
 mate-panel/menu.c                                                 | 4 ----
 mate-panel/menu.h                                                 | 1 -
 mate-panel/panel-action-button.c                                  | 1 -
 mate-panel/panel-addto.c                                          | 1 -
 mate-panel/panel-applet-frame.h                                   | 1 -
 mate-panel/panel-background.c                                     | 3 ---
 mate-panel/panel-ditem-editor.c                                   | 1 -
 mate-panel/panel-frame.c                                          | 1 -
 mate-panel/panel-lockdown.c                                       | 1 -
 mate-panel/panel-menu-button.c                                    | 2 --
 mate-panel/panel-menu-items.c                                     | 2 --
 mate-panel/panel-menu-items.h                                     | 4 ----
 mate-panel/panel-profile.h                                        | 2 --
 mate-panel/panel-recent.c                                         | 1 -
 mate-panel/panel-run-dialog.c                                     | 1 -
 mate-panel/panel-stock-icons.c                                    | 1 -
 mate-panel/panel-struts.c                                         | 3 ---
 mate-panel/panel-test-applets.c                                   | 2 --
 mate-panel/panel-toplevel.c                                       | 2 --
 mate-panel/panel-util.c                                           | 1 -
 mate-panel/panel-widget.c                                         | 7 -------
 mate-panel/panel-widget.h                                         | 2 --
 mate-panel/panel.c                                                | 2 --
 mate-panel/panel.h                                                | 1 -
 56 files changed, 110 deletions(-)

commit 7ded0f4d0a518169453c90f3c278f78e7345051b
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Oct 14 13:12:45 2021 +0200

    sn-dbus-menu-item: fix include guard

 applets/notification_area/status-notifier/sn-dbus-menu-item.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 25611e06d93dd06e781d4ec53e02ccb5f3ddf61f
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Oct 14 13:10:22 2021 +0200

    panel-applet-private: fix include guard

 libmate-panel-applet/panel-applet-private.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 271bd0c937b4773cf08ec29a60abe33fa125a9e8
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 25 17:38:28 2021 +0200

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 0a5006eba63a8214e6448b491b22663d0c13e54e
Author: mbkma <johannes.unruh@fau.de>
Date:   Wed Sep 1 13:01:41 2021 +0200

    fix show window thumbnails check button
    adapt ui file to reverted window-list.c

 applets/wncklet/window-list.c  | 18 +++++++++++-------
 applets/wncklet/window-list.ui | 11 +++--------
 2 files changed, 14 insertions(+), 15 deletions(-)

commit d7f71eaf9ee0840b46c8b5cd5c9ff5eab1f9de74
Author: mbkma <johannes.unruh@fau.de>
Date:   Wed Sep 1 12:28:25 2021 +0200

    Revert "window-list.c: use g_settings_* functions directly instead of using stored values"
    
    This reverts commit ce8167e1b498e47ca6f667f83acaf21d407135bb.

 applets/wncklet/window-list.c | 457 ++++++++++++++++++++++++++++++++----------
 1 file changed, 354 insertions(+), 103 deletions(-)

commit 0f59d595624361c429fd1bba9c5985cf968bdff1
Author: Yannick Mauray (frenchguych) <yannick@frenchguy.ch>
Date:   Thu Aug 26 22:57:51 2021 +0200

    Updated installation instructions ; added missing build dependency

 README | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 808032fcd41f10f8c794f9c8ea90a2aad30c76f7
Author: mbkma <johannes.unruh@fau.de>
Date:   Thu Aug 26 21:02:36 2021 +0200

    fix mate-desktop-item-edit executable

 mate-panel/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit bf36bbf8012e3036fd75555e89acbd65aaa8bb78
Author: raveit65 <mate@raveit.de>
Date:   Wed Aug 4 18:20:50 2021 +0200

    release 1.26.0

 NEWS         | 7 +++++++
 configure.ac | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 01ed866f3c8caebd7597553d9b7b911c3b304811
Author: raveit65 <mate@raveit.de>
Date:   Wed Aug 4 18:18:31 2021 +0200

    tx: sync with transifex

 help/mate-clock/cs/cs.po |   6 +-
 help/mate-clock/oc/oc.po |   2 +-
 help/mate-clock/pl/pl.po |  28 +++++++-
 help/mate-clock/sv/sv.po |  12 ++--
 help/mate-fish/cs/cs.po  |   6 +-
 help/mate-fish/pl/pl.po  |  28 +++++++-
 help/mate-fish/sv/sv.po  |  10 +--
 po/cs.po                 | 174 ++++++++++++++++++++++++-----------------------
 po/el.po                 |   2 +-
 po/en_GB.po              |  16 +++--
 po/fr.po                 |  34 ++++++++-
 po/hr.po                 |   2 +-
 po/id.po                 |  16 +++--
 po/zh_CN.po              |  43 +++++++++---
 14 files changed, 250 insertions(+), 129 deletions(-)

commit 426b2b30315328493764a8d8321c34e333451698
Author: raveit65 <mate@raveit.de>
Date:   Wed Aug 4 18:08:00 2021 +0200

    tx: update resource

 mate-panel.pot | 60 +++++++++++++++++++++++++++++-----------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

commit 125e80154d7d8f9588d3088c161ae5557656d9ef
Author: zhuyaliang <15132211195@163.com>
Date:   Sun Jul 4 21:53:21 2021 +0800

    Use absolute path g_get_home_dir replaces "~/"

 mate-panel/panel-run-dialog.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 633f79b08e2f2fe5e4c3195b2a983fa56b027e0c
Author: zhuyaliang <15132211195@163.com>
Date:   Sun Jul 25 21:12:43 2021 +0800

    Fix clock applet add location crash

 applets/clock/clock-location.c | 2 +-
 applets/clock/clock.c          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 845b18be6cfaefa6ee5a0d7c695f5bb71aef7c5a
Author: zhuyaliang <15132211195@163.com>
Date:   Sun Jul 11 00:26:58 2021 +0800

    Add the function of monitor panel launcher files

 mate-panel/launcher.c | 41 +++++++++++++++++++++++++++++++++++++++++
 mate-panel/launcher.h |  1 +
 2 files changed, 42 insertions(+)

commit b7f96b103cf84ee06fba2970b2fbe0eb71fc7bb6
Author: raveit65 <mate@raveit.de>
Date:   Fri Jul 2 00:57:54 2021 +0200

    release 1.25.3

 NEWS         | 32 ++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 33 insertions(+), 1 deletion(-)

commit 792cfee73b69edb417dc1adc2411e38721ddcb3b
Author: raveit65 <mate@raveit.de>
Date:   Fri Jul 2 00:51:35 2021 +0200

    sync with transifex

 help/mate-clock/af/af.po                   |  131 +--
 help/mate-clock/am/am.po                   |  131 +--
 help/mate-clock/ar/ar.po                   |  131 +--
 help/mate-clock/as/as.po                   |  131 +--
 help/mate-clock/ast/ast.po                 |  131 +--
 help/mate-clock/az/az.po                   |  131 +--
 help/mate-clock/be/be.po                   |  131 +--
 help/mate-clock/bg/bg.po                   |  131 +--
 help/mate-clock/bn/bn.po                   |  131 +--
 help/mate-clock/bn_IN/bn_IN.po             |  131 +--
 help/mate-clock/br/br.po                   |  131 +--
 help/mate-clock/bs/bs.po                   |  131 +--
 help/mate-clock/ca/ca.po                   |  212 ++--
 help/mate-clock/ca@valencia/ca@valencia.po |  206 ++--
 help/mate-clock/cmn/cmn.po                 |  131 +--
 help/mate-clock/crh/crh.po                 |  131 +--
 help/mate-clock/cs/cs.po                   |  178 ++-
 help/mate-clock/cy/cy.po                   |  131 +--
 help/mate-clock/da/da.po                   |  211 ++--
 help/mate-clock/de/de.po                   |  223 ++--
 help/mate-clock/dz/dz.po                   |  131 +--
 help/mate-clock/el/el.po                   |  194 ++--
 help/mate-clock/en_AU/en_AU.po             |  131 +--
 help/mate-clock/en_CA/en_CA.po             |  131 +--
 help/mate-clock/en_GB/en_GB.po             |  209 ++--
 help/mate-clock/eo/eo.po                   |  155 ++-
 help/mate-clock/es/es.po                   |  222 ++--
 help/mate-clock/es_AR/es_AR.po             |  131 +--
 help/mate-clock/es_CL/es_CL.po             |  131 +--
 help/mate-clock/es_CO/es_CO.po             |  131 +--
 help/mate-clock/es_PR/es_PR.po             |  131 +--
 help/mate-clock/et/et.po                   |  131 +--
 help/mate-clock/eu/eu.po                   |  204 ++--
 help/mate-clock/fa/fa.po                   |  131 +--
 help/mate-clock/fi/fi.po                   |  131 +--
 help/mate-clock/fr/fr.po                   |  218 ++--
 help/mate-clock/fur/fur.po                 |  131 +--
 help/mate-clock/fy/fy.po                   |  131 +--
 help/mate-clock/ga/ga.po                   |  131 +--
 help/mate-clock/gl/gl.po                   |  216 ++--
 help/mate-clock/gu/gu.po                   |  131 +--
 help/mate-clock/ha/ha.po                   |  131 +--
 help/mate-clock/he/he.po                   |  139 ++-
 help/mate-clock/hi/hi.po                   |  131 +--
 help/mate-clock/hr/hr.po                   |  153 ++-
 help/mate-clock/hu/hu.po                   |  213 ++--
 help/mate-clock/hy/hy.po                   |  133 +--
 help/mate-clock/id/id.po                   |  217 ++--
 help/mate-clock/ie/ie.po                   |  131 +--
 help/mate-clock/ig/ig.po                   |  131 +--
 help/mate-clock/is/is.po                   |  131 +--
 help/mate-clock/it/it.po                   |  216 ++--
 help/mate-clock/ja/ja.po                   |  405 ++++---
 help/mate-clock/ka/ka.po                   |  131 +--
 help/mate-clock/kab/kab.po                 |  131 +--
 help/mate-clock/kk/kk.po                   |  131 +--
 help/mate-clock/kn/kn.po                   |  131 +--
 help/mate-clock/ko/ko.po                   |  221 ++--
 help/mate-clock/ku/ku.po                   |  131 +--
 help/mate-clock/ky/ky.po                   |  131 +--
 help/mate-clock/lt/lt.po                   |  193 ++--
 help/mate-clock/lv/lv.po                   |  131 +--
 help/mate-clock/mai/mai.po                 |  131 +--
 help/mate-clock/mg/mg.po                   |  131 +--
 help/mate-clock/mk/mk.po                   |  131 +--
 help/mate-clock/ml/ml.po                   |  131 +--
 help/mate-clock/mn/mn.po                   |  131 +--
 help/mate-clock/mr/mr.po                   |  131 +--
 help/mate-clock/ms/ms.po                   |  212 ++--
 help/mate-clock/nb/nb.po                   |  141 ++-
 help/mate-clock/nds/nds.po                 |  131 +--
 help/mate-clock/ne/ne.po                   |  131 +--
 help/mate-clock/nl/nl.po                   |  188 ++--
 help/mate-clock/nn/nn.po                   |  133 +--
 help/mate-clock/nso/nso.po                 |  131 +--
 help/mate-clock/oc/oc.po                   |  222 ++--
 help/mate-clock/or/or.po                   |  131 +--
 help/mate-clock/pa/pa.po                   |  195 ++--
 help/mate-clock/pl/pl.po                   |  166 ++-
 help/mate-clock/ps/ps.po                   |  131 +--
 help/mate-clock/pt/pt.po                   |  218 ++--
 help/mate-clock/pt_BR/pt_BR.po             |  216 ++--
 help/mate-clock/ro/ro.po                   |  131 +--
 help/mate-clock/ru/ru.po                   |  209 ++--
 help/mate-clock/si/si.po                   |  131 +--
 help/mate-clock/sk/sk.po                   |  191 ++--
 help/mate-clock/sl/sl.po                   |  133 +--
 help/mate-clock/sq/sq.po                   |  139 ++-
 help/mate-clock/sr/sr.po                   | 1258 +++++++++++----------
 help/mate-clock/sr@latin/sr@latin.po       |  131 +--
 help/mate-clock/sv/sv.po                   |  205 ++--
 help/mate-clock/ta/ta.po                   |  131 +--
 help/mate-clock/te/te.po                   |  131 +--
 help/mate-clock/th/th.po                   |  201 ++--
 help/mate-clock/tr/tr.po                   |  208 ++--
 help/mate-clock/ug/ug.po                   |  131 +--
 help/mate-clock/uk/uk.po                   |  204 ++--
 help/mate-clock/ur/ur.po                   |  131 +--
 help/mate-clock/uz/uz.po                   |  131 +--
 help/mate-clock/vi/vi.po                   |  131 +--
 help/mate-clock/wa/wa.po                   |  131 +--
 help/mate-clock/xh/xh.po                   |  131 +--
 help/mate-clock/yo/yo.po                   |  131 +--
 help/mate-clock/zh_CN/zh_CN.po             |  152 ++-
 help/mate-clock/zh_HK/zh_HK.po             |  131 +--
 help/mate-clock/zh_TW/zh_TW.po             |  131 +--
 help/mate-clock/zu/zu.po                   |  131 +--
 help/mate-fish/af/af.po                    |  131 +--
 help/mate-fish/am/am.po                    |  131 +--
 help/mate-fish/an/an.po                    |  131 +--
 help/mate-fish/ar/ar.po                    |  131 +--
 help/mate-fish/as/as.po                    |  131 +--
 help/mate-fish/ast/ast.po                  |  131 +--
 help/mate-fish/az/az.po                    |  131 +--
 help/mate-fish/be/be.po                    |  131 +--
 help/mate-fish/bg/bg.po                    |  131 +--
 help/mate-fish/bn/bn.po                    |  131 +--
 help/mate-fish/bn_IN/bn_IN.po              |  131 +--
 help/mate-fish/br/br.po                    |  131 +--
 help/mate-fish/bs/bs.po                    |  131 +--
 help/mate-fish/ca/ca.po                    |  212 ++--
 help/mate-fish/ca@valencia/ca@valencia.po  |  206 ++--
 help/mate-fish/cmn/cmn.po                  |  131 +--
 help/mate-fish/crh/crh.po                  |  131 +--
 help/mate-fish/cs/cs.po                    |  178 ++-
 help/mate-fish/cy/cy.po                    |  131 +--
 help/mate-fish/da/da.po                    |  211 ++--
 help/mate-fish/de/de.po                    |  223 ++--
 help/mate-fish/dz/dz.po                    |  131 +--
 help/mate-fish/el/el.po                    |  194 ++--
 help/mate-fish/en_AU/en_AU.po              |  131 +--
 help/mate-fish/en_CA/en_CA.po              |  131 +--
 help/mate-fish/en_GB/en_GB.po              |  209 ++--
 help/mate-fish/eo/eo.po                    |  155 ++-
 help/mate-fish/es/es.po                    |  218 ++--
 help/mate-fish/es_AR/es_AR.po              |  131 +--
 help/mate-fish/es_CL/es_CL.po              |  131 +--
 help/mate-fish/es_CO/es_CO.po              |  131 +--
 help/mate-fish/es_ES/es_ES.po              |  131 +--
 help/mate-fish/es_MX/es_MX.po              |  131 +--
 help/mate-fish/es_PR/es_PR.po              |  131 +--
 help/mate-fish/et/et.po                    |  131 +--
 help/mate-fish/eu/eu.po                    |  204 ++--
 help/mate-fish/fa/fa.po                    |  131 +--
 help/mate-fish/fi/fi.po                    |  131 +--
 help/mate-fish/fr/fr.po                    |  219 ++--
 help/mate-fish/frp/frp.po                  |  131 +--
 help/mate-fish/fur/fur.po                  |  131 +--
 help/mate-fish/fy/fy.po                    |  131 +--
 help/mate-fish/ga/ga.po                    |  131 +--
 help/mate-fish/gl/gl.po                    |  216 ++--
 help/mate-fish/gu/gu.po                    |  131 +--
 help/mate-fish/ha/ha.po                    |  131 +--
 help/mate-fish/he/he.po                    |  133 +--
 help/mate-fish/hi/hi.po                    |  131 +--
 help/mate-fish/hr/hr.po                    |  155 ++-
 help/mate-fish/hu/hu.po                    |  213 ++--
 help/mate-fish/hy/hy.po                    |  133 +--
 help/mate-fish/ia/ia.po                    |  131 +--
 help/mate-fish/id/id.po                    |  221 ++--
 help/mate-fish/ie/ie.po                    |  131 +--
 help/mate-fish/ig/ig.po                    |  131 +--
 help/mate-fish/is/is.po                    |  131 +--
 help/mate-fish/it/it.po                    |  216 ++--
 help/mate-fish/ja/ja.po                    |  323 +++---
 help/mate-fish/jv/jv.po                    |  131 +--
 help/mate-fish/ka/ka.po                    |  131 +--
 help/mate-fish/kab/kab.po                  |  131 +--
 help/mate-fish/kk/kk.po                    |  131 +--
 help/mate-fish/km/km.po                    |  131 +--
 help/mate-fish/kn/kn.po                    |  131 +--
 help/mate-fish/ko/ko.po                    |  214 ++--
 help/mate-fish/ku/ku.po                    |  131 +--
 help/mate-fish/ku_IQ/ku_IQ.po              |  131 +--
 help/mate-fish/ky/ky.po                    |  131 +--
 help/mate-fish/la/la.po                    |  131 +--
 help/mate-fish/lt/lt.po                    |  193 ++--
 help/mate-fish/lv/lv.po                    |  131 +--
 help/mate-fish/mai/mai.po                  |  131 +--
 help/mate-fish/mg/mg.po                    |  131 +--
 help/mate-fish/mi/mi.po                    |  131 +--
 help/mate-fish/mk/mk.po                    |  131 +--
 help/mate-fish/ml/ml.po                    |  131 +--
 help/mate-fish/mn/mn.po                    |  131 +--
 help/mate-fish/mr/mr.po                    |  131 +--
 help/mate-fish/ms/ms.po                    |  212 ++--
 help/mate-fish/nb/nb.po                    |  145 ++-
 help/mate-fish/nds/nds.po                  |  131 +--
 help/mate-fish/ne/ne.po                    |  131 +--
 help/mate-fish/nl/nl.po                    |  190 ++--
 help/mate-fish/nn/nn.po                    |  133 +--
 help/mate-fish/nso/nso.po                  |  131 +--
 help/mate-fish/oc/oc.po                    |  216 ++--
 help/mate-fish/or/or.po                    |  131 +--
 help/mate-fish/pa/pa.po                    |  195 ++--
 help/mate-fish/pl/pl.po                    |  164 ++-
 help/mate-fish/ps/ps.po                    |  131 +--
 help/mate-fish/pt/pt.po                    |  218 ++--
 help/mate-fish/pt_BR/pt_BR.po              |  214 ++--
 help/mate-fish/ro/ro.po                    |  131 +--
 help/mate-fish/ru/ru.po                    |  200 ++--
 help/mate-fish/si/si.po                    |  131 +--
 help/mate-fish/sk/sk.po                    |  191 ++--
 help/mate-fish/sl/sl.po                    |  137 ++-
 help/mate-fish/sq/sq.po                    |  151 ++-
 help/mate-fish/sr/sr.po                    |  750 +++++++------
 help/mate-fish/sr@latin/sr@latin.po        |  131 +--
 help/mate-fish/sv/sv.po                    |  205 ++--
 help/mate-fish/ta/ta.po                    |  131 +--
 help/mate-fish/te/te.po                    |  131 +--
 help/mate-fish/th/th.po                    |  201 ++--
 help/mate-fish/tk/tk.po                    |  131 +--
 help/mate-fish/tr/tr.po                    |  208 ++--
 help/mate-fish/ug/ug.po                    |  131 +--
 help/mate-fish/uk/uk.po                    |  217 ++--
 help/mate-fish/ur/ur.po                    |  131 +--
 help/mate-fish/uz/uz.po                    |  131 +--
 help/mate-fish/vi/vi.po                    |  131 +--
 help/mate-fish/wa/wa.po                    |  131 +--
 help/mate-fish/xh/xh.po                    |  131 +--
 help/mate-fish/yo/yo.po                    |  131 +--
 help/mate-fish/zh-Hans/zh-Hans.po          |  131 +--
 help/mate-fish/zh_CN/zh_CN.po              |  154 ++-
 help/mate-fish/zh_HK/zh_HK.po              |  131 +--
 help/mate-fish/zh_TW/zh_TW.po              |  131 +--
 help/mate-fish/zu/zu.po                    |  131 +--
 po/af.po                                   |  805 +++++++-------
 po/am.po                                   |  809 +++++++-------
 po/ar.po                                   |  809 +++++++-------
 po/as.po                                   |  809 +++++++-------
 po/ast.po                                  |  809 +++++++-------
 po/az.po                                   |  805 +++++++-------
 po/be.po                                   |  809 +++++++-------
 po/bg.po                                   |  811 +++++++-------
 po/bn.po                                   |  809 +++++++-------
 po/bn_IN.po                                |  809 +++++++-------
 po/br.po                                   |  805 +++++++-------
 po/bs.po                                   |  809 +++++++-------
 po/ca.po                                   |  821 +++++++-------
 po/ca@valencia.po                          |  809 +++++++-------
 po/cmn.po                                  |  809 +++++++-------
 po/crh.po                                  |  805 +++++++-------
 po/cs.po                                   |  829 +++++++-------
 po/cy.po                                   |  811 +++++++-------
 po/da.po                                   |  845 +++++++-------
 po/de.po                                   |  832 +++++++-------
 po/dz.po                                   |  805 +++++++-------
 po/el.po                                   |  817 +++++++-------
 po/en_AU.po                                |  809 +++++++-------
 po/en_CA.po                                |  805 +++++++-------
 po/en_GB.po                                |  916 ++++++++-------
 po/eo.po                                   |  805 +++++++-------
 po/es.po                                   |  835 +++++++-------
 po/es_AR.po                                |  803 +++++++-------
 po/es_CL.po                                |  803 +++++++-------
 po/es_CO.po                                |  809 +++++++-------
 po/es_CR.po                                |  803 +++++++-------
 po/es_DO.po                                |  803 +++++++-------
 po/es_EC.po                                |  803 +++++++-------
 po/es_ES.po                                |  803 +++++++-------
 po/es_MX.po                                |  803 +++++++-------
 po/es_NI.po                                |  803 +++++++-------
 po/es_PA.po                                |  803 +++++++-------
 po/es_PE.po                                |  803 +++++++-------
 po/es_PR.po                                |  803 +++++++-------
 po/es_SV.po                                |  803 +++++++-------
 po/es_UY.po                                |  803 +++++++-------
 po/es_VE.po                                |  803 +++++++-------
 po/et.po                                   |  809 +++++++-------
 po/eu.po                                   |  809 +++++++-------
 po/fa.po                                   |  805 +++++++-------
 po/fi.po                                   |  811 +++++++-------
 po/fr.po                                   |  831 +++++++-------
 po/fr_CA.po                                |  803 +++++++-------
 po/frp.po                                  |  807 +++++++-------
 po/fur.po                                  |  805 +++++++-------
 po/fy.po                                   |  805 +++++++-------
 po/ga.po                                   |  809 +++++++-------
 po/gl.po                                   |  955 ++++++++--------
 po/gu.po                                   |  809 +++++++-------
 po/ha.po                                   |  805 +++++++-------
 po/he.po                                   |  811 +++++++-------
 po/hi.po                                   |  809 +++++++-------
 po/hr.po                                   |  811 +++++++-------
 po/hu.po                                   |  831 +++++++-------
 po/hy.po                                   |  826 +++++++-------
 po/ia.po                                   |  803 +++++++-------
 po/id.po                                   |  825 +++++++-------
 po/ie.po                                   |  809 +++++++-------
 po/ig.po                                   |  805 +++++++-------
 po/is.po                                   |  809 +++++++-------
 po/it.po                                   |  830 +++++++-------
 po/ja.po                                   | 1019 +++++++++--------
 po/jv.po                                   |  803 +++++++-------
 po/ka.po                                   |  805 +++++++-------
 po/kab.po                                  |  815 +++++++-------
 po/kk.po                                   |  811 +++++++-------
 po/kn.po                                   |  829 +++++++-------
 po/ko.po                                   |  923 ++++++++-------
 po/ku.po                                   |  805 +++++++-------
 po/ku_IQ.po                                |  809 +++++++-------
 po/ky.po                                   |  809 +++++++-------
 po/la.po                                   | 1663 +++++++++++++++-------------
 po/li.po                                   |  803 +++++++-------
 po/lt.po                                   |  844 +++++++-------
 po/lv.po                                   |  809 +++++++-------
 po/mai.po                                  |  809 +++++++-------
 po/mg.po                                   |  805 +++++++-------
 po/mi.po                                   |  803 +++++++-------
 po/mk.po                                   |  805 +++++++-------
 po/ml.po                                   |  809 +++++++-------
 po/mn.po                                   |  805 +++++++-------
 po/mr.po                                   |  809 +++++++-------
 po/ms.po                                   |  828 +++++++-------
 po/nb.po                                   |  829 +++++++-------
 po/nds.po                                  |  811 +++++++-------
 po/ne.po                                   |  805 +++++++-------
 po/nl.po                                   | 1268 +++++++++++----------
 po/nn.po                                   |  805 +++++++-------
 po/nso.po                                  |  805 +++++++-------
 po/oc.po                                   |  994 +++++++++--------
 po/or.po                                   |  809 +++++++-------
 po/pa.po                                   |  809 +++++++-------
 po/pl.po                                   |  891 ++++++++-------
 po/pms.po                                  |  807 +++++++-------
 po/ps.po                                   |  805 +++++++-------
 po/pt.po                                   |  884 ++++++++-------
 po/pt_BR.po                                |  811 +++++++-------
 po/ro.po                                   |  811 +++++++-------
 po/ru.po                                   |  832 +++++++-------
 po/rw.po                                   |  803 +++++++-------
 po/sc.po                                   |  803 +++++++-------
 po/si.po                                   |  805 +++++++-------
 po/sk.po                                   |  831 +++++++-------
 po/sl.po                                   |  812 +++++++-------
 po/sq.po                                   |  809 +++++++-------
 po/sr.po                                   |  822 +++++++-------
 po/sr@latin.po                             |  809 +++++++-------
 po/sv.po                                   |  835 +++++++-------
 po/ta.po                                   |  809 +++++++-------
 po/te.po                                   |  809 +++++++-------
 po/th.po                                   |  809 +++++++-------
 po/tk.po                                   |  803 +++++++-------
 po/tr.po                                   |  831 +++++++-------
 po/tt.po                                   |  803 +++++++-------
 po/ug.po                                   |  805 +++++++-------
 po/uk.po                                   | 1162 +++++++++----------
 po/ur.po                                   |  809 +++++++-------
 po/uz.po                                   |  809 +++++++-------
 po/vi.po                                   |  809 +++++++-------
 po/wa.po                                   |  805 +++++++-------
 po/xh.po                                   |  805 +++++++-------
 po/yi.po                                   |  803 +++++++-------
 po/yo.po                                   |  805 +++++++-------
 po/zh_CN.po                                |  835 +++++++-------
 po/zh_HK.po                                |  809 +++++++-------
 po/zh_TW.po                                |  821 +++++++-------
 po/zu.po                                   |  805 +++++++-------
 358 files changed, 74608 insertions(+), 71399 deletions(-)

commit 0e33cbf496a109e8035e2aed60da9543363b4a9c
Author: raveit65 <mate@raveit.de>
Date:   Fri Jul 2 00:41:25 2021 +0200

    travis-Ci: use libera.chat as notification server

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 70f8c8a5b473ad4bea3ee853208de0cdddefd2c0
Author: raveit65 <mate@raveit.de>
Date:   Tue Jun 22 13:40:56 2021 +0200

    tx: update resource

 mate-clock.pot |  62 +++--
 mate-fish.pot  |  62 +++--
 mate-panel.pot | 713 ++++++++++++++++++++++++++++++---------------------------
 3 files changed, 427 insertions(+), 410 deletions(-)

commit 8f771c2b780cffb391c9e72c4dab9bfe758befc2
Author: raveit65 <mate@raveit.de>
Date:   Tue Jun 22 13:35:05 2021 +0200

    update copyright to 2021

 libmate-panel-applet/mate-panel-applet-factory.c                     | 1 +
 libmate-panel-applet/mate-panel-applet-factory.h                     | 1 +
 libmate-panel-applet/mate-panel-applet-gsettings.c                   | 1 +
 libmate-panel-applet/mate-panel-applet-gsettings.h                   | 1 +
 libmate-panel-applet/mate-panel-applet.c                             | 1 +
 libmate-panel-applet/mate-panel-applet.h                             | 1 +
 libmate-panel-applet/panel-applet-private.h                          | 1 +
 libmate-panel-applet/panel-plug-private.h                            | 1 +
 libmate-panel-applet/panel-plug.c                                    | 1 +
 mate-panel/applet.c                                                  | 1 +
 mate-panel/drawer-private.h                                          | 1 +
 mate-panel/drawer.c                                                  | 1 +
 mate-panel/launcher.c                                                | 1 +
 mate-panel/launcher.h                                                | 1 +
 mate-panel/libmate-panel-applet-private/panel-applet-container.c     | 1 +
 mate-panel/libmate-panel-applet-private/panel-applet-container.h     | 1 +
 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c    | 1 +
 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.h    | 1 +
 mate-panel/libmate-panel-applet-private/panel-applets-manager-dbus.c | 1 +
 mate-panel/libmate-panel-applet-private/panel-applets-manager-dbus.h | 1 +
 mate-panel/libpanel-util/panel-cleanup.c                             | 1 +
 mate-panel/libpanel-util/panel-cleanup.h                             | 1 +
 mate-panel/libpanel-util/panel-error.c                               | 1 +
 mate-panel/libpanel-util/panel-error.h                               | 1 +
 mate-panel/libpanel-util/panel-glib.c                                | 1 +
 mate-panel/libpanel-util/panel-glib.h                                | 1 +
 mate-panel/libpanel-util/panel-gtk.c                                 | 1 +
 mate-panel/libpanel-util/panel-gtk.h                                 | 1 +
 mate-panel/libpanel-util/panel-icon-chooser.c                        | 1 +
 mate-panel/libpanel-util/panel-icon-chooser.h                        | 1 +
 mate-panel/libpanel-util/panel-keyfile.c                             | 1 +
 mate-panel/libpanel-util/panel-keyfile.h                             | 1 +
 mate-panel/libpanel-util/panel-launch.c                              | 1 +
 mate-panel/libpanel-util/panel-launch.h                              | 1 +
 mate-panel/libpanel-util/panel-list.c                                | 1 +
 mate-panel/libpanel-util/panel-list.h                                | 1 +
 mate-panel/libpanel-util/panel-session-manager.c                     | 1 +
 mate-panel/libpanel-util/panel-session-manager.h                     | 1 +
 mate-panel/libpanel-util/panel-show.c                                | 1 +
 mate-panel/libpanel-util/panel-show.h                                | 1 +
 mate-panel/libpanel-util/panel-xdg.c                                 | 1 +
 mate-panel/libpanel-util/panel-xdg.h                                 | 1 +
 mate-panel/main.c                                                    | 1 +
 mate-panel/menu.c                                                    | 1 +
 mate-panel/menu.h                                                    | 1 +
 mate-panel/panel-a11y.c                                              | 1 +
 mate-panel/panel-a11y.h                                              | 1 +
 mate-panel/panel-action-button.c                                     | 1 +
 mate-panel/panel-action-button.h                                     | 1 +
 mate-panel/panel-action-protocol.c                                   | 1 +
 mate-panel/panel-action-protocol.h                                   | 1 +
 mate-panel/panel-addto.c                                             | 1 +
 mate-panel/panel-addto.h                                             | 1 +
 mate-panel/panel-applet-frame.c                                      | 1 +
 mate-panel/panel-applet-frame.h                                      | 1 +
 mate-panel/panel-applet-info.c                                       | 1 +
 mate-panel/panel-applet-info.h                                       | 1 +
 mate-panel/panel-applets-manager.c                                   | 1 +
 mate-panel/panel-applets-manager.h                                   | 1 +
 mate-panel/panel-background.c                                        | 1 +
 mate-panel/panel-background.h                                        | 1 +
 mate-panel/panel-bindings.c                                          | 1 +
 mate-panel/panel-bindings.h                                          | 1 +
 mate-panel/panel-config-global.c                                     | 1 +
 mate-panel/panel-config-global.h                                     | 1 +
 mate-panel/panel-context-menu.c                                      | 1 +
 mate-panel/panel-context-menu.h                                      | 1 +
 mate-panel/panel-ditem-editor.c                                      | 1 +
 mate-panel/panel-ditem-editor.h                                      | 1 +
 mate-panel/panel-enums-gsettings.h                                   | 1 +
 mate-panel/panel-enums.h                                             | 1 +
 mate-panel/panel-force-quit.c                                        | 1 +
 mate-panel/panel-force-quit.h                                        | 1 +
 mate-panel/panel-frame.c                                             | 1 +
 mate-panel/panel-frame.h                                             | 1 +
 mate-panel/panel-globals.h                                           | 1 +
 mate-panel/panel-layout.c                                            | 1 +
 mate-panel/panel-layout.h                                            | 1 +
 mate-panel/panel-lockdown.c                                          | 1 +
 mate-panel/panel-lockdown.h                                          | 1 +
 mate-panel/panel-menu-bar.c                                          | 1 +
 mate-panel/panel-menu-bar.h                                          | 1 +
 mate-panel/panel-menu-button.c                                       | 1 +
 mate-panel/panel-menu-button.h                                       | 1 +
 mate-panel/panel-menu-items.c                                        | 1 +
 mate-panel/panel-menu-items.h                                        | 1 +
 mate-panel/panel-modules.c                                           | 1 +
 mate-panel/panel-modules.h                                           | 1 +
 mate-panel/panel-multimonitor.c                                      | 1 +
 mate-panel/panel-multimonitor.h                                      | 1 +
 mate-panel/panel-profile.c                                           | 1 +
 mate-panel/panel-profile.h                                           | 1 +
 mate-panel/panel-properties-dialog.c                                 | 1 +
 mate-panel/panel-properties-dialog.h                                 | 1 +
 mate-panel/panel-recent.c                                            | 1 +
 mate-panel/panel-recent.h                                            | 1 +
 mate-panel/panel-reset.c                                             | 1 +
 mate-panel/panel-reset.h                                             | 1 +
 mate-panel/panel-run-dialog.c                                        | 1 +
 mate-panel/panel-run-dialog.h                                        | 1 +
 mate-panel/panel-separator.c                                         | 1 +
 mate-panel/panel-separator.h                                         | 1 +
 mate-panel/panel-session.c                                           | 1 +
 mate-panel/panel-session.h                                           | 1 +
 mate-panel/panel-shell.c                                             | 1 +
 mate-panel/panel-shell.h                                             | 1 +
 mate-panel/panel-stock-icons.c                                       | 1 +
 mate-panel/panel-stock-icons.h                                       | 1 +
 mate-panel/panel-struts.c                                            | 1 +
 mate-panel/panel-struts.h                                            | 1 +
 mate-panel/panel-test-applets.c                                      | 1 +
 mate-panel/panel-toplevel.c                                          | 1 +
 mate-panel/panel-toplevel.h                                          | 1 +
 mate-panel/panel-util.c                                              | 1 +
 mate-panel/panel-widget.c                                            | 1 +
 mate-panel/panel-widget.h                                            | 1 +
 mate-panel/panel-xutils.c                                            | 1 +
 mate-panel/panel-xutils.h                                            | 1 +
 mate-panel/panel.c                                                   | 1 +
 mate-panel/wayland-backend.c                                         | 1 +
 mate-panel/wayland-backend.h                                         | 1 +
 mate-panel/xstuff.c                                                  | 1 +
 122 files changed, 122 insertions(+)

commit fa34064bca31952549a2b2596cc7b67205a54fb1
Author: mu <59917266+4eUeP@users.noreply.github.com>
Date:   Sat Jan 2 17:14:57 2021 +0800

    workspace-switcher: support xmonad WM

 applets/wncklet/workspace-switcher.c | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

commit 85d1a47b1b475eb6c24d3ea481b9e614243fcf32
Author: raveit65 <mate@raveit.de>
Date:   Sat May 29 13:15:58 2021 +0200

    travis-ci: use ubuntu focal as host system
    
    fixes build issues with fedora:latest (f34) tag.

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4e73927c948a4e6799a043f454f672f8ce879a6c
Author: raveit65 <mate@raveit.de>
Date:   Fri Apr 30 19:06:49 2021 +0200

    travis: build with gtk-layer-shell from distros

 .build.yml | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

commit ce8167e1b498e47ca6f667f83acaf21d407135bb
Author: mbkma <johannes.unruh@fau.de>
Date:   Fri Apr 30 22:40:53 2021 +0200

    window-list.c: use g_settings_* functions directly instead of using stored values
    - use g_settings_bind when possible

 applets/wncklet/window-list.c | 457 ++++++++++--------------------------------
 1 file changed, 103 insertions(+), 354 deletions(-)

commit fecd94f75922fbcc1cbe19598152616320fd740c
Author: mbkma <johannes.unruh@fau.de>
Date:   Fri Apr 30 22:12:50 2021 +0200

    window-list.ui: use GtkNotebook
    
    Set some callback functions in the ui file.

 applets/wncklet/window-list.ui | 640 ++++++++++++++++++++---------------------
 1 file changed, 315 insertions(+), 325 deletions(-)

commit a76112c43e5be1951ab726b0aecf2d49b064e337
Author: zhuyaliang <15132211195@163.com>
Date:   Wed Apr 7 12:54:02 2021 +0800

    Replace deprecated GCompletion with GtkEntryCompletion

 mate-panel/panel-run-dialog.c | 90 ++++++++++++++++++-------------------------
 1 file changed, 37 insertions(+), 53 deletions(-)

commit b7db6b8ec8bb39cfd160644593ab26736312cfde
Author: raveit65 <mate@raveit.de>
Date:   Sun Apr 25 12:07:17 2021 +0200

    travis: disable travis builds for ubuntu
    
    Sadly, there is a limit for free builds at docker.com
    See discussion
    https://github.com/orgs/mate-desktop/teams/core-team/discussions/25

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit af628c2acd213ee450542c1cf8d3ded014717db4
Author: raveit65 <mate@raveit.de>
Date:   Sat Apr 10 19:56:28 2021 +0200

    struts: add panel_xutils_unset_strut
    
    origin commit:
    https://gitlab.gnome.org/GNOME/gnome-panel/-/commit/3e96a81

 mate-panel/panel-struts.c |  2 +-
 mate-panel/panel-xutils.c | 24 ++++++++++++++++++++++++
 mate-panel/panel-xutils.h |  2 ++
 3 files changed, 27 insertions(+), 1 deletion(-)

commit abaeb4e9be26d9c448434a6bfdd2f87a381f8d50
Author: raveit65 <mate@raveit.de>
Date:   Sat Apr 10 18:27:48 2021 +0200

    panel-xutils: tab to spaces
    
    - Use 4 spaces at the beginning of a line

 mate-panel/panel-xutils.c | 280 +++++++++++++++++++++++-----------------------
 mate-panel/panel-xutils.h |  14 +--
 2 files changed, 147 insertions(+), 147 deletions(-)

commit d86a07a2897a6b1515ff417b49be5adf1ef3837d
Author: raveit65 <mate@raveit.de>
Date:   Sat Apr 10 17:53:23 2021 +0200

    panel-struts: tab to spaces
    
    - start lines with 4 spaces

 mate-panel/panel-struts.c | 706 +++++++++++++++++++++++-----------------------
 mate-panel/panel-struts.h |  24 +-
 2 files changed, 365 insertions(+), 365 deletions(-)

commit edc67fcaf4be1c14ab562a172a3e3a08e757d078
Author: Gordon N. Squash <gordsqsh@protonmail.com>
Date:   Wed Apr 7 00:34:38 2021 -0400

    Make Recent Documents list in Places menu of configurable length (#1216)

 data/org.mate.panel.menubar.gschema.xml.in |  6 ++++++
 mate-panel/panel-menu-items.c              | 11 ++++++++++-
 mate-panel/panel-recent.c                  |  6 +++++-
 mate-panel/panel-recent.h                  |  3 ++-
 mate-panel/panel-schemas.h                 |  1 +
 5 files changed, 24 insertions(+), 3 deletions(-)

commit 8245b0e9dadb7c8be534301bf0060227199e79d6
Author: zhuyaliang <15132211195@163.com>
Date:   Thu Apr 1 10:06:48 2021 +0800

    Add window list disable mouse scrolling function

 ...rg.mate.panel.applet.window-list.gschema.xml.in |  5 ++
 applets/wncklet/window-list.c                      | 23 ++++++++
 applets/wncklet/window-list.ui                     | 65 ++++++++++++++++++++++
 3 files changed, 93 insertions(+)

commit e9d2e89f5b66574401376c6ef64c856a6cee7f44
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Mar 23 17:35:44 2021 +0100

    Add panel-ditem-editor-dialog.ui

 mate-panel/Makefile.am                  |   5 +-
 mate-panel/panel-ditem-editor-dialog.ui | 322 ++++++++++++++++++++++++++++
 mate-panel/panel-ditem-editor.c         | 360 ++++++++++----------------------
 mate-panel/panel.gresource.xml          |   1 +
 po/POTFILES.in                          |   1 +
 5 files changed, 433 insertions(+), 256 deletions(-)

commit c408d3eaf12ca962deb079d38980326cd2cb12a9
Author: raveit65 <mate@raveit.de>
Date:   Mon Mar 8 22:15:51 2021 +0100

    travis: build with mate-common-1.24.2 from repos

 .build.yml | 12 ------------
 1 file changed, 12 deletions(-)

commit 6bbd3d319ea31d577aef82453a5d166464bf6c77
Author: raveit65 <mate@raveit.de>
Date:   Mon Feb 22 22:03:04 2021 +0100

    tx: temporarily disable build for ArchLinux

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1e7936fc0c8deda42f280bb035805f9100fda4eb
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Feb 21 17:34:12 2021 +0100

    notification_area: Add XAyatanaLabel and XAyatanaNewLabel to interface description

 .../status-notifier/org.kde.StatusNotifierItem.xml             | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 58775c48a4dfe4bb6d468f721b27f7c1f631fb57
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Feb 20 18:42:42 2021 +0100

    notification_area: move XAyatana(New)Label case at the bottom

 applets/notification_area/status-notifier/sn-item-v0.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit b3221a9c6363851469822c25702f5b986ed479c6
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Feb 20 18:39:31 2021 +0100

    notification_area: fix memory leak

 applets/notification_area/status-notifier/sn-item-v0.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 7e99bd8fa3b454449e4b8744ebe6b150fa0a4049
Author: zhuyaliang <15132211195@163.com>
Date:   Fri Jan 29 10:07:36 2021 +0800

    Add text label display function for notification area

 .../notification_area/status-notifier/sn-item-v0.c | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

commit c63575650567d111810b6633dda08409d868d02d
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jan 9 14:47:06 2021 +0100

    Redundant NULL check before freeing a variable

 applets/clock/clock-location.c  | 61 +++++++++--------------------------------
 applets/clock/clock.c           | 11 ++++----
 applets/clock/system-timezone.c | 28 ++++++-------------
 applets/fish/fish.c             | 42 ++++++++++++++--------------
 4 files changed, 47 insertions(+), 95 deletions(-)

commit 9416495926b8679b7709731584e77a740959d800
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jan 26 11:28:10 2021 +0100

    build: Use PACKAGE_URL variable

 applets/clock/clock.c                | 2 +-
 applets/fish/fish.c                  | 2 +-
 applets/wncklet/showdesktop.c        | 4 ++--
 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/window-menu.c        | 4 ++--
 applets/wncklet/workspace-switcher.c | 2 +-
 configure.ac                         | 2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

commit 620603885fc680c0a46fd090ae284fb2d631302a
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jan 16 14:12:36 2021 +0100

    update resource for transifex

 mate-clock.pot |  4 ++--
 mate-fish.pot  |  4 ++--
 mate-panel.pot | 72 +++++++++++++++++++++++++++++-----------------------------
 3 files changed, 40 insertions(+), 40 deletions(-)

commit de6d2fe63e57b0d89456cd122954446096fc0bee
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jan 16 14:10:19 2021 +0100

    Update copyright to 2021

 applets/clock/clock.c                | 2 +-
 applets/fish/fish.c                  | 2 +-
 applets/notification_area/main.c     | 2 +-
 applets/wncklet/showdesktop.c        | 2 +-
 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/window-menu.c        | 2 +-
 applets/wncklet/workspace-switcher.c | 2 +-
 help/mate-clock/C/index.docbook      | 2 +-
 help/mate-fish/C/index.docbook       | 2 +-
 mate-panel/panel-context-menu.c      | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

commit 40f939f9d7da4af900553febfa26205f2e193ef8
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 26 11:36:10 2020 +0100

    panel-toplevel: declaration of 'allocation' shadows a parameter

 mate-panel/panel-toplevel.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 36b03963a80a849be8de0bd65edd8fd9b1698881
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 26 11:35:21 2020 +0100

    panel-menu-items: declaration of 'item' shadows a previous local

 mate-panel/panel-menu-items.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 7c58d22450c00649e0ff96cf10b26bcdccbc67e6
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 26 11:19:59 2020 +0100

    Local variable shadows outer variable warning reported by cppcheck

 .../notification_area/status-notifier/sn-item-v0.c | 10 ++---
 mate-panel/libpanel-util/panel-icon-chooser.c      | 14 ++----
 mate-panel/panel-multimonitor.c                    | 50 +++++++++++-----------
 3 files changed, 33 insertions(+), 41 deletions(-)

commit 9977c91b407f65ad3f3777b984155a35dc880096
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 26 10:33:54 2020 +0100

     Variable is reassigned a value before the old one has been used

 mate-panel/libpanel-util/panel-xdg.c | 10 ++--------
 mate-panel/panel-toplevel.c          |  2 --
 2 files changed, 2 insertions(+), 10 deletions(-)

commit 06292db3c2b9a4ad81c7063c7bcff7cb6c0f927a
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jan 5 17:09:56 2021 +0100

    wncklet: remove extra ref on gdk_x11_window_foreign_new_for_display

 applets/wncklet/window-list.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit b14abf57c20fc848ba1903c40841c3c107ecc7d4
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 26 12:07:01 2020 +0100

    panel-properties-dialog: show dialog on _present instead of _new

 mate-panel/panel-properties-dialog.c | 26 +++++++++-----------------
 1 file changed, 9 insertions(+), 17 deletions(-)

commit c4a5e775da5b592e82a79fcb5e09b1f2fe86567a
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jan 5 13:21:23 2021 +0100

    wncklet: search the window before creating a new one

 applets/wncklet/window-list.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 755d6e73771bddfd192e47ef593460e8540591ca
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 25 11:36:32 2020 +0100

    wncklet: Condition ~wm_name is always true

 applets/wncklet/workspace-switcher.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c4efeed9a6e50f83a21490dfbab05395b9aafcd1
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 25 11:25:00 2020 +0100

    wncklet: variable is assigned a value that is never used

 applets/wncklet/workspace-switcher.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c071e9dd6ceeec569c95be8df7ad130629e1fec1
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 25 10:02:12 2020 +0100

    wncklet: missing breaks on switch cases

 applets/wncklet/window-list.c | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

commit 13f656a36dd24c15b0903ab37fa2d0422a1abb60
Author: raveit65 <mate@raveit.de>
Date:   Wed Dec 16 16:09:06 2020 +0100

    release 1.25.2

 NEWS         | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 50 insertions(+), 1 deletion(-)

commit a430c8f02a90d8dba327868ce28846173e3f2f9f
Author: raveit65 <mate@raveit.de>
Date:   Wed Dec 16 15:42:09 2020 +0100

    tx:sync with transifex

 help/mate-clock/fr/fr.po       |  36 ++-
 help/mate-clock/he/he.po       |  10 +-
 help/mate-clock/hy/hy.po       |   2 +-
 help/mate-clock/id/id.po       |  23 +-
 help/mate-clock/ja/ja.po       |   6 +-
 help/mate-clock/kab/kab.po     |   4 +-
 help/mate-clock/nb/nb.po       |  41 ++-
 help/mate-clock/nl/nl.po       |  27 +-
 help/mate-clock/oc/oc.po       |  56 ++++
 help/mate-clock/sr/sr.po       |  61 +++-
 help/mate-clock/sv/sv.po       |  24 +-
 help/mate-clock/uz/uz.po       |   4 +-
 help/mate-clock/zh_CN/zh_CN.po |   4 +-
 help/mate-fish/fr/fr.po        |  34 +-
 help/mate-fish/he/he.po        |  10 +-
 help/mate-fish/hy/hy.po        |   2 +-
 help/mate-fish/id/id.po        |  15 +-
 help/mate-fish/ja/ja.po        |   6 +-
 help/mate-fish/kab/kab.po      |   4 +-
 help/mate-fish/nb/nb.po        |   7 +-
 help/mate-fish/nl/nl.po        |  27 +-
 help/mate-fish/oc/oc.po        |  50 +++
 help/mate-fish/sr/sr.po        |  59 +++-
 help/mate-fish/sv/sv.po        |   4 +-
 help/mate-fish/uz/uz.po        |   4 +-
 help/mate-fish/zh_CN/zh_CN.po  |   4 +-
 po/af.po                       | 319 ++++++++++---------
 po/am.po                       | 323 ++++++++++---------
 po/ar.po                       | 319 ++++++++++---------
 po/as.po                       | 319 ++++++++++---------
 po/ast.po                      | 325 ++++++++++---------
 po/az.po                       | 319 ++++++++++---------
 po/be.po                       | 319 ++++++++++---------
 po/bg.po                       | 327 ++++++++++---------
 po/bn.po                       | 319 ++++++++++---------
 po/bn_IN.po                    | 319 ++++++++++---------
 po/br.po                       | 319 ++++++++++---------
 po/bs.po                       | 319 ++++++++++---------
 po/ca.po                       | 327 ++++++++++---------
 po/ca@valencia.po              | 325 ++++++++++---------
 po/cmn.po                      | 319 ++++++++++---------
 po/crh.po                      | 319 ++++++++++---------
 po/cs.po                       | 331 +++++++++++---------
 po/cy.po                       | 319 ++++++++++---------
 po/da.po                       | 325 ++++++++++---------
 po/de.po                       | 325 ++++++++++---------
 po/dz.po                       | 319 ++++++++++---------
 po/el.po                       | 327 ++++++++++---------
 po/en_AU.po                    | 319 ++++++++++---------
 po/en_CA.po                    | 319 ++++++++++---------
 po/en_GB.po                    | 325 ++++++++++---------
 po/eo.po                       | 319 ++++++++++---------
 po/es.po                       | 370 ++++++++++++----------
 po/es_AR.po                    | 319 ++++++++++---------
 po/es_CL.po                    | 319 ++++++++++---------
 po/es_CO.po                    | 319 ++++++++++---------
 po/es_CR.po                    | 319 ++++++++++---------
 po/es_DO.po                    | 319 ++++++++++---------
 po/es_EC.po                    | 319 ++++++++++---------
 po/es_ES.po                    | 319 ++++++++++---------
 po/es_MX.po                    | 319 ++++++++++---------
 po/es_NI.po                    | 319 ++++++++++---------
 po/es_PA.po                    | 319 ++++++++++---------
 po/es_PE.po                    | 319 ++++++++++---------
 po/es_PR.po                    | 319 ++++++++++---------
 po/es_SV.po                    | 319 ++++++++++---------
 po/es_UY.po                    | 319 ++++++++++---------
 po/es_VE.po                    | 319 ++++++++++---------
 po/et.po                       | 323 ++++++++++---------
 po/eu.po                       | 319 ++++++++++---------
 po/fa.po                       | 319 ++++++++++---------
 po/fi.po                       | 332 +++++++++++---------
 po/fr.po                       | 338 +++++++++++---------
 po/fr_CA.po                    | 319 ++++++++++---------
 po/frp.po                      | 319 ++++++++++---------
 po/fur.po                      | 319 ++++++++++---------
 po/fy.po                       | 319 ++++++++++---------
 po/ga.po                       | 319 ++++++++++---------
 po/gl.po                       | 325 ++++++++++---------
 po/gu.po                       | 319 ++++++++++---------
 po/ha.po                       | 319 ++++++++++---------
 po/he.po                       | 359 +++++++++++----------
 po/hi.po                       | 319 ++++++++++---------
 po/hr.po                       | 319 ++++++++++---------
 po/hu.po                       | 328 ++++++++++---------
 po/hy.po                       | 325 ++++++++++---------
 po/ia.po                       | 319 ++++++++++---------
 po/id.po                       | 330 ++++++++++---------
 po/ie.po                       | 323 ++++++++++---------
 po/ig.po                       | 319 ++++++++++---------
 po/is.po                       | 319 ++++++++++---------
 po/it.po                       | 353 +++++++++++----------
 po/ja.po                       | 324 ++++++++++---------
 po/jv.po                       | 319 ++++++++++---------
 po/ka.po                       | 319 ++++++++++---------
 po/kab.po                      | 323 ++++++++++---------
 po/kk.po                       | 319 ++++++++++---------
 po/kn.po                       | 695 +++++++++++++++++++++++------------------
 po/ko.po                       | 325 ++++++++++---------
 po/ku.po                       | 319 ++++++++++---------
 po/ku_IQ.po                    | 319 ++++++++++---------
 po/ky.po                       | 319 ++++++++++---------
 po/li.po                       | 319 ++++++++++---------
 po/lt.po                       | 327 ++++++++++---------
 po/lv.po                       | 319 ++++++++++---------
 po/mai.po                      | 319 ++++++++++---------
 po/mg.po                       | 319 ++++++++++---------
 po/mi.po                       | 319 ++++++++++---------
 po/mk.po                       | 319 ++++++++++---------
 po/ml.po                       | 319 ++++++++++---------
 po/mn.po                       | 319 ++++++++++---------
 po/mr.po                       | 319 ++++++++++---------
 po/ms.po                       | 326 ++++++++++---------
 po/nb.po                       | 328 ++++++++++---------
 po/nds.po                      | 319 ++++++++++---------
 po/ne.po                       | 319 ++++++++++---------
 po/nl.po                       | 330 ++++++++++---------
 po/nn.po                       | 319 ++++++++++---------
 po/nso.po                      | 319 ++++++++++---------
 po/oc.po                       | 443 ++++++++++++++------------
 po/or.po                       | 319 ++++++++++---------
 po/pa.po                       | 319 ++++++++++---------
 po/pl.po                       | 325 ++++++++++---------
 po/pms.po                      | 319 ++++++++++---------
 po/ps.po                       | 319 ++++++++++---------
 po/pt.po                       | 325 ++++++++++---------
 po/pt_BR.po                    | 325 ++++++++++---------
 po/ro.po                       | 319 ++++++++++---------
 po/ru.po                       | 330 ++++++++++---------
 po/rw.po                       | 319 ++++++++++---------
 po/sc.po                       | 319 ++++++++++---------
 po/si.po                       | 319 ++++++++++---------
 po/sk.po                       | 363 ++++++++++++---------
 po/sl.po                       | 325 ++++++++++---------
 po/sq.po                       | 319 ++++++++++---------
 po/sr.po                       | 327 ++++++++++---------
 po/sr@latin.po                 | 319 ++++++++++---------
 po/sv.po                       | 325 ++++++++++---------
 po/ta.po                       | 319 ++++++++++---------
 po/te.po                       | 319 ++++++++++---------
 po/th.po                       | 319 ++++++++++---------
 po/tk.po                       | 319 ++++++++++---------
 po/tr.po                       | 325 ++++++++++---------
 po/tt.po                       | 319 ++++++++++---------
 po/ug.po                       | 319 ++++++++++---------
 po/uk.po                       | 338 +++++++++++---------
 po/ur.po                       | 319 ++++++++++---------
 po/uz.po                       | 323 ++++++++++---------
 po/vi.po                       | 319 ++++++++++---------
 po/wa.po                       | 319 ++++++++++---------
 po/xh.po                       | 319 ++++++++++---------
 po/yi.po                       | 319 ++++++++++---------
 po/yo.po                       | 319 ++++++++++---------
 po/zh_CN.po                    | 328 ++++++++++---------
 po/zh_HK.po                    | 319 ++++++++++---------
 po/zh_TW.po                    | 321 ++++++++++---------
 po/zu.po                       | 319 ++++++++++---------
 157 files changed, 23833 insertions(+), 19430 deletions(-)

commit 38b53777dd36e6fb24f8f13072e8d0a30eaffc80
Author: raveit65 <mate@raveit.de>
Date:   Wed Dec 16 15:13:21 2020 +0100

    tx: update resource

 mate-panel.pot | 400 +++++++++++++++++++++++++++++----------------------------
 1 file changed, 202 insertions(+), 198 deletions(-)

commit 64c8934380c8de325ea7d8c1c30a2dc5211bbccc
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Dec 14 13:49:22 2020 +0100

    Signal name is 'value-changed' for GtkSpinButton

 applets/fish/fish.c                  |  4 ++--
 applets/notification_area/main.c     |  2 +-
 applets/wncklet/workspace-switcher.c | 10 ++++++----
 mate-panel/panel-properties-dialog.c |  4 ++--
 4 files changed, 11 insertions(+), 9 deletions(-)

commit 70c7954e5dd48cb2c9a6f27284030d83f75bde5a
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 11 19:33:23 2020 +0100

    applet: Avoid a NULL pointer dereference

 mate-panel/applet.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit 374569817b15c9780562b1c893f45653bc188404
Author: mbkma <johannes.unruh@fau.de>
Date:   Sun Dec 6 11:06:34 2020 +0100

    mate-panel-applet.h: tabs to spaces

 libmate-panel-applet/mate-panel-applet.h | 194 ++++++++++++++++++-------------
 1 file changed, 111 insertions(+), 83 deletions(-)

commit a48c9cea66061a6f81a8a6109a0fa29b76abfb34
Author: mbkma <johannes.unruh@fau.de>
Date:   Fri Dec 4 12:28:22 2020 +0100

    remove function calls to  mate_panel_applet_set_background_widget
    
    keep mate_panel_applet_set_background_widget for compatibility

 applets/clock/clock.c                | 3 ---
 applets/fish/fish.c                  | 2 --
 applets/wncklet/showdesktop.c        | 2 --
 applets/wncklet/window-list.c        | 2 --
 applets/wncklet/window-menu.c        | 2 --
 applets/wncklet/workspace-switcher.c | 2 --
 6 files changed, 13 deletions(-)

commit 08146a80fc1727cde7a6d02d8436f2c86c159b8c
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Dec 9 10:24:58 2020 +0100

    window-list: remove intermediate steps to get scaled thumbnail

 applets/wncklet/window-list.c | 38 ++++++--------------------------------
 1 file changed, 6 insertions(+), 32 deletions(-)

commit 4769aeb889e7b5075aa0538940955be4c9eaff88
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Dec 8 12:57:55 2020 +0100

    window-list: Get thumbnail size and scale in preview_window_thumbnail

 applets/wncklet/window-list.c | 55 ++++++++++++++++++++++++-------------------
 1 file changed, 31 insertions(+), 24 deletions(-)

commit b0861e06a198566774e355fd792e830e389062e4
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 5 21:43:27 2020 +0100

    cppcheck warning: The if condition is the same as the previous one

 mate-panel/applet.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit f7df5c71e6dede40bc891c8192c9e17f60d617e8
Author: raveit65 <mate@raveit.de>
Date:   Tue Dec 8 17:30:24 2020 +0100

    update issue template

 .github/issue_template.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b455a79b90f84b1fa26926b77ef3c41d592fb21
Author: Victor Kareh <vkareh@redhat.com>
Date:   Thu Dec 3 17:26:33 2020 -0500

    window-list: Render thumbnails as cairo surfaces
    
    This allows thumbnail previews to be properly rendered on HiDPI displays
    and ensures that the window surface is flushed before painting it.

 applets/wncklet/window-list.c | 81 +++++++++++++++++++++++++++----------------
 1 file changed, 51 insertions(+), 30 deletions(-)

commit e285d049120f48284b6e71cdb34a6fe477db043d
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Nov 18 15:51:30 2020 +0100

    panel-applets-manager: Boilerplate

 mate-panel/panel-applets-manager.h | 84 +++++++++++++-------------------------
 1 file changed, 29 insertions(+), 55 deletions(-)

commit 6418e67d690828f9ba908237a3c4c6e71231cef7
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Nov 26 13:17:18 2020 +0100

    mate-panel-applet-factory: format code

 libmate-panel-applet/mate-panel-applet-factory.c | 159 ++++++++++++-----------
 1 file changed, 82 insertions(+), 77 deletions(-)

commit e708de9ab03b00eee6811797c9598368f6e598b7
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Nov 18 16:54:25 2020 +0100

    mate-panel-applet-factory: Boilerplate

 libmate-panel-applet/mate-panel-applet-factory.c |  4 ---
 libmate-panel-applet/mate-panel-applet-factory.h | 31 +++++++++---------------
 2 files changed, 11 insertions(+), 24 deletions(-)

commit ceffc9032e410be0a9957d68e7898fe92f979cfc
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Dec 5 11:32:26 2020 +0100

    fish: Do not to include the math.h library to get the PI value

 applets/fish/fish.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 78ea6fd61a3e6d0d4601b2595126eb9b0ed76a42
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Dec 4 23:18:42 2020 +0100

    Fix solid color controls after disabling compositor

 mate-panel/Makefile.am               |  3 +--
 mate-panel/button-widget.c           |  1 -
 mate-panel/panel-profile.c           |  9 ++++-----
 mate-panel/panel-profile.h           |  4 ++--
 mate-panel/panel-properties-dialog.c | 38 +++++++++++++++++-------------------
 5 files changed, 25 insertions(+), 30 deletions(-)

commit f577f3b17ff60cc54ef28e7c449e9f0739147bb3
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Nov 18 14:10:53 2020 +0100

    mate-panel-applet: Boilerplate

 libmate-panel-applet/mate-panel-applet-gsettings.c |   2 +-
 libmate-panel-applet/mate-panel-applet.c           | 761 ++++++++++++---------
 libmate-panel-applet/mate-panel-applet.h           |  30 +-
 3 files changed, 445 insertions(+), 348 deletions(-)

commit 772a237b471b8a3a6d7e0dceaec5561fb81b3583
Author: William Wold <wm@wmww.sh>
Date:   Thu Dec 3 20:38:58 2020 -0800

    Fix applet background for transparency
    
    as proposed by @mbkma

 libmate-panel-applet/mate-panel-applet.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 47475cbe71fbda5d8d2cb1ca59b624064f49840f
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 14:51:52 2020 -0800

    Don't enable transparency slider if not supported

 mate-panel/panel-properties-dialog.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit 6e075121cd8a7f6b7e20246eccc9586cef3834a6
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 14:51:33 2020 -0800

    Don't try to use transparent color if not supported

 mate-panel/panel-background.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 4778fc6bae7ca239912b0a2ae2b367562ae187f9
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 14:27:45 2020 -0800

    Fix the opaque label in panel-properties-dialog.ui

 mate-panel/panel-properties-dialog.ui | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 4ba10a8106ee2ed8a8499ae29932724a1f69cda3
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 13:44:13 2020 -0800

    Drop panel_profile_set_background_gdk_rgba() and getter (duplicates of panel_profile_set_background_color ())

 mate-panel/panel-profile.c           | 20 +++-----------------
 mate-panel/panel-profile.h           |  5 -----
 mate-panel/panel-properties-dialog.c |  2 +-
 3 files changed, 4 insertions(+), 23 deletions(-)

commit 6b0fe07189c693d6b31da2063721a24959984452
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 13:40:53 2020 -0800

    Remove get_background_color() (duplicate of panel_profile_get_background_gdk_rgba())

 mate-panel/panel-profile.c | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

commit fd31dea8a00a4378d83c1688095670c33c616d3e
Author: William Wold <wm@wmww.sh>
Date:   Wed Nov 11 13:38:14 2020 -0800

    Drop dead panel_background_set_opacity()

 mate-panel/panel-background.c | 20 --------------------
 mate-panel/panel-background.h |  2 --
 2 files changed, 22 deletions(-)

commit 56917de98e853bdee7e55eaa50ebde0ab322bf12
Author: William Wold <wm@wmww.sh>
Date:   Wed Oct 28 12:18:17 2020 -0700

    Drop background compositing

 mate-panel/Makefile.am                |   2 -
 mate-panel/panel-background-monitor.c | 410 ----------------------------------
 mate-panel/panel-background-monitor.h |  68 ------
 mate-panel/panel-background.c         | 238 +-------------------
 mate-panel/panel-background.h         |  10 -
 5 files changed, 6 insertions(+), 722 deletions(-)

commit 00ec02b4e3220b8b4a9e13d1799ea6b831642df2
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Nov 16 15:42:26 2020 +0100

    wncklet: function declaration isn't a prototype

 applets/wncklet/wayland-backend.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 6068a01f72a034e04c77366727ef0be2fc0434cd
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Nov 16 07:56:24 2020 +0100

    configure: remove warning about option 'subdir-objects' is disabled

 applets/wncklet/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 011c8c61879da1b3fb13f4735cbe751b18fb1760
Author: raveit65 <mate@raveit.de>
Date:   Wed Nov 18 11:48:28 2020 +0100

    travis CI: use rolling tag for ubuntu docker image

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d71c487c7012d98b78358cbc2052fddadd4793f0
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Nov 16 08:49:14 2020 +0100

    Remove USE_MATE2_MACROS from autogen.sh (legacy)

 autogen.sh | 1 -
 1 file changed, 1 deletion(-)

commit aacedad744d767b05f9aca76bf02c855d0fef723
Author: zhuyaliang <15132211195@163.com>
Date:   Mon Oct 12 16:55:31 2020 +0800

    Use g_task... replace obsolete function g_ simple....

 .../panel-applet-container.c                       | 228 +++++++++------------
 1 file changed, 102 insertions(+), 126 deletions(-)

commit c100c45640b7cc64f8ecca4cf4e1b0f77a637f3f
Author: William Wold <wm@wmww.sh>
Date:   Mon Oct 19 11:00:13 2020 -0700

    Show label about options not available on Wayland

 applets/wncklet/window-list.c  |  4 ++++
 applets/wncklet/window-list.ui | 20 ++++++++++++++++++--
 2 files changed, 22 insertions(+), 2 deletions(-)

commit b1e70ac3be6b843e75226d6db99b43b4c4d01cf1
Author: William Wold <wm@wmww.sh>
Date:   Mon Oct 19 10:57:46 2020 -0700

    Disable controls not applicable to Wayland

 applets/wncklet/window-list.c  | 27 ++++++++++++++++++++++++++-
 applets/wncklet/window-list.ui |  6 +++---
 2 files changed, 29 insertions(+), 4 deletions(-)

commit 7af98da1f246bc879c04cdbb9bb0659ba4539400
Author: William Wold <wm@wmww.sh>
Date:   Mon Oct 19 10:16:41 2020 -0700

    Set minimized windows control sensitivity with the parent box

 applets/wncklet/window-list.c  | 8 +++-----
 applets/wncklet/window-list.ui | 2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

commit 6466fd3aaab49d2528800a7960367a496d0ef2b2
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 16 10:51:15 2020 -0700

    Suppress applet's default context menu for window buttons

 applets/wncklet/wayland-backend.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 06b511f10395f06b4013486ab50506f2d9e7b734
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 16 10:24:36 2020 -0700

    Switch to C-style comments as requested

 applets/wncklet/showdesktop.c        |  8 ++++----
 applets/wncklet/wayland-backend.c    | 10 +++++-----
 applets/wncklet/wayland-backend.h    |  4 ++--
 applets/wncklet/window-list.c        | 36 ++++++++++++++++++------------------
 applets/wncklet/window-menu.c        |  8 ++++----
 applets/wncklet/wncklet.c            |  4 ++--
 applets/wncklet/workspace-switcher.c | 36 ++++++++++++++++++------------------
 7 files changed, 53 insertions(+), 53 deletions(-)

commit 97feef6bdef78ef2ab357f885a8170b3ac3b33b1
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 2 18:11:16 2020 -0700

    Fix workspace switcher on X11

 applets/wncklet/workspace-switcher.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 7a4207f33c889fd97da78da0a73033c8de2eeee9
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 2 17:58:17 2020 -0700

    Fix showdesktop applet on X11

 applets/wncklet/showdesktop.c | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit 217aa88c0f53775abe472f10a16cd48769d7befe
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 2 14:59:32 2020 -0700

    Link with libwayland

 applets/wncklet/Makefile.am | 19 ++++++++++---------
 configure.ac                |  6 +++---
 mate-panel/Makefile.am      |  5 ++---
 3 files changed, 15 insertions(+), 15 deletions(-)

commit 9d924d645af59fd73110c710f186670869a7e569
Author: William Wold <wm@wmww.sh>
Date:   Mon Sep 28 15:28:48 2020 -0700

    Link wncklet with libwayland-client (why did this ever work?)

 applets/wncklet/Makefile.am | 5 +++++
 1 file changed, 5 insertions(+)

commit bae656b33f34b7fabb6904bc8fb4b102eccd7dd5
Author: William Wold <wm@wmww.sh>
Date:   Fri Oct 2 11:00:12 2020 -0700

    Don't crash if shell doesn't support foreign toplevel

 applets/wncklet/wayland-backend.c | 1 +
 1 file changed, 1 insertion(+)

commit ea5f814e611094cca992afb6d54b49d178bce959
Author: William Wold <wm@wmww.sh>
Date:   Wed Sep 30 16:12:15 2020 -0700

    Window list Wayland support

 applets/wncklet/Makefile.am                        |   8 +
 ...e.panel.Wncklet.mate-panel-applet.desktop.in.in |   2 +-
 applets/wncklet/wayland-backend.c                  | 366 +++++++++++++++++++++
 applets/wncklet/wayland-backend.h                  |  48 +++
 applets/wncklet/window-list.c                      |  10 +-
 5 files changed, 431 insertions(+), 3 deletions(-)

commit 2f5ab12d358be4ab3e8e8ba42dcd0a7a6a84de64
Author: William Wold <wm@wmww.sh>
Date:   Thu Aug 1 04:54:28 2019 +0000

    Add foreign toplevel management protocol and generated code

 applets/wncklet/wayland-protocol/generate-code.sh  |  20 +
 ...oreign-toplevel-management-unstable-v1-client.h | 594 +++++++++++++++++++++
 ...-foreign-toplevel-management-unstable-v1-code.c | 104 ++++
 ...wlr-foreign-toplevel-management-unstable-v1.xml | 259 +++++++++
 4 files changed, 977 insertions(+)

commit eda5735ce6b52e8cf738077027581bfe2257c3cb
Author: William Wold <wm@wmww.sh>
Date:   Wed Sep 30 13:01:32 2020 -0700

    Wncklet applets: don't crash on Wayland

 applets/Makefile.am                  |   6 +-
 applets/wncklet/showdesktop.c        |  57 ++++++--
 applets/wncklet/window-list.c        | 153 ++++++++++++++++----
 applets/wncklet/window-menu.c        |  41 +++++-
 applets/wncklet/wncklet.c            |  24 ++--
 applets/wncklet/wncklet.h            |   4 +-
 applets/wncklet/workspace-switcher.c | 271 +++++++++++++++++++++++------------
 7 files changed, 401 insertions(+), 155 deletions(-)

commit bd27321bd83f25ce504267e2098b1bed9e55bf16
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sun Oct 11 14:38:48 2020 +0800

    travis: fix make distcheck error on archlinux

 doc/reference/mate-panel-applet/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 1d4048e1d057841dd5fa4d3eebc721da3fc38ccd
Author: William Wold <wm@wmww.sh>
Date:   Sun Sep 13 23:29:48 2020 -0700

    Use gdk_set_allowed_backends () instead of custom check

 mate-panel/main.c | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)

commit fa8759fc6c94cfb4d66f44580ed3960daeb9a2a2
Author: William Wold <wm@wmww.sh>
Date:   Mon Sep 21 10:33:41 2020 -0700

    Drop libxau from .build.yml

 .build.yml | 2 --
 1 file changed, 2 deletions(-)

commit f9d585dd1a71b7ebd5e7516ccdd0789e4741c0d4
Author: William Wold <wm@wmww.sh>
Date:   Sun Sep 13 23:50:40 2020 -0700

    Drop 'xau' from PKG_CHECK_MODULES call

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f8b7316cc7504a4618705c562ead1ae65dabbdc
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Aug 4 13:11:42 2020 +0200

    Remove variableScope warnings reported by cppcheck
    
    cppcheck --enable=all . 2> err.txt
    grep variableScope err.txt

 applets/clock/calendar-window.c          |  4 +-
 applets/clock/clock-location-tile.c      | 12 ++---
 applets/clock/clock-location.c           |  5 +-
 applets/clock/clock-map.c                |  5 +-
 applets/clock/clock.c                    | 21 +++-----
 applets/clock/system-timezone.c          |  5 +-
 applets/fish/fish.c                      | 11 ++--
 applets/wncklet/window-list.c            |  3 +-
 applets/wncklet/workspace-switcher.c     | 16 +++---
 libmate-panel-applet/mate-panel-applet.c | 36 ++++++-------
 mate-panel/button-widget.c               |  6 +--
 mate-panel/drawer.c                      |  8 +--
 mate-panel/launcher.c                    | 26 +++-------
 mate-panel/libpanel-util/panel-cleanup.c |  3 +-
 mate-panel/libpanel-util/panel-keyfile.c |  9 ++--
 mate-panel/menu.c                        | 27 +++++-----
 mate-panel/panel-addto.c                 | 32 ++++++------
 mate-panel/panel-applet-frame.c          |  6 +--
 mate-panel/panel-applet-info.c           | 29 +++++------
 mate-panel/panel-background.c            |  8 ++-
 mate-panel/panel-ditem-editor.c          | 34 ++++++------
 mate-panel/panel-layout.c                | 88 ++++++++++++++++----------------
 mate-panel/panel-menu-bar.c              | 29 ++++++-----
 mate-panel/panel-menu-button.c           | 11 ++--
 mate-panel/panel-modules.c               |  6 +--
 mate-panel/panel-multimonitor.c          |  3 +-
 mate-panel/panel-run-dialog.c            | 55 ++++++++------------
 mate-panel/panel-test-applets.c          | 11 ++--
 mate-panel/panel-toplevel.c              | 20 ++++----
 mate-panel/panel-util.c                  | 49 ++++++------------
 mate-panel/panel-widget.c                | 18 +++----
 mate-panel/xstuff.c                      |  6 +--
 32 files changed, 254 insertions(+), 348 deletions(-)

commit 59da25f28bc2678cc38bc1def53ca1c4dbf9cc0b
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Aug 8 11:09:24 2020 +0200

    wncklet: Check the length of the pixel data for empty thumbnails

 applets/wncklet/window-list.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 25ab072a88421031b6438a9f18071080744ab9d0
Author: raveit65 <mate@raveit.de>
Date:   Sat Aug 8 13:18:34 2020 +0200

    release 1.25.1

 NEWS         | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 49 insertions(+), 1 deletion(-)

commit 418f8f64bbad51898aeee66e941932ea6afccdb9
Author: raveit65 <mate@raveit.de>
Date:   Sat Aug 8 13:08:19 2020 +0200

    tx: sync with transifex

 help/mate-clock/ca/ca.po       |   5 +-
 help/mate-clock/de/de.po       |   5 +-
 help/mate-clock/el/el.po       |   2 +-
 help/mate-clock/en_GB/en_GB.po |  44 ++++++--
 help/mate-clock/he/he.po       |   5 +-
 help/mate-clock/it/it.po       |   4 +-
 help/mate-clock/ja/ja.po       |   2 +-
 help/mate-clock/lt/lt.po       |   6 +-
 help/mate-clock/nn/nn.po       |  13 +--
 help/mate-clock/sv/sv.po       |   7 +-
 help/mate-fish/ca/ca.po        |   5 +-
 help/mate-fish/de/de.po        |   5 +-
 help/mate-fish/el/el.po        |   2 +-
 help/mate-fish/en_GB/en_GB.po  |  44 ++++++--
 help/mate-fish/he/he.po        |   5 +-
 help/mate-fish/it/it.po        |   2 +-
 help/mate-fish/ja/ja.po        |   2 +-
 help/mate-fish/lt/lt.po        |  85 ++++++++++++---
 help/mate-fish/nn/nn.po        |  15 +--
 help/mate-fish/sv/sv.po        |  11 +-
 help/mate-fish/zh_CN/zh_CN.po  |   2 +-
 po/af.po                       | 198 +++++++++++++----------------------
 po/am.po                       | 198 +++++++++++++----------------------
 po/ar.po                       | 198 +++++++++++++----------------------
 po/as.po                       | 198 +++++++++++++----------------------
 po/ast.po                      | 198 +++++++++++++----------------------
 po/az.po                       | 198 +++++++++++++----------------------
 po/be.po                       | 198 +++++++++++++----------------------
 po/bg.po                       | 198 +++++++++++++----------------------
 po/bn.po                       | 198 +++++++++++++----------------------
 po/bn_IN.po                    | 198 +++++++++++++----------------------
 po/br.po                       | 198 +++++++++++++----------------------
 po/bs.po                       | 198 +++++++++++++----------------------
 po/ca.po                       | 198 +++++++++++++----------------------
 po/ca@valencia.po              | 198 +++++++++++++----------------------
 po/cmn.po                      | 198 +++++++++++++----------------------
 po/crh.po                      | 198 +++++++++++++----------------------
 po/cs.po                       | 198 +++++++++++++----------------------
 po/cy.po                       | 198 +++++++++++++----------------------
 po/da.po                       | 198 +++++++++++++----------------------
 po/de.po                       | 198 +++++++++++++----------------------
 po/dz.po                       | 198 +++++++++++++----------------------
 po/el.po                       | 202 +++++++++++++-----------------------
 po/en_AU.po                    | 198 +++++++++++++----------------------
 po/en_CA.po                    | 198 +++++++++++++----------------------
 po/en_GB.po                    | 198 +++++++++++++----------------------
 po/eo.po                       | 198 +++++++++++++----------------------
 po/es.po                       | 218 ++++++++++++++++-----------------------
 po/es_AR.po                    | 198 +++++++++++++----------------------
 po/es_CL.po                    | 198 +++++++++++++----------------------
 po/es_CO.po                    | 198 +++++++++++++----------------------
 po/es_CR.po                    | 198 +++++++++++++----------------------
 po/es_DO.po                    | 200 +++++++++++++-----------------------
 po/es_EC.po                    | 198 +++++++++++++----------------------
 po/es_ES.po                    | 198 +++++++++++++----------------------
 po/es_MX.po                    | 198 +++++++++++++----------------------
 po/es_NI.po                    | 198 +++++++++++++----------------------
 po/es_PA.po                    | 198 +++++++++++++----------------------
 po/es_PE.po                    | 198 +++++++++++++----------------------
 po/es_PR.po                    | 198 +++++++++++++----------------------
 po/es_SV.po                    | 198 +++++++++++++----------------------
 po/es_UY.po                    | 198 +++++++++++++----------------------
 po/es_VE.po                    | 198 +++++++++++++----------------------
 po/et.po                       | 198 +++++++++++++----------------------
 po/eu.po                       | 198 +++++++++++++----------------------
 po/fa.po                       | 198 +++++++++++++----------------------
 po/fi.po                       | 198 +++++++++++++----------------------
 po/fr.po                       | 218 +++++++++++++++------------------------
 po/fr_CA.po                    | 198 +++++++++++++----------------------
 po/frp.po                      | 198 +++++++++++++----------------------
 po/fur.po                      | 198 +++++++++++++----------------------
 po/fy.po                       | 198 +++++++++++++----------------------
 po/ga.po                       | 198 +++++++++++++----------------------
 po/gl.po                       | 198 +++++++++++++----------------------
 po/gu.po                       | 198 +++++++++++++----------------------
 po/ha.po                       | 198 +++++++++++++----------------------
 po/he.po                       | 203 +++++++++++++-----------------------
 po/hi.po                       | 198 +++++++++++++----------------------
 po/hr.po                       | 198 +++++++++++++----------------------
 po/hu.po                       | 198 +++++++++++++----------------------
 po/hy.po                       | 198 +++++++++++++----------------------
 po/ia.po                       | 198 +++++++++++++----------------------
 po/id.po                       | 198 +++++++++++++----------------------
 po/ie.po                       | 198 +++++++++++++----------------------
 po/ig.po                       | 198 +++++++++++++----------------------
 po/is.po                       | 198 +++++++++++++----------------------
 po/it.po                       | 210 ++++++++++++++-----------------------
 po/ja.po                       | 200 +++++++++++++-----------------------
 po/jv.po                       | 198 +++++++++++++----------------------
 po/ka.po                       | 198 +++++++++++++----------------------
 po/kab.po                      | 198 +++++++++++++----------------------
 po/kk.po                       | 198 +++++++++++++----------------------
 po/kn.po                       | 198 +++++++++++++----------------------
 po/ko.po                       | 198 +++++++++++++----------------------
 po/ku.po                       | 198 +++++++++++++----------------------
 po/ku_IQ.po                    | 198 +++++++++++++----------------------
 po/ky.po                       | 198 +++++++++++++----------------------
 po/li.po                       | 198 +++++++++++++----------------------
 po/lt.po                       | 198 +++++++++++++----------------------
 po/lv.po                       | 198 +++++++++++++----------------------
 po/mai.po                      | 198 +++++++++++++----------------------
 po/mg.po                       | 198 +++++++++++++----------------------
 po/mi.po                       | 198 +++++++++++++----------------------
 po/mk.po                       | 198 +++++++++++++----------------------
 po/ml.po                       | 198 +++++++++++++----------------------
 po/mn.po                       | 198 +++++++++++++----------------------
 po/mr.po                       | 198 +++++++++++++----------------------
 po/ms.po                       | 198 +++++++++++++----------------------
 po/nb.po                       | 198 +++++++++++++----------------------
 po/nds.po                      | 228 ++++++++++++++++-------------------------
 po/ne.po                       | 198 +++++++++++++----------------------
 po/nl.po                       | 198 +++++++++++++----------------------
 po/nn.po                       | 198 +++++++++++++----------------------
 po/nso.po                      | 198 +++++++++++++----------------------
 po/oc.po                       | 198 +++++++++++++----------------------
 po/or.po                       | 198 +++++++++++++----------------------
 po/pa.po                       | 198 +++++++++++++----------------------
 po/pl.po                       | 199 +++++++++++++----------------------
 po/pms.po                      | 198 +++++++++++++----------------------
 po/ps.po                       | 198 +++++++++++++----------------------
 po/pt.po                       | 227 ++++++++++++++++------------------------
 po/pt_BR.po                    | 200 +++++++++++++-----------------------
 po/ro.po                       | 198 +++++++++++++----------------------
 po/ru.po                       | 199 +++++++++++++----------------------
 po/rw.po                       | 198 +++++++++++++----------------------
 po/sc.po                       | 198 +++++++++++++----------------------
 po/si.po                       | 198 +++++++++++++----------------------
 po/sk.po                       | 198 +++++++++++++----------------------
 po/sl.po                       | 198 +++++++++++++----------------------
 po/sq.po                       | 198 +++++++++++++----------------------
 po/sr.po                       | 198 +++++++++++++----------------------
 po/sr@latin.po                 | 198 +++++++++++++----------------------
 po/sv.po                       | 216 ++++++++++++++------------------------
 po/ta.po                       | 198 +++++++++++++----------------------
 po/te.po                       | 198 +++++++++++++----------------------
 po/th.po                       | 198 +++++++++++++----------------------
 po/tk.po                       | 198 +++++++++++++----------------------
 po/tr.po                       | 198 +++++++++++++----------------------
 po/tt.po                       | 198 +++++++++++++----------------------
 po/ug.po                       | 198 +++++++++++++----------------------
 po/uk.po                       | 198 +++++++++++++----------------------
 po/ur.po                       | 198 +++++++++++++----------------------
 po/uz.po                       | 198 +++++++++++++----------------------
 po/vi.po                       | 204 +++++++++++++-----------------------
 po/wa.po                       | 198 +++++++++++++----------------------
 po/xh.po                       | 198 +++++++++++++----------------------
 po/yi.po                       | 198 +++++++++++++----------------------
 po/yo.po                       | 198 +++++++++++++----------------------
 po/zh_CN.po                    | 200 +++++++++++++-----------------------
 po/zh_HK.po                    | 198 +++++++++++++----------------------
 po/zh_TW.po                    | 198 +++++++++++++----------------------
 po/zu.po                       | 198 +++++++++++++----------------------
 152 files changed, 9463 insertions(+), 16900 deletions(-)

commit 268be7f91fed637d5a2caea0b18edf197e561627
Author: raveit65 <mate@raveit.de>
Date:   Sat Aug 8 12:59:27 2020 +0200

    tx: update resource

 mate-panel.pot | 318 +++++++++++++++++++++++++++++++--------------------------
 1 file changed, 174 insertions(+), 144 deletions(-)

commit c307aac841e03301d853160e7c5871ec0c7249b2
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Aug 4 19:02:02 2020 +0200

    Handle locked down settings better when dropping an image URI
    
    Don't propose actions that will fail anyway, and create a launcher
    automatically if it's the only option.  However, still ask for setting
    the background to still avoid unintentional changes.

 mate-panel/panel.c | 67 ++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 52 insertions(+), 15 deletions(-)

commit 5e0104b06cf2bf4423cd324be4d6afc8c3521357
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Aug 4 01:20:37 2020 +0200

    panel-toplevel: Fix -Wenum-conversion warning

 mate-panel/panel-toplevel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 955714fb231d9178d44bc344b1646dafd69db17e
Author: Victor Kareh <vkareh@redhat.com>
Date:   Tue Aug 4 12:10:07 2020 -0400

    wncklet: Hide window preview on non-visible windows
    
    When a window is not visible we cannot capture its thumbnail. We used to
    store the thumbnail when a window was visible so that we could reuse it
    when minimized, but this can cause visual glitches.

 applets/wncklet/window-list.c | 5 +++++
 1 file changed, 5 insertions(+)

commit db4696db69637e09434aa0f35af73cba439271dd
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Aug 5 12:09:16 2020 +0200

    launcher: Fix memory leaks

 mate-panel/launcher.c | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

commit a3811a55c5a55df4dbb7b56f50a4445f9e3bb33b
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jul 25 12:44:23 2020 +0200

    panel-action-button: using enum for accessing an array indexed

 mate-panel/panel-action-button.c | 82 +++++++++++++++-------------------------
 1 file changed, 30 insertions(+), 52 deletions(-)

commit fc480d2c5381161a58b67aefe281f94300f0dbc0
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Aug 3 16:56:50 2020 +0200

    clock-face: Use gdk_pixbuf_new_from_resource_at_scale

 .build.yml                  |  3 ---
 README                      |  1 -
 applets/clock/clock-face.c  |  6 ++----
 applets/clock/clock-utils.c | 52 ---------------------------------------------
 applets/clock/clock-utils.h |  4 ----
 configure.ac                |  5 ++---
 6 files changed, 4 insertions(+), 67 deletions(-)

commit 1c72cac05bf6c42cd6aa0832e398254a5107f5b8
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Aug 4 14:43:12 2020 +0200

    launcher: Fix memory leak

 mate-panel/launcher.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 7d706e9fe1f53ef73f644eb1a6488239541d6714
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Aug 4 16:51:35 2020 +0200

    Ask the user what to do when receiving an image drop
    
    Instead of unconditionally setting the panel's background when an image
    file URI gets dropped on a panel, ask the user whether to create a
    launcher for that URI (like for non-image URIs) or to use the image as
    the panel's background.
    
    A number of users have seen their panel's background changed
    unexpectedly due to unwanted drop of an image file over the panel,
    sometimes seeing this as a panel's bug.
    
    Also, this behavior is inconsistent with dropping a URI pointing to any
    other type of file, where it would create a launcher for it.
    
    Consequently, and as setting the panel's background doesn't seem like a
    so common task it ought to be super fast, ask the user what to do when
    receiving an image URI drop.

 mate-panel/panel.c | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 104 insertions(+), 2 deletions(-)

commit ecfe8a9e7ed519b11bd1d13f5e7e8d29ef71512d
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Aug 4 15:57:04 2020 +0200

    Create launchers when dropping multiple image URIs
    
    It doesn't make any sense to set the panel's background several times
    if we get multiple image URIs dropped, so don't consider multi-URI
    drops as candidate for setting the background, and handle those like
    other non-image URIs.

 mate-panel/panel.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit eace4fe6ab55b795b9648fc5f64ada6e2baa8baf
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Aug 4 13:21:13 2020 +0200

    panel-util: Fix memory leak

 mate-panel/panel-util.c | 1 +
 1 file changed, 1 insertion(+)

commit 1b345aadc36811bef511bbefa7e62c2fbc7e94cb
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Aug 4 15:42:18 2020 +0200

    Fix creating several launchers at once
    
    When creating a new launcher, we try and find an available object ID by
    browsing the existing ones.  This however fails to take into account
    objects that were created but that didn't make it to the backend yet,
    leading to likely re-using the same ID when creating several objects
    roughly at the same time.  This happens e.g. when dropping several URIs
    together.

 mate-panel/panel-profile.c | 5 +++++
 1 file changed, 5 insertions(+)

commit a06854ca6ee2b2d6d386bcbf4dfceb7bb61dfe96
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Aug 1 19:20:09 2020 +0200

    clock: assignment to 'GSList *' from incompatible pointer type 'GList *'

 applets/clock/clock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 04e977defeb858ac58ab3d470ec735ec0e2ea922
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Jul 22 21:17:20 2020 +0200

    clock: Use single-linked lists for locations

 applets/clock/clock-location.c |  4 +--
 applets/clock/clock-location.h |  2 +-
 applets/clock/clock-map.c      |  4 +--
 applets/clock/clock-map.h      |  2 +-
 applets/clock/clock.c          | 78 +++++++++++++++++++++---------------------
 5 files changed, 45 insertions(+), 45 deletions(-)

commit 1d14ccccc6a44b348a0e166a947388d41a411e64
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Jul 23 10:27:50 2020 +0200

    clock: sort locations by time reverse and name

 applets/clock/clock.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit 0b71fb2f2cbf4eb0eea9ea9ab0682eef2342a500
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Jul 23 09:33:47 2020 +0200

    clock: merge sorting and reversing node list of selected locations

 applets/clock/clock.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit f01e028beade99865610bd27521263f6288e9030
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Fri Jul 24 15:09:08 2020 +0200

    clock: Fix GError double free
    
    Let the GError ownership on the async finish method call.

 applets/clock/clock-location-tile.c | 2 --
 applets/clock/clock-location.c      | 2 --
 applets/clock/clock.c               | 2 --
 applets/clock/set-timezone.c        | 1 +
 4 files changed, 1 insertion(+), 6 deletions(-)

commit 57e28f8e776d3255cdf9fd00098b2d498d960483
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Fri Jul 24 12:48:48 2020 +0200

    clock: Properly free rsvg handles

 applets/clock/clock-utils.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ba30657782a775e04e6d902cd8557da9eeab8716
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Wed Jul 22 18:07:59 2020 +0200

    wncklet: Fix leaking cairo_t

 applets/wncklet/showdesktop.c | 1 +
 1 file changed, 1 insertion(+)

commit c4bede86f6196d02f356eff49d3edb1a68f9b9b0
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Wed Jul 22 17:44:56 2020 +0200

    panel-run-dialog: Fix leaking tree model strings
    
    The gtk_tree_model_get() duplicates memory or adds a reference
    and any data need to be freed explicitly.

 mate-panel/panel-run-dialog.c | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

commit 9768370328828ab8cc32f828fac3f34661bcca9c
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 17:36:45 2020 +0200

    workspace-switcher: Fix leaking color string

 applets/wncklet/workspace-switcher.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 35bd00e59e3aeedd61da46ec961e06623900359c
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 17:35:59 2020 +0200

    panel-properties-dialog: Fix leaking string

 mate-panel/panel-properties-dialog.c | 1 +
 1 file changed, 1 insertion(+)

commit a1db813cd47ca495f9481f2874ecfeb74ea120b5
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 17:34:04 2020 +0200

    clock: Fix leaking GtkListStore
    
    The gtk_tree_view_set_model() adds its own reference.

 applets/clock/clock.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 2b2ed2831a79e75fa9691290cefb266f019abb66
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 16:26:20 2020 +0200

    panel-profile: Fix leaking list elements

 mate-panel/panel-profile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7dc7efb135974b6089635062370450587c4ae58e
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 13:17:35 2020 +0200

    clock: Fix list iteration
    
    Iteration over a linked list should be done over a side control variable
    and list head needs to be preserved for proper list free.

 applets/clock/clock.c | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

commit aae875dc681a14d57f3dd0382d9e461031e17420
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 13:16:27 2020 +0200

    panel-lockdown: Fix leaking string array
    
    Overwriting an already allocated memory.

 mate-panel/panel-lockdown.c | 1 +
 1 file changed, 1 insertion(+)

commit 39705f6ecb0b33eaeb520d08e90e0b9764b52dd1
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 13:14:51 2020 +0200

    panel-menu-items: Fix leaking string
    
    The PANEL_GLIB_STR_EMPTY() macro returns TRUE even when the memory
    was allocated yet the string was empty, so do explicit free() here.

 mate-panel/panel-menu-items.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 7e4c42739d50b712945080652f5e185bd65d412e
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Mon Jul 20 13:13:03 2020 +0200

    mate-panel-applet: Fix leaking GVariantBuilder
    
    And use stack-allocated GVariantBuilder for temporary storage.

 libmate-panel-applet/mate-panel-applet.c | 32 ++++++++++++++++++--------------
 1 file changed, 18 insertions(+), 14 deletions(-)

commit 2db605da98f87dff0a2d4eb25536ab324b8c2854
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Fri Jul 17 16:59:06 2020 +0200

    launcher: Fix leaking strings

 mate-panel/launcher.c | 2 ++
 1 file changed, 2 insertions(+)

commit 80014e212924b6be4f5c4a3985d90c271828c5b2
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Fri Jul 17 16:58:41 2020 +0200

    clock: Fix leaking cairo surface

 applets/clock/clock-location-tile.c | 1 +
 1 file changed, 1 insertion(+)

commit 6517bac43d30fdbd0c54438bf265c5fdcb6a8c27
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 24 15:43:31 2020 +0000

    Clarify meaning of panel reset option
    
    Change "Reset Panel" to "Reset all Panels" in context menu
    and in reset confirmation dialog to make clear that ALL panels
    will be reset.

 mate-panel/panel-context-menu.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit bb299f9ba18789ee71922f473ff6476c6f825566
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jul 16 18:08:33 2020 +0200

    panel-toplevel: Refactor panel_toplevel_update_hide_buttons_size()
    
    No real leak here except of the unnecessary gtk_css_provider_new() call,
    refactored for readability and to conform to the code style.

 mate-panel/panel-toplevel.c | 29 +++++++++++------------------
 1 file changed, 11 insertions(+), 18 deletions(-)

commit ea72ffe30593cc4878d55a1c573a975a3962483a
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jul 16 17:46:48 2020 +0200

    panel-util: Fix leaking root GFile

 mate-panel/panel-util.c | 1 +
 1 file changed, 1 insertion(+)

commit 39e4e67594e24cfed75d44ab1abfd637ba20080e
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jul 16 17:44:20 2020 +0200

    panel-profile: Fix leaking list elements
    
    The mate_gsettings_strv_to_gslist() call will dup all the strings
    and removing duplicates should free them.

 mate-panel/panel-profile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3230ff1b1b7f26f6242223d391592f05fa2d6228
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jul 16 17:42:51 2020 +0200

    panel-frame: Fix leaking background-color

 mate-panel/panel-frame.c | 2 ++
 1 file changed, 2 insertions(+)

commit 5f14b49e80d0e1195558803288a727084a4df33b
Author: Tomas Bzatek <tbzatek@redhat.com>
Date:   Thu Jul 16 17:39:22 2020 +0200

    panel-applet-frame: Fix leaking bg_pattern
    
    Also acquire it only when needed.
    
    This fixes a leak for me when switching workspaces back and forth.

 mate-panel/panel-applet-frame.c | 38 ++++++++++++++++++++------------------
 1 file changed, 20 insertions(+), 18 deletions(-)

commit a3c1a007dcbe496d4e27f3cc93b428bbc4b54c8f
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Jul 19 13:28:29 2020 +0200

    Travis CI: enable irc notifications with tagged commits

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e8a1265b3ab6109d3321b1d25d1f84edc29dd634
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Jun 25 13:35:06 2020 +0200

    panel-multimonitor: Do not require limits.h macros

 mate-panel/panel-multimonitor.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bb456b90a36624b55deae5f82e7a8db24d51a1a7
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Jun 29 13:03:01 2020 +0200

    clock: Simplify notebook scroll-event callback

 applets/clock/clock.c | 77 ++++++++++++++++++++++++---------------------------
 1 file changed, 36 insertions(+), 41 deletions(-)

commit 8e6c910e7c39f3631398a8c4b0b7583cf80139a3
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 7 13:42:49 2020 +0200

    tx:help:fish: fix build warning caused by Czech language

 help/mate-fish/cs/cs.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b10763b624f550465ff2635778c5c2ad94376af1
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Jun 21 12:23:12 2020 +0200

    Using #include with system libraries

 mate-panel/libmate-panel-applet-private/panel-applets-manager-dbus.c | 4 ++--
 mate-panel/libpanel-util/panel-cleanup.h                             | 2 +-
 mate-panel/libpanel-util/panel-keyfile.h                             | 2 +-
 mate-panel/panel-addto.c                                             | 2 +-
 mate-panel/panel-recent.h                                            | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

commit 231d7029cdfd10995f7ac2f29fd0c1a65ac0b02a
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Jun 21 11:47:12 2020 +0200

    build: Add built sources to CLEANFILES target

 Makefile.am                                       | 3 +++
 applets/notification_area/Makefile.am             | 3 ++-
 applets/notification_area/system-tray/Makefile.am | 3 +++
 3 files changed, 8 insertions(+), 1 deletion(-)

commit 34c561894bfedab242876fea249ab8596a61e8a4
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jun 20 14:56:13 2020 +0200

    Avoid using single-line cpp comments

 applets/clock/calendar-window.c                    |  4 +--
 applets/clock/clock-location.c                     |  5 ++--
 applets/fish/fish.c                                |  2 +-
 applets/notification_area/main.c                   |  4 +--
 applets/notification_area/system-tray/fixedtip.c   |  9 +++---
 .../system-tray/na-tray-manager.c                  |  2 +-
 applets/notification_area/testtray.c               |  2 +-
 libmate-panel-applet/mate-panel-applet-factory.c   |  2 +-
 libmate-panel-applet/mate-panel-applet.c           | 26 +++++++++---------
 libmate-panel-applet/mate-panel-applet.h           |  2 +-
 libmate-panel-applet/panel-applet-private.h        |  2 +-
 libmate-panel-applet/panel-plug-private.h          |  4 +--
 mate-panel/applet.c                                |  6 ++--
 mate-panel/button-widget.c                         |  6 ++--
 mate-panel/drawer.c                                |  2 +-
 mate-panel/launcher.c                              |  2 +-
 .../panel-applet-container.c                       |  8 +++---
 .../panel-applets-manager-dbus.c                   |  2 +-
 mate-panel/libpanel-util/panel-icon-chooser.c      |  5 ++--
 mate-panel/libpanel-util/panel-keyfile.c           |  4 +--
 mate-panel/libpanel-util/panel-launch.c            |  6 ++--
 mate-panel/menu.c                                  |  5 ++--
 mate-panel/panel-action-button.c                   |  2 +-
 mate-panel/panel-action-protocol.h                 |  2 +-
 mate-panel/panel-addto.c                           |  2 +-
 mate-panel/panel-applet-frame.c                    |  2 +-
 mate-panel/panel-background-monitor.h              |  2 +-
 mate-panel/panel-background.c                      | 27 +++++++++---------
 mate-panel/panel-background.h                      |  2 +-
 mate-panel/panel-context-menu.c                    |  2 +-
 mate-panel/panel-ditem-editor.c                    |  2 +-
 mate-panel/panel-force-quit.h                      |  2 +-
 mate-panel/panel-layout.c                          |  2 +-
 mate-panel/panel-menu-bar.c                        |  2 +-
 mate-panel/panel-menu-items.c                      |  9 +++---
 mate-panel/panel-multimonitor.c                    | 32 ++++++++++++----------
 mate-panel/panel-profile.c                         |  2 +-
 mate-panel/panel-properties-dialog.c               |  2 +-
 mate-panel/panel-recent.c                          |  6 ++--
 mate-panel/panel-run-dialog.c                      | 11 ++++----
 mate-panel/panel-struts.h                          |  2 +-
 mate-panel/panel-test-applets.c                    |  4 +--
 mate-panel/panel-toplevel.c                        | 32 +++++++++++-----------
 mate-panel/panel-util.c                            |  2 +-
 mate-panel/panel-widget.c                          |  4 +--
 mate-panel/panel-xutils.h                          |  2 +-
 mate-panel/xstuff.h                                |  2 +-
 47 files changed, 140 insertions(+), 129 deletions(-)

commit 75958f67ce255167ce09d8054efe25823c55cafd
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Jun 23 10:36:47 2020 +0200

    build: Add glib-2.0 module in PKG_CHECK_MODULES(LIBEGG)

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4e9bb5c7cc397ff74881b6577c20439a4575783c
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Jun 20 10:56:16 2020 +0200

    Use '#include <config.h>' instead of '#include "config.h"'

 applets/clock/clock-utils.c                                             | 2 +-
 applets/clock/clock.c                                                   | 2 +-
 applets/clock/set-timezone.c                                            | 2 +-
 applets/notification_area/libstatus-notifier-watcher/gf-sn-watcher-v0.c | 2 +-
 .../libstatus-notifier-watcher/gf-status-notifier-watcher.c             | 2 +-
 applets/notification_area/na-grid.c                                     | 2 +-
 applets/notification_area/na-host.c                                     | 2 +-
 applets/notification_area/na-item.c                                     | 2 +-
 applets/notification_area/status-notifier/sn-dbus-menu-item.c           | 2 +-
 applets/notification_area/status-notifier/sn-dbus-menu.c                | 2 +-
 applets/notification_area/status-notifier/sn-host-v0.c                  | 2 +-
 applets/notification_area/status-notifier/sn-item-v0.c                  | 2 +-
 applets/notification_area/status-notifier/sn-item.c                     | 2 +-
 applets/notification_area/testtray.c                                    | 2 +-
 mate-panel/mate-desktop-item-edit.c                                     | 2 +-
 mate-panel/panel-stock-icons.c                                          | 2 +-
 mate-panel/panel-xutils.c                                               | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

commit 9f15be59faa7c4498882c513580a1ca12b0da943
Author: Jan Beich <jbeich@FreeBSD.org>
Date:   Wed Jun 24 12:48:49 2020 +0000

    panel-util: switch to generic header for --disable-x11
    
    panel-util.c:31:10: fatal error: 'gdk/gdkx.h' file not found
     #include <gdk/gdkx.h>
              ^~~~~~~~~~~~

 mate-panel/panel-util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 884a4260a659b8b67e6cc95e8ba3bcce7f42f218
Author: tamplan <tamplan@free.fr>
Date:   Wed Jun 17 17:42:23 2020 +0200

    add git.mk to generate .gitignore

 git.mk | 400 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 400 insertions(+)

commit 33ac306e984d12ea75c91873e04f01584351a59c
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sun Jun 21 01:10:49 2020 +0000

    fix release tarballs on travis CI failed

 .travis.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 825aaf811425bee325240584c28aa3d6e56f9ad9
Author: raveit65 <mate@raveit.de>
Date:   Sat Jun 20 16:14:26 2020 +0200

    release 1.25.0

 NEWS | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit ad1b7e8f8ce6e1404cde5df5f49fffdbfdacf787
Author: raveit65 <mate@raveit.de>
Date:   Sat Jun 20 16:05:17 2020 +0200

    sync with transifex

 help/mate-clock/af/af.po                   |    1 +
 help/mate-clock/am/am.po                   |    1 +
 help/mate-clock/ar/ar.po                   |    1 +
 help/mate-clock/as/as.po                   |    1 +
 help/mate-clock/ast/ast.po                 |    5 +-
 help/mate-clock/az/az.po                   |    1 +
 help/mate-clock/be/be.po                   |    1 +
 help/mate-clock/bg/bg.po                   |    6 +-
 help/mate-clock/bn/bn.po                   |    1 +
 help/mate-clock/bn_IN/bn_IN.po             |    1 +
 help/mate-clock/br/br.po                   |    1 +
 help/mate-clock/bs/bs.po                   |    1 +
 help/mate-clock/ca/ca.po                   |    1 +
 help/mate-clock/ca@valencia/ca@valencia.po |    1 +
 help/mate-clock/cmn/cmn.po                 |    1 +
 help/mate-clock/crh/crh.po                 |    1 +
 help/mate-clock/cs/cs.po                   |   24 +-
 help/mate-clock/cy/cy.po                   |    1 +
 help/mate-clock/da/da.po                   |    1 +
 help/mate-clock/de/de.po                   |    1 +
 help/mate-clock/dz/dz.po                   |    1 +
 help/mate-clock/el/el.po                   |    3 +-
 help/mate-clock/en_AU/en_AU.po             |    1 +
 help/mate-clock/en_CA/en_CA.po             |    1 +
 help/mate-clock/en_GB/en_GB.po             |    1 +
 help/mate-clock/eo/eo.po                   |    1 +
 help/mate-clock/es/es.po                   |    1 +
 help/mate-clock/es_AR/es_AR.po             |    1 +
 help/mate-clock/es_CL/es_CL.po             |    1 +
 help/mate-clock/es_CO/es_CO.po             |    1 +
 help/mate-clock/es_PR/es_PR.po             |    1 +
 help/mate-clock/et/et.po                   |    1 +
 help/mate-clock/eu/eu.po                   |    7 +-
 help/mate-clock/fa/fa.po                   |    1 +
 help/mate-clock/fi/fi.po                   |    1 +
 help/mate-clock/fr/fr.po                   |   15 +-
 help/mate-clock/fur/fur.po                 |    1 +
 help/mate-clock/fy/fy.po                   |    1 +
 help/mate-clock/ga/ga.po                   |    1 +
 help/mate-clock/gl/gl.po                   |    1 +
 help/mate-clock/gu/gu.po                   |    1 +
 help/mate-clock/ha/ha.po                   |    1 +
 help/mate-clock/he/he.po                   |   12 +-
 help/mate-clock/hi/hi.po                   |    1 +
 help/mate-clock/hr/hr.po                   |   32 +-
 help/mate-clock/hu/hu.po                   |    8 +-
 help/mate-clock/hy/hy.po                   |   12 +-
 help/mate-clock/id/id.po                   |    8 +-
 help/mate-clock/ie/ie.po                   |    1 +
 help/mate-clock/ig/ig.po                   |    1 +
 help/mate-clock/is/is.po                   |    1 +
 help/mate-clock/it/it.po                   |  123 +-
 help/mate-clock/ja/ja.po                   |    3 +-
 help/mate-clock/ka/ka.po                   |    1 +
 help/mate-clock/kab/kab.po                 |   10 +-
 help/mate-clock/kk/kk.po                   |    1 +
 help/mate-clock/kn/kn.po                   |    1 +
 help/mate-clock/ko/ko.po                   |    1 +
 help/mate-clock/ku/ku.po                   |    1 +
 help/mate-clock/ky/ky.po                   |    5 +-
 help/mate-clock/lt/lt.po                   |   19 +-
 help/mate-clock/lv/lv.po                   |    1 +
 help/mate-clock/mai/mai.po                 |    1 +
 help/mate-clock/mg/mg.po                   |    1 +
 help/mate-clock/mk/mk.po                   |    1 +
 help/mate-clock/ml/ml.po                   |    1 +
 help/mate-clock/mn/mn.po                   |    1 +
 help/mate-clock/mr/mr.po                   |    1 +
 help/mate-clock/ms/ms.po                   |    7 +-
 help/mate-clock/nb/nb.po                   |    1 +
 help/mate-clock/nds/nds.po                 |    1 +
 help/mate-clock/ne/ne.po                   |    1 +
 help/mate-clock/nl/nl.po                   |    1 +
 help/mate-clock/nn/nn.po                   |    5 +-
 help/mate-clock/nso/nso.po                 |    1 +
 help/mate-clock/oc/oc.po                   |   98 +-
 help/mate-clock/or/or.po                   |    1 +
 help/mate-clock/pa/pa.po                   |    1 +
 help/mate-clock/pl/pl.po                   |    6 +-
 help/mate-clock/ps/ps.po                   |    1 +
 help/mate-clock/pt/pt.po                   |    9 +-
 help/mate-clock/pt_BR/pt_BR.po             |    7 +-
 help/mate-clock/ro/ro.po                   |    1 +
 help/mate-clock/ru/ru.po                   |    9 +-
 help/mate-clock/si/si.po                   |    1 +
 help/mate-clock/sk/sk.po                   |   16 +-
 help/mate-clock/sl/sl.po                   |    9 +-
 help/mate-clock/sq/sq.po                   |    1 +
 help/mate-clock/sr/sr.po                   |    7 +-
 help/mate-clock/sr@latin/sr@latin.po       |    1 +
 help/mate-clock/sv/sv.po                   |   10 +-
 help/mate-clock/ta/ta.po                   |    1 +
 help/mate-clock/te/te.po                   |    1 +
 help/mate-clock/th/th.po                   |    1 +
 help/mate-clock/tr/tr.po                   |    9 +-
 help/mate-clock/ug/ug.po                   |    5 +-
 help/mate-clock/uk/uk.po                   |    6 +-
 help/mate-clock/ur/ur.po                   |    1 +
 help/mate-clock/uz/uz.po                   |    1 +
 help/mate-clock/vi/vi.po                   |    1 +
 help/mate-clock/wa/wa.po                   |    1 +
 help/mate-clock/xh/xh.po                   |    1 +
 help/mate-clock/yo/yo.po                   |    1 +
 help/mate-clock/zh_CN/zh_CN.po             |   72 +-
 help/mate-clock/zh_HK/zh_HK.po             |    1 +
 help/mate-clock/zh_TW/zh_TW.po             |    1 +
 help/mate-clock/zu/zu.po                   |    1 +
 help/mate-fish/af/af.po                    |    1 +
 help/mate-fish/am/am.po                    |    1 +
 help/mate-fish/an/an.po                    |    1 +
 help/mate-fish/ar/ar.po                    |    1 +
 help/mate-fish/as/as.po                    |    1 +
 help/mate-fish/ast/ast.po                  |    5 +-
 help/mate-fish/az/az.po                    |    1 +
 help/mate-fish/be/be.po                    |    1 +
 help/mate-fish/bg/bg.po                    |    6 +-
 help/mate-fish/bn/bn.po                    |    1 +
 help/mate-fish/bn_IN/bn_IN.po              |    1 +
 help/mate-fish/br/br.po                    |    1 +
 help/mate-fish/bs/bs.po                    |    1 +
 help/mate-fish/ca/ca.po                    |    3 +-
 help/mate-fish/ca@valencia/ca@valencia.po  |    1 +
 help/mate-fish/cmn/cmn.po                  |    1 +
 help/mate-fish/crh/crh.po                  |    1 +
 help/mate-fish/cs/cs.po                    |  108 +-
 help/mate-fish/cy/cy.po                    |    1 +
 help/mate-fish/da/da.po                    |    1 +
 help/mate-fish/de/de.po                    |    1 +
 help/mate-fish/dz/dz.po                    |    1 +
 help/mate-fish/el/el.po                    |    3 +-
 help/mate-fish/en_AU/en_AU.po              |    1 +
 help/mate-fish/en_CA/en_CA.po              |    1 +
 help/mate-fish/en_GB/en_GB.po              |    1 +
 help/mate-fish/eo/eo.po                    |    1 +
 help/mate-fish/es/es.po                    |    1 +
 help/mate-fish/es_AR/es_AR.po              |    1 +
 help/mate-fish/es_CL/es_CL.po              |    1 +
 help/mate-fish/es_CO/es_CO.po              |    1 +
 help/mate-fish/es_ES/es_ES.po              |    1 +
 help/mate-fish/es_MX/es_MX.po              |    1 +
 help/mate-fish/es_PR/es_PR.po              |    1 +
 help/mate-fish/et/et.po                    |    1 +
 help/mate-fish/eu/eu.po                    |    7 +-
 help/mate-fish/fa/fa.po                    |    1 +
 help/mate-fish/fi/fi.po                    |    1 +
 help/mate-fish/fil/fil.po                  |    1 +
 help/mate-fish/fr/fr.po                    |    9 +-
 help/mate-fish/frp/frp.po                  |    1 +
 help/mate-fish/fur/fur.po                  |    1 +
 help/mate-fish/fy/fy.po                    |    1 +
 help/mate-fish/ga/ga.po                    |    1 +
 help/mate-fish/gl/gl.po                    |   10 +-
 help/mate-fish/gu/gu.po                    |    1 +
 help/mate-fish/ha/ha.po                    |    1 +
 help/mate-fish/he/he.po                    |   12 +-
 help/mate-fish/hi/hi.po                    |    1 +
 help/mate-fish/hr/hr.po                    |   18 +-
 help/mate-fish/hu/hu.po                    |    8 +-
 help/mate-fish/hy/hy.po                    |   14 +-
 help/mate-fish/ia/ia.po                    |    6 +-
 help/mate-fish/id/id.po                    |    8 +-
 help/mate-fish/ie/ie.po                    |    1 +
 help/mate-fish/ig/ig.po                    |    1 +
 help/mate-fish/is/is.po                    |    1 +
 help/mate-fish/it/it.po                    |   78 +-
 help/mate-fish/ja/ja.po                    |    3 +-
 help/mate-fish/jv/jv.po                    |    1 +
 help/mate-fish/ka/ka.po                    |    1 +
 help/mate-fish/kab/kab.po                  |   10 +-
 help/mate-fish/kk/kk.po                    |    1 +
 help/mate-fish/km/km.po                    |    1 +
 help/mate-fish/kn/kn.po                    |    1 +
 help/mate-fish/ko/ko.po                    |    1 +
 help/mate-fish/ku/ku.po                    |    1 +
 help/mate-fish/ku_IQ/ku_IQ.po              |    1 +
 help/mate-fish/ky/ky.po                    |    5 +-
 help/mate-fish/la/la.po                    |    1 +
 help/mate-fish/lt/lt.po                    |   31 +-
 help/mate-fish/lv/lv.po                    |    5 +-
 help/mate-fish/mai/mai.po                  |    1 +
 help/mate-fish/mg/mg.po                    |    1 +
 help/mate-fish/mi/mi.po                    |    1 +
 help/mate-fish/mk/mk.po                    |    1 +
 help/mate-fish/ml/ml.po                    |    1 +
 help/mate-fish/mn/mn.po                    |    1 +
 help/mate-fish/mr/mr.po                    |    1 +
 help/mate-fish/ms/ms.po                    |    7 +-
 help/mate-fish/nb/nb.po                    |    1 +
 help/mate-fish/nds/nds.po                  |    1 +
 help/mate-fish/ne/ne.po                    |    1 +
 help/mate-fish/nl/nl.po                    |    1 +
 help/mate-fish/nn/nn.po                    |    5 +-
 help/mate-fish/nso/nso.po                  |    1 +
 help/mate-fish/oc/oc.po                    |   59 +-
 help/mate-fish/or/or.po                    |    1 +
 help/mate-fish/pa/pa.po                    |    1 +
 help/mate-fish/pl/pl.po                    |    6 +-
 help/mate-fish/ps/ps.po                    |    1 +
 help/mate-fish/pt/pt.po                    |    9 +-
 help/mate-fish/pt_BR/pt_BR.po              |   10 +-
 help/mate-fish/ro/ro.po                    |    1 +
 help/mate-fish/ru/ru.po                    |    9 +-
 help/mate-fish/si/si.po                    |    1 +
 help/mate-fish/sk/sk.po                    |   15 +-
 help/mate-fish/sl/sl.po                    |    7 +-
 help/mate-fish/sq/sq.po                    |    1 +
 help/mate-fish/sr/sr.po                    |    1 +
 help/mate-fish/sr@latin/sr@latin.po        |    1 +
 help/mate-fish/sv/sv.po                    |   12 +-
 help/mate-fish/ta/ta.po                    |    1 +
 help/mate-fish/te/te.po                    |    1 +
 help/mate-fish/th/th.po                    |    1 +
 help/mate-fish/tk/tk.po                    |    1 +
 help/mate-fish/tr/tr.po                    |    7 +-
 help/mate-fish/ug/ug.po                    |    5 +-
 help/mate-fish/uk/uk.po                    |    1 +
 help/mate-fish/ur/ur.po                    |    1 +
 help/mate-fish/uz/uz.po                    |    1 +
 help/mate-fish/vi/vi.po                    |    1 +
 help/mate-fish/wa/wa.po                    |    1 +
 help/mate-fish/xh/xh.po                    |    1 +
 help/mate-fish/yo/yo.po                    |    1 +
 help/mate-fish/zh-Hans/zh-Hans.po          |    1 +
 help/mate-fish/zh_CN/zh_CN.po              |   11 +-
 help/mate-fish/zh_HK/zh_HK.po              |    1 +
 help/mate-fish/zh_TW/zh_TW.po              |    1 +
 help/mate-fish/zu/zu.po                    |    1 +
 po/LINGUAS                                 |    1 +
 po/ast.po                                  |    2 +-
 po/cs.po                                   |   32 +-
 po/el.po                                   |    6 +-
 po/eo.po                                   |   11 +-
 po/es.po                                   |    6 +-
 po/fa.po                                   |    2 +-
 po/fi.po                                   |   46 +-
 po/fr.po                                   |   70 +-
 po/he.po                                   |    6 +-
 po/hr.po                                   |    6 +-
 po/hu.po                                   |   73 +-
 po/hy.po                                   |   82 +-
 po/ia.po                                   |    7 +-
 po/id.po                                   |  100 +-
 po/it.po                                   |  359 ++--
 po/ja.po                                   |    2 +-
 po/kab.po                                  | 3071 ++++++++++++++++++++++++++++
 po/ky.po                                   |    4 +-
 po/lv.po                                   |    2 +-
 po/ms.po                                   |   24 +-
 po/nl.po                                   |    2 +-
 po/nn.po                                   |    2 +-
 po/oc.po                                   |   98 +-
 po/pl.po                                   |   58 +-
 po/pt.po                                   |    7 +-
 po/pt_BR.po                                |   32 +-
 po/ro.po                                   |    2 +-
 po/ru.po                                   |  104 +-
 po/sk.po                                   |   31 +-
 po/sl.po                                   |   60 +-
 po/sr.po                                   |  102 +-
 po/sv.po                                   |    9 +-
 po/tr.po                                   |   73 +-
 po/ug.po                                   |    4 +-
 po/uk.po                                   |   33 +-
 po/zh_CN.po                                |   62 +-
 264 files changed, 4807 insertions(+), 1025 deletions(-)

commit 14197c598f0d32eac42cebf94f121ec9504daea4
Author: raveit65 <mate@raveit.de>
Date:   Sat Jun 20 16:21:12 2020 +0200

    update resource for transifex

 mate-panel.pot | 189 +++++++++++++++++++++------------------------------------
 1 file changed, 70 insertions(+), 119 deletions(-)

commit b68148762932c0cb4521da56bf122d4f5ffd59a2
Author: raveit65 <mate@raveit.de>
Date:   Sat Jun 20 15:17:39 2020 +0200

    update submodule

 mate-panel/mate-submodules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fa89a226dbe00e00580555e7cd0364301c2e07a9
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Jun 17 09:58:08 2020 +0800

    update to use the latest submodule code

 mate-panel/mate-submodules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b208cfea6a66f7427be320469040d6927e42ff1b
Author: raveit65 <mate@raveit.de>
Date:   Mon Jun 15 11:30:23 2020 +0200

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 1cfcb58dd5bc3e6effac1d2cdbc482dce930dd9b
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Apr 29 16:18:13 2020 +0800

    libegg: use git submodule

 .gitmodules                             |    4 +
 configure.ac                            |    5 +-
 mate-panel/Makefile.am                  |    5 +-
 mate-panel/libegg/Makefile.am           |   25 -
 mate-panel/libegg/eggdesktopfile.c      | 1527 -------------------------------
 mate-panel/libegg/eggdesktopfile.h      |  164 ----
 mate-panel/libegg/eggsmclient-private.h |   50 -
 mate-panel/libegg/eggsmclient-xsmp.c    | 1372 ---------------------------
 mate-panel/libegg/eggsmclient.c         |  594 ------------
 mate-panel/libegg/eggsmclient.h         |  121 ---
 mate-panel/mate-submodules              |    1 +
 po/POTFILES.in                          |    4 +-
 12 files changed, 13 insertions(+), 3859 deletions(-)

commit f6614d839070bcb1439076a2b28dac15f2432713
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Apr 28 10:46:10 2020 +0200

    panel-toplevel: Use monotonic time for measuring time intervals

 mate-panel/panel-toplevel.c | 61 +++++++++++++++------------------------------
 1 file changed, 20 insertions(+), 41 deletions(-)

commit 4dfa8cca74ee2c70b1be0af1c3484032b1a5ae5d
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Apr 22 12:17:00 2020 +0200

    panel-toplevel: Use animation duration time instead of end time

 mate-panel/panel-toplevel.c | 38 +++++++++++++-------------------------
 1 file changed, 13 insertions(+), 25 deletions(-)

commit 8b82deee8eaeb549e6a10af75b7ac2bebfd5d582
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Apr 11 11:50:32 2020 +0200

    panel-toplevel: Remove warning ‘GTimeVal’ is deprecated

 mate-panel/panel-toplevel.c | 115 +++++++++++++++++++++++++-------------------
 1 file changed, 66 insertions(+), 49 deletions(-)

commit 2570b9ab7f8e26c0035bd6fb5401cba99d682ac4
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Apr 7 14:12:38 2020 +0200

    Fix some cast-function-type warnings introduced in GCC 8

 applets/notification_area/system-tray/na-tray-child.c         |  7 ++++++-
 applets/notification_area/system-tray/na-tray-child.h         |  4 +++-
 applets/notification_area/system-tray/na-tray.c               |  2 +-
 applets/wncklet/window-list.c                                 |  2 +-
 mate-panel/libegg/eggdesktopfile.c                            |  2 +-
 .../libmate-panel-applet-private/panel-applets-manager-dbus.c | 11 +++--------
 mate-panel/menu.c                                             |  4 ++--
 mate-panel/panel-addto.c                                      |  2 +-
 mate-panel/panel-applet-info.c                                |  4 +++-
 mate-panel/panel-applet-info.h                                |  2 +-
 mate-panel/panel-applets-manager.c                            |  3 +--
 mate-panel/panel-menu-button.c                                |  6 +++++-
 mate-panel/panel-menu-items.c                                 | 11 +++++------
 mate-panel/panel-util.c                                       |  2 +-
 14 files changed, 34 insertions(+), 28 deletions(-)

commit 146cc418fad7c39a21a1ce55f92a895bb0be3332
Author: Konstantin Unruh <freaxmate@protonmail.com>
Date:   Thu May 14 10:59:58 2020 +0200

    preferences dialog: change show thumbnails radio to check button and bind its active property to sensitivity state of GtkSpinButton

 applets/wncklet/window-list.c  | 64 ++++++++++--------------------------------
 applets/wncklet/window-list.ui | 30 +++++---------------
 2 files changed, 22 insertions(+), 72 deletions(-)

commit 3b9b7eca66936c29fea886ae2b3dd0eeae1c3748
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Apr 24 00:46:08 2020 +0200

    Travis CI: enable irc notifications with broken builds

 .travis.yml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 50ea227e570f9610ad87f191b6f4f49132b16a47
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Apr 24 00:44:31 2020 +0200

    Travis CI: debian build: add clang compiler

 .build.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

commit d2d9c92e5c099f2aaa7c2ad51029c21b6c9c6f54
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Apr 24 00:26:49 2020 +0200

    Travis CI: debian build: add -Wsign-compare -Wunused-parameter to CFLAGS

 .build.yml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 122217d130c4fb4649718d1c533b3818fefc88a2
Author: raveit65 <mate@raveit.de>
Date:   Mon Apr 20 16:40:44 2020 +0200

    ci: don't run configure with autogen.sh

 .build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 620a00cb94fd18705d7be9430dda8514f8938cd9
Author: raveit65 <mate@raveit.de>
Date:   Mon Apr 20 16:40:10 2020 +0200

    build: silent build warnings for distcheck

 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 3324617008940fbc440ec07b2c509e63ebea7f57
Author: raveit65 <mate@raveit.de>
Date:   Fri Apr 10 14:58:35 2020 +0200

    ci: variables, drop obsolete Warn_Cflags

 .build.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit b74d05995bc516d3b07d7724267897222d3a559b
Author: raveit65 <mate@raveit.de>
Date:   Fri Apr 10 14:57:25 2020 +0200

    Travis CI: build with mate-common-1.24.1 tarball

 .build.yml | 35 +++++++++++++++--------------------
 1 file changed, 15 insertions(+), 20 deletions(-)

commit df4347d7e48e22b5b802d2e779af576346c792ea
Author: raveit65 <mate@raveit.de>
Date:   Fri Apr 10 14:53:38 2020 +0200

    use default MATE_COMPILE_WARNINGS level

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ddec8ff819b6d7c0fb99c6079a2d939310d2b9f0
Author: raveit65 <mate@raveit.de>
Date:   Fri Apr 10 14:48:32 2020 +0200

    ci: update build environment

 .travis.yml | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)

commit 88028e7c757baf82b8c3a3126e0fe0fea535d711
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Mar 26 15:20:31 2020 +0100

    Add 48x48 icons

 icons/48x48/Makefile.am                       |  18 +-
 icons/48x48/mate-panel-clock.png              | Bin 0 -> 4031 bytes
 icons/48x48/mate-panel-drawer.png             | Bin 0 -> 1344 bytes
 icons/48x48/mate-panel-fish.png               | Bin 0 -> 2889 bytes
 icons/48x48/mate-panel-force-quit.png         | Bin 0 -> 2142 bytes
 icons/48x48/mate-panel-launcher.png           | Bin 0 -> 2202 bytes
 icons/48x48/mate-panel-notification-area.png  | Bin 0 -> 2410 bytes
 icons/48x48/mate-panel-separator.png          | Bin 0 -> 222 bytes
 icons/48x48/mate-panel-window-list.png        | Bin 0 -> 1316 bytes
 icons/48x48/mate-panel-window-menu.png        | Bin 0 -> 1142 bytes
 icons/48x48/mate-panel-workspace-switcher.png | Bin 0 -> 1039 bytes
 icons/48x48/mate-panel.png                    | Bin 1635 -> 1619 bytes
 icons/48x48/mate-panel.svg                    | 278 --------------------------
 13 files changed, 12 insertions(+), 284 deletions(-)

commit d425d550c5c9bc546fce9c451229caf08665264c
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Mar 26 15:17:25 2020 +0100

    Add 96x96 icons

 configure.ac                                  |   1 +
 icons/96x96/Makefile.am                       |  34 ++++++++++++++++++++++++++
 icons/96x96/mate-panel-clock.png              | Bin 0 -> 11497 bytes
 icons/96x96/mate-panel-drawer.png             | Bin 0 -> 3244 bytes
 icons/96x96/mate-panel-fish.png               | Bin 0 -> 7754 bytes
 icons/96x96/mate-panel-force-quit.png         | Bin 0 -> 5376 bytes
 icons/96x96/mate-panel-launcher.png           | Bin 0 -> 5228 bytes
 icons/96x96/mate-panel-notification-area.png  | Bin 0 -> 5886 bytes
 icons/96x96/mate-panel-separator.png          | Bin 0 -> 417 bytes
 icons/96x96/mate-panel-window-list.png        | Bin 0 -> 2981 bytes
 icons/96x96/mate-panel-window-menu.png        | Bin 0 -> 2159 bytes
 icons/96x96/mate-panel-workspace-switcher.png | Bin 0 -> 1970 bytes
 icons/96x96/mate-panel.png                    | Bin 0 -> 3516 bytes
 icons/Makefile.am                             |   2 +-
 14 files changed, 36 insertions(+), 1 deletion(-)

commit 6ed13133fe24271a677f7f7d8bfd59ba375fe6e3
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Mar 25 19:16:33 2020 +0100

    Add 64x64 icons
    for SVG in scalable/*.svg; do file=${SVG##*/}; echo "rsvg-convert -w 64 -h 64 $SVG -o 64x64/${file%.svg}.png"; done | sh

 configure.ac                                  |   1 +
 icons/64x64/Makefile.am                       |  34 ++++++++++++++++++++++++++
 icons/64x64/mate-panel-clock.png              | Bin 0 -> 6449 bytes
 icons/64x64/mate-panel-drawer.png             | Bin 0 -> 2222 bytes
 icons/64x64/mate-panel-fish.png               | Bin 0 -> 4411 bytes
 icons/64x64/mate-panel-force-quit.png         | Bin 0 -> 3427 bytes
 icons/64x64/mate-panel-launcher.png           | Bin 0 -> 3787 bytes
 icons/64x64/mate-panel-notification-area.png  | Bin 0 -> 3927 bytes
 icons/64x64/mate-panel-separator.png          | Bin 0 -> 325 bytes
 icons/64x64/mate-panel-window-list.png        | Bin 0 -> 2019 bytes
 icons/64x64/mate-panel-window-menu.png        | Bin 0 -> 1851 bytes
 icons/64x64/mate-panel-workspace-switcher.png | Bin 0 -> 1801 bytes
 icons/64x64/mate-panel.png                    | Bin 0 -> 2516 bytes
 icons/Makefile.am                             |   2 +-
 14 files changed, 36 insertions(+), 1 deletion(-)

commit 2ee2dee2586564ee0957dc2e72169e2a3f12ea83
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Mar 19 12:35:50 2020 +0100

    Add 256x256 icons
    for SVG in scalable/*.svg; do file=${SVG##*/}; echo "rsvg-convert -w 256 -h 256 $SVG -o 256x256/${file%.svg}.png"; done | sh

 configure.ac                                    |   1 +
 icons/256x256/Makefile.am                       |  34 ++++++++++++++++++++++++
 icons/256x256/mate-panel-clock.png              | Bin 0 -> 40183 bytes
 icons/256x256/mate-panel-drawer.png             | Bin 0 -> 11635 bytes
 icons/256x256/mate-panel-fish.png               | Bin 0 -> 28619 bytes
 icons/256x256/mate-panel-force-quit.png         | Bin 0 -> 15853 bytes
 icons/256x256/mate-panel-launcher.png           | Bin 0 -> 19017 bytes
 icons/256x256/mate-panel-notification-area.png  | Bin 0 -> 21872 bytes
 icons/256x256/mate-panel-separator.png          | Bin 0 -> 1299 bytes
 icons/256x256/mate-panel-window-list.png        | Bin 0 -> 9252 bytes
 icons/256x256/mate-panel-window-menu.png        | Bin 0 -> 6602 bytes
 icons/256x256/mate-panel-workspace-switcher.png | Bin 0 -> 6394 bytes
 icons/256x256/mate-panel.png                    | Bin 0 -> 10862 bytes
 icons/Makefile.am                               |   2 +-
 14 files changed, 36 insertions(+), 1 deletion(-)

commit 84538e0a0092980511a15de8162bd4a591045a6b
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Mar 19 12:34:18 2020 +0100

    Clean scalable svg files
    
    find . -name *.svg -exec inkscape --convert-dpi-method=none --verb=FileVacuum --verb=FileSave --verb=FileQuit {} \;

 icons/scalable/mate-panel-clock.svg              |  545 +++++------
 icons/scalable/mate-panel-drawer.svg             | 1092 +++++++++++-----------
 icons/scalable/mate-panel-fish.svg               |  965 +++++++++----------
 icons/scalable/mate-panel-force-quit.svg         |  459 ++++-----
 icons/scalable/mate-panel-launcher.svg           |  942 ++++++++++---------
 icons/scalable/mate-panel-notification-area.svg  |  410 ++++----
 icons/scalable/mate-panel-separator.svg          |  112 ++-
 icons/scalable/mate-panel-window-menu.svg        |  479 +++++-----
 icons/scalable/mate-panel-workspace-switcher.svg |  469 +++++-----
 9 files changed, 2752 insertions(+), 2721 deletions(-)

commit 5ca8d3f07010ffd945021e8087647ea2a73a8bff
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Mar 20 16:00:27 2020 +0100

    Travis CI: use Ubuntu devel instead 19.10

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 55a53971dff663bf5ae610a3d36642a6ff3e52c0
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Mar 2 21:20:24 2020 +0100

    button-widget: Fix memory leak

 mate-panel/button-widget.c | 1 +
 1 file changed, 1 insertion(+)

commit 6749f0b63fbbb49f15b2591e37a24e2199897d03
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Mar 2 10:03:36 2020 +0100

    Do not collect the translation for Icon

 applets/clock/Makefile.am             | 2 +-
 applets/fish/Makefile.am              | 2 +-
 applets/notification_area/Makefile.am | 2 +-
 applets/wncklet/Makefile.am           | 2 +-
 mate-panel/Makefile.am                | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit c5bf4ab2b96081d2e41c0b939df525e969fcd147
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Feb 20 10:03:42 2020 +0100

    Travis CI: Fix build error, add .build.yml

 .build.yml  | 195 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 .travis.yml | 202 +-----------------------------------------------------------
 2 files changed, 198 insertions(+), 199 deletions(-)

commit 6c0cf0dab7ff811c5e60c31fdbca3986a986baad
Author: William Wold <wm@wmww.sh>
Date:   Wed Feb 19 16:59:18 2020 -0500

    Enable applications in addto menu (fixes 1055) (#1056)

 mate-panel/panel-addto.c | 2 ++
 1 file changed, 2 insertions(+)

commit d8da4cf285fd43e24793e7a58876020ac7dbe12f
Author: rbuj <robert.buj@gmail.com>
Date:   Thu Feb 6 16:54:49 2020 +0100

    Remove warnings: function declaration isn’t a prototype

 mate-panel/panel-background.c | 2 +-
 mate-panel/panel-layout.c     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 308cbebae0328bc64d2bc54836ee187f25d88f0a
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 9 21:48:02 2020 +0100

    release 1.24.0

 NEWS         | 5 +++++
 configure.ac | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 014211c774b101e5d0336d781b973f0c139a8290
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 9 21:46:05 2020 +0100

    tx: sync with transifex

 help/mate-clock/sl/sl.po |  8 ++++----
 help/mate-fish/sl/sl.po  |  8 ++++----
 po/ia.po                 |  2 +-
 po/sl.po                 | 26 ++++++++++++++------------
 4 files changed, 23 insertions(+), 21 deletions(-)

commit c51e4b3b1152be0dfb9949eb8e481acb2ad59d79
Author: rbuj <robert.buj@gmail.com>
Date:   Wed Feb 5 11:40:55 2020 +0100

    build: show warning flags on configure summary

 configure.ac | 1 +
 1 file changed, 1 insertion(+)

commit 33e7bb9a641f7e14fad624310d94787f1216f4e4
Author: raveit65 <mate@raveit.de>
Date:   Thu Jan 23 12:39:43 2020 +0100

    release 1.23.3

 NEWS         | 15 +++++++++++++++
 configure.ac |  2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit 32077fc071f74c89711805050a893e5d0d766e07
Author: raveit65 <mate@raveit.de>
Date:   Thu Jan 23 12:37:27 2020 +0100

    Revert "release 1.23.2"
    
    This reverts commit 815feeb113fe3b13a4e111e70b295fb6477f7e4a.

 NEWS         | 15 ---------------
 configure.ac |  2 +-
 2 files changed, 1 insertion(+), 16 deletions(-)

commit 815feeb113fe3b13a4e111e70b295fb6477f7e4a
Author: raveit65 <mate@raveit.de>
Date:   Thu Jan 23 12:07:56 2020 +0100

    release 1.23.2

 NEWS         | 15 +++++++++++++++
 configure.ac |  2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit a73f6b1911425563c48fbf9d2ed18f771beda02d
Author: raveit65 <mate@raveit.de>
Date:   Thu Jan 23 12:01:38 2020 +0100

    tx: sync with transifex

 help/mate-clock/af/af.po                   |   6 +-
 help/mate-clock/am/am.po                   |   6 +-
 help/mate-clock/ar/ar.po                   |   8 +-
 help/mate-clock/as/as.po                   |   6 +-
 help/mate-clock/ast/ast.po                 |   6 +-
 help/mate-clock/az/az.po                   |   6 +-
 help/mate-clock/be/be.po                   |   6 +-
 help/mate-clock/bg/bg.po                   |   6 +-
 help/mate-clock/bn/bn.po                   |   6 +-
 help/mate-clock/bn_IN/bn_IN.po             |   6 +-
 help/mate-clock/br/br.po                   |   6 +-
 help/mate-clock/bs/bs.po                   |   6 +-
 help/mate-clock/ca/ca.po                   |   8 +-
 help/mate-clock/ca@valencia/ca@valencia.po |   6 +-
 help/mate-clock/cmn/cmn.po                 |   6 +-
 help/mate-clock/crh/crh.po                 |   6 +-
 help/mate-clock/cs/cs.po                   |   8 +-
 help/mate-clock/cy/cy.po                   |   6 +-
 help/mate-clock/da/da.po                   |  12 +-
 help/mate-clock/de/de.po                   |   8 +-
 help/mate-clock/dz/dz.po                   |   6 +-
 help/mate-clock/el/el.po                   |   8 +-
 help/mate-clock/en_AU/en_AU.po             |   6 +-
 help/mate-clock/en_CA/en_CA.po             |   6 +-
 help/mate-clock/en_GB/en_GB.po             |   6 +-
 help/mate-clock/eo/eo.po                   |   6 +-
 help/mate-clock/es/es.po                   |  93 +++++-----
 help/mate-clock/es_AR/es_AR.po             |   6 +-
 help/mate-clock/es_CL/es_CL.po             |   6 +-
 help/mate-clock/es_CO/es_CO.po             |   6 +-
 help/mate-clock/es_PR/es_PR.po             |   6 +-
 help/mate-clock/et/et.po                   |   6 +-
 help/mate-clock/eu/eu.po                   |   8 +-
 help/mate-clock/fa/fa.po                   |   6 +-
 help/mate-clock/fi/fi.po                   |   6 +-
 help/mate-clock/fr/fr.po                   |  11 +-
 help/mate-clock/fur/fur.po                 |   6 +-
 help/mate-clock/fy/fy.po                   |   6 +-
 help/mate-clock/ga/ga.po                   |   6 +-
 help/mate-clock/gl/gl.po                   |  17 +-
 help/mate-clock/gu/gu.po                   |   6 +-
 help/mate-clock/ha/ha.po                   |   6 +-
 help/mate-clock/he/he.po                   |   6 +-
 help/mate-clock/hi/hi.po                   |   6 +-
 help/mate-clock/hr/hr.po                   |  12 +-
 help/mate-clock/hu/hu.po                   |   6 +-
 help/mate-clock/hy/hy.po                   |   6 +-
 help/mate-clock/id/id.po                   |  38 +++-
 help/mate-clock/ie/ie.po                   |   6 +-
 help/mate-clock/ig/ig.po                   |   6 +-
 help/mate-clock/is/is.po                   |   6 +-
 help/mate-clock/it/it.po                   |  12 +-
 help/mate-clock/ja/ja.po                   |   6 +-
 help/mate-clock/ka/ka.po                   |   6 +-
 help/mate-clock/kab/kab.po                 |   6 +-
 help/mate-clock/kk/kk.po                   |   6 +-
 help/mate-clock/kn/kn.po                   |   6 +-
 help/mate-clock/ko/ko.po                   |   6 +-
 help/mate-clock/ku/ku.po                   |   6 +-
 help/mate-clock/ky/ky.po                   |   6 +-
 help/mate-clock/lt/lt.po                   |   6 +-
 help/mate-clock/lv/lv.po                   |   6 +-
 help/mate-clock/mai/mai.po                 |   6 +-
 help/mate-clock/mg/mg.po                   |   6 +-
 help/mate-clock/mk/mk.po                   |   6 +-
 help/mate-clock/ml/ml.po                   |   6 +-
 help/mate-clock/mn/mn.po                   |   6 +-
 help/mate-clock/mr/mr.po                   |   6 +-
 help/mate-clock/ms/ms.po                   |  12 +-
 help/mate-clock/nb/nb.po                   |   6 +-
 help/mate-clock/nds/nds.po                 |   6 +-
 help/mate-clock/ne/ne.po                   |   6 +-
 help/mate-clock/nl/nl.po                   |   6 +-
 help/mate-clock/nn/nn.po                   |   6 +-
 help/mate-clock/nso/nso.po                 |   6 +-
 help/mate-clock/oc/oc.po                   |   6 +-
 help/mate-clock/or/or.po                   |   6 +-
 help/mate-clock/pa/pa.po                   |   6 +-
 help/mate-clock/pl/pl.po                   |  12 +-
 help/mate-clock/ps/ps.po                   |   6 +-
 help/mate-clock/pt/pt.po                   |  12 +-
 help/mate-clock/pt_BR/pt_BR.po             |   8 +-
 help/mate-clock/ro/ro.po                   |   6 +-
 help/mate-clock/ru/ru.po                   |  14 +-
 help/mate-clock/si/si.po                   |   6 +-
 help/mate-clock/sk/sk.po                   |   6 +-
 help/mate-clock/sl/sl.po                   |   8 +-
 help/mate-clock/sq/sq.po                   |   6 +-
 help/mate-clock/sr/sr.po                   |   6 +-
 help/mate-clock/sr@latin/sr@latin.po       |   6 +-
 help/mate-clock/sv/sv.po                   |   6 +-
 help/mate-clock/ta/ta.po                   |   6 +-
 help/mate-clock/te/te.po                   |   6 +-
 help/mate-clock/th/th.po                   |   6 +-
 help/mate-clock/tr/tr.po                   |   8 +-
 help/mate-clock/ug/ug.po                   |   6 +-
 help/mate-clock/uk/uk.po                   |  56 ++++--
 help/mate-clock/ur/ur.po                   |   6 +-
 help/mate-clock/uz/uz.po                   |   6 +-
 help/mate-clock/vi/vi.po                   |   6 +-
 help/mate-clock/wa/wa.po                   |   6 +-
 help/mate-clock/xh/xh.po                   |   6 +-
 help/mate-clock/yo/yo.po                   |   6 +-
 help/mate-clock/zh_CN/zh_CN.po             |   8 +-
 help/mate-clock/zh_HK/zh_HK.po             |   6 +-
 help/mate-clock/zh_TW/zh_TW.po             |   6 +-
 help/mate-clock/zu/zu.po                   |   6 +-
 help/mate-fish/af/af.po                    |   6 +-
 help/mate-fish/am/am.po                    |   6 +-
 help/mate-fish/an/an.po                    |   6 +-
 help/mate-fish/ar/ar.po                    |   8 +-
 help/mate-fish/as/as.po                    |   6 +-
 help/mate-fish/ast/ast.po                  |   6 +-
 help/mate-fish/az/az.po                    |   6 +-
 help/mate-fish/be/be.po                    |   6 +-
 help/mate-fish/bg/bg.po                    |   6 +-
 help/mate-fish/bn/bn.po                    |   6 +-
 help/mate-fish/bn_IN/bn_IN.po              |   6 +-
 help/mate-fish/br/br.po                    |   6 +-
 help/mate-fish/bs/bs.po                    |   6 +-
 help/mate-fish/ca/ca.po                    |   8 +-
 help/mate-fish/ca@valencia/ca@valencia.po  |   6 +-
 help/mate-fish/cmn/cmn.po                  |   6 +-
 help/mate-fish/crh/crh.po                  |   6 +-
 help/mate-fish/cs/cs.po                    |   8 +-
 help/mate-fish/cy/cy.po                    |   6 +-
 help/mate-fish/da/da.po                    |  12 +-
 help/mate-fish/de/de.po                    |  12 +-
 help/mate-fish/dz/dz.po                    |   6 +-
 help/mate-fish/el/el.po                    |   8 +-
 help/mate-fish/en_AU/en_AU.po              |   6 +-
 help/mate-fish/en_CA/en_CA.po              |   6 +-
 help/mate-fish/en_GB/en_GB.po              |   6 +-
 help/mate-fish/eo/eo.po                    |   6 +-
 help/mate-fish/es/es.po                    |  93 +++++-----
 help/mate-fish/es_AR/es_AR.po              |   6 +-
 help/mate-fish/es_CL/es_CL.po              |   6 +-
 help/mate-fish/es_CO/es_CO.po              |   6 +-
 help/mate-fish/es_ES/es_ES.po              |   6 +-
 help/mate-fish/es_MX/es_MX.po              |   6 +-
 help/mate-fish/es_PR/es_PR.po              |   6 +-
 help/mate-fish/et/et.po                    |   6 +-
 help/mate-fish/eu/eu.po                    |   8 +-
 help/mate-fish/fa/fa.po                    |   6 +-
 help/mate-fish/fi/fi.po                    |   6 +-
 help/mate-fish/fil/fil.po                  |   6 +-
 help/mate-fish/fr/fr.po                    |   9 +-
 help/mate-fish/frp/frp.po                  |   6 +-
 help/mate-fish/fur/fur.po                  |   6 +-
 help/mate-fish/fy/fy.po                    |   6 +-
 help/mate-fish/ga/ga.po                    |   6 +-
 help/mate-fish/gl/gl.po                    |  13 +-
 help/mate-fish/gu/gu.po                    |   6 +-
 help/mate-fish/ha/ha.po                    |   6 +-
 help/mate-fish/he/he.po                    |   6 +-
 help/mate-fish/hi/hi.po                    |   6 +-
 help/mate-fish/hr/hr.po                    |   8 +-
 help/mate-fish/hu/hu.po                    |   6 +-
 help/mate-fish/hy/hy.po                    |   6 +-
 help/mate-fish/ia/ia.po                    |   6 +-
 help/mate-fish/id/id.po                    |  38 +++-
 help/mate-fish/ie/ie.po                    |   6 +-
 help/mate-fish/ig/ig.po                    |   6 +-
 help/mate-fish/is/is.po                    |   6 +-
 help/mate-fish/it/it.po                    |  12 +-
 help/mate-fish/ja/ja.po                    |   6 +-
 help/mate-fish/jv/jv.po                    |   6 +-
 help/mate-fish/ka/ka.po                    |   6 +-
 help/mate-fish/kab/kab.po                  |   6 +-
 help/mate-fish/kk/kk.po                    |   6 +-
 help/mate-fish/km/km.po                    |   6 +-
 help/mate-fish/kn/kn.po                    |   6 +-
 help/mate-fish/ko/ko.po                    |   6 +-
 help/mate-fish/ku/ku.po                    |   6 +-
 help/mate-fish/ku_IQ/ku_IQ.po              |   6 +-
 help/mate-fish/ky/ky.po                    |   6 +-
 help/mate-fish/la/la.po                    |   6 +-
 help/mate-fish/lt/lt.po                    |   6 +-
 help/mate-fish/lv/lv.po                    |   6 +-
 help/mate-fish/mai/mai.po                  |   6 +-
 help/mate-fish/mg/mg.po                    |   6 +-
 help/mate-fish/mi/mi.po                    |   6 +-
 help/mate-fish/mk/mk.po                    |   6 +-
 help/mate-fish/ml/ml.po                    |   6 +-
 help/mate-fish/mn/mn.po                    |   6 +-
 help/mate-fish/mr/mr.po                    |   6 +-
 help/mate-fish/ms/ms.po                    |   8 +-
 help/mate-fish/nb/nb.po                    |   6 +-
 help/mate-fish/nds/nds.po                  |   6 +-
 help/mate-fish/ne/ne.po                    |   6 +-
 help/mate-fish/nl/nl.po                    |   6 +-
 help/mate-fish/nn/nn.po                    |   6 +-
 help/mate-fish/nso/nso.po                  |   6 +-
 help/mate-fish/oc/oc.po                    |   6 +-
 help/mate-fish/or/or.po                    |   6 +-
 help/mate-fish/pa/pa.po                    |   6 +-
 help/mate-fish/pl/pl.po                    |  12 +-
 help/mate-fish/ps/ps.po                    |   6 +-
 help/mate-fish/pt/pt.po                    |  12 +-
 help/mate-fish/pt_BR/pt_BR.po              |   8 +-
 help/mate-fish/ro/ro.po                    |   6 +-
 help/mate-fish/ru/ru.po                    |  17 +-
 help/mate-fish/si/si.po                    |   6 +-
 help/mate-fish/sk/sk.po                    |   6 +-
 help/mate-fish/sl/sl.po                    |   8 +-
 help/mate-fish/sq/sq.po                    |   6 +-
 help/mate-fish/sr/sr.po                    |   6 +-
 help/mate-fish/sr@latin/sr@latin.po        |   6 +-
 help/mate-fish/sv/sv.po                    |   6 +-
 help/mate-fish/ta/ta.po                    |   6 +-
 help/mate-fish/te/te.po                    |   6 +-
 help/mate-fish/th/th.po                    |   6 +-
 help/mate-fish/tk/tk.po                    |   6 +-
 help/mate-fish/tr/tr.po                    |  11 +-
 help/mate-fish/ug/ug.po                    |   6 +-
 help/mate-fish/uk/uk.po                    |   6 +-
 help/mate-fish/ur/ur.po                    |   6 +-
 help/mate-fish/uz/uz.po                    |   6 +-
 help/mate-fish/vi/vi.po                    |   6 +-
 help/mate-fish/wa/wa.po                    |   6 +-
 help/mate-fish/xh/xh.po                    |   6 +-
 help/mate-fish/yo/yo.po                    |   6 +-
 help/mate-fish/zh-Hans/zh-Hans.po          |   6 +-
 help/mate-fish/zh_CN/zh_CN.po              |  10 +-
 help/mate-fish/zh_HK/zh_HK.po              |   6 +-
 help/mate-fish/zh_TW/zh_TW.po              |   6 +-
 help/mate-fish/zu/zu.po                    |   6 +-
 po/af.po                                   |  78 ++++----
 po/am.po                                   |  78 ++++----
 po/ar.po                                   |  78 ++++----
 po/as.po                                   |  78 ++++----
 po/ast.po                                  |  78 ++++----
 po/az.po                                   |  78 ++++----
 po/be.po                                   |  78 ++++----
 po/bg.po                                   |  78 ++++----
 po/bn.po                                   |  78 ++++----
 po/bn_IN.po                                |  78 ++++----
 po/br.po                                   |  78 ++++----
 po/bs.po                                   |  78 ++++----
 po/ca.po                                   | 118 ++++++------
 po/ca@valencia.po                          |  78 ++++----
 po/cmn.po                                  |  78 ++++----
 po/crh.po                                  |  78 ++++----
 po/cs.po                                   | 136 ++++++--------
 po/cy.po                                   |  78 ++++----
 po/da.po                                   | 126 ++++++-------
 po/de.po                                   |  98 ++++------
 po/dz.po                                   |  78 ++++----
 po/el.po                                   |  78 ++++----
 po/en_AU.po                                |  78 ++++----
 po/en_CA.po                                |  78 ++++----
 po/en_GB.po                                |  78 ++++----
 po/eo.po                                   |  78 ++++----
 po/es.po                                   | 195 +++++++++-----------
 po/es_AR.po                                |  78 ++++----
 po/es_CL.po                                |  78 ++++----
 po/es_CO.po                                |  78 ++++----
 po/es_CR.po                                |  78 ++++----
 po/es_DO.po                                |  78 ++++----
 po/es_EC.po                                |  78 ++++----
 po/es_ES.po                                |  78 ++++----
 po/es_MX.po                                |  78 ++++----
 po/es_NI.po                                |  78 ++++----
 po/es_PA.po                                |  78 ++++----
 po/es_PE.po                                |  78 ++++----
 po/es_PR.po                                |  78 ++++----
 po/es_SV.po                                |  78 ++++----
 po/es_UY.po                                |  78 ++++----
 po/es_VE.po                                |  78 ++++----
 po/et.po                                   |  98 ++++------
 po/eu.po                                   |  78 ++++----
 po/fa.po                                   |  78 ++++----
 po/fi.po                                   |  87 ++++-----
 po/fr.po                                   |  78 ++++----
 po/fr_CA.po                                |  78 ++++----
 po/frp.po                                  |  78 ++++----
 po/fur.po                                  |  78 ++++----
 po/fy.po                                   |  78 ++++----
 po/ga.po                                   |  78 ++++----
 po/gl.po                                   | 147 ++++++++-------
 po/gu.po                                   |  78 ++++----
 po/ha.po                                   |  78 ++++----
 po/he.po                                   |  78 ++++----
 po/hi.po                                   |  78 ++++----
 po/hr.po                                   |  78 ++++----
 po/hu.po                                   |  98 ++++------
 po/hy.po                                   |  78 ++++----
 po/ia.po                                   |  78 ++++----
 po/id.po                                   |  78 ++++----
 po/ie.po                                   |  94 ++++------
 po/ig.po                                   |  78 ++++----
 po/is.po                                   |  78 ++++----
 po/it.po                                   | 119 ++++++------
 po/ja.po                                   |  78 ++++----
 po/jv.po                                   |  78 ++++----
 po/ka.po                                   |  78 ++++----
 po/kk.po                                   |  78 ++++----
 po/kn.po                                   |  78 ++++----
 po/ko.po                                   |  98 ++++------
 po/ku.po                                   |  78 ++++----
 po/ku_IQ.po                                |  78 ++++----
 po/ky.po                                   |  78 ++++----
 po/li.po                                   |  78 ++++----
 po/lt.po                                   | 128 ++++++-------
 po/lv.po                                   |  78 ++++----
 po/mai.po                                  |  78 ++++----
 po/mg.po                                   |  78 ++++----
 po/mi.po                                   |  78 ++++----
 po/mk.po                                   |  78 ++++----
 po/ml.po                                   |  78 ++++----
 po/mn.po                                   |  78 ++++----
 po/mr.po                                   |  78 ++++----
 po/ms.po                                   | 124 ++++++-------
 po/nb.po                                   | 120 ++++++------
 po/nds.po                                  | 170 ++++++++---------
 po/ne.po                                   |  78 ++++----
 po/nl.po                                   | 119 ++++++------
 po/nn.po                                   |  78 ++++----
 po/nso.po                                  |  78 ++++----
 po/oc.po                                   |  78 ++++----
 po/or.po                                   |  78 ++++----
 po/pa.po                                   |  78 ++++----
 po/pl.po                                   |  98 ++++------
 po/pms.po                                  |  78 ++++----
 po/ps.po                                   |  78 ++++----
 po/pt.po                                   | 105 +++++------
 po/pt_BR.po                                | 100 ++++------
 po/ro.po                                   |  78 ++++----
 po/ru.po                                   |  80 ++++----
 po/rw.po                                   |  78 ++++----
 po/sc.po                                   |  78 ++++----
 po/si.po                                   |  78 ++++----
 po/sk.po                                   |  78 ++++----
 po/sl.po                                   |  78 ++++----
 po/sq.po                                   |  78 ++++----
 po/sr.po                                   |  78 ++++----
 po/sr@latin.po                             |  78 ++++----
 po/sv.po                                   |  78 ++++----
 po/ta.po                                   |  78 ++++----
 po/te.po                                   |  78 ++++----
 po/th.po                                   |  78 ++++----
 po/tk.po                                   |  78 ++++----
 po/tr.po                                   |  98 ++++------
 po/tt.po                                   |  78 ++++----
 po/ug.po                                   |  78 ++++----
 po/uk.po                                   | 283 ++++++++++++++---------------
 po/ur.po                                   |  78 ++++----
 po/uz.po                                   |  78 ++++----
 po/vi.po                                   |  78 ++++----
 po/wa.po                                   |  78 ++++----
 po/xh.po                                   |  78 ++++----
 po/yi.po                                   |  78 ++++----
 po/yo.po                                   |  78 ++++----
 po/zh_CN.po                                | 100 ++++------
 po/zh_HK.po                                |  78 ++++----
 po/zh_TW.po                                | 120 ++++++------
 po/zu.po                                   |  78 ++++----
 357 files changed, 6439 insertions(+), 6618 deletions(-)

commit ac233b7b39da180f79461cbdf2fe72f29cf11afe
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Thu Dec 5 12:24:05 2019 +0100

    Avoid double a11y description on panel toplevels
    
    Do not set an extra a11y name and description on an internal child of the
    panel, because its toplevel has most of it already through setting the GTK
    window title.  Instead, explicitly set the a11y name and description on the
    toplevel directly, possibly overriding GTK's value implicitly set via
    gtk_window_set_title(), but which would be the same anyway.
    
    This prevents e.g. a screen reader vocalizing the panel name twice when
    entering it, once for the toplevel and once for the internal child.
    This also avoids announcing the panel again when moving from one of the hide
    buttons to one of the applets or launcher.

 mate-panel/panel-toplevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 616ef95ed3a39469461bf883a01e794ea8fefb85
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 12 18:10:45 2020 +0100

    Update copyright to 2020

 mate-clock.pot |  6 ++---
 mate-fish.pot  |  6 ++---
 mate-panel.pot | 78 +++++++++++++++++++++++++++++-----------------------------
 3 files changed, 45 insertions(+), 45 deletions(-)

commit 7643b1d4ee368b664e1ff6d81ddc8448e3b71b12
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 12 18:03:18 2020 +0100

    Update copyright to 2020

 applets/clock/clock.c                | 2 +-
 applets/fish/fish.c                  | 2 +-
 applets/notification_area/main.c     | 2 +-
 applets/wncklet/showdesktop.c        | 2 +-
 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/window-menu.c        | 2 +-
 applets/wncklet/workspace-switcher.c | 2 +-
 help/mate-clock/C/index.docbook      | 2 +-
 help/mate-fish/C/index.docbook       | 2 +-
 mate-panel/panel-context-menu.c      | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

commit 666ee49426b7353c77e93268fb4c73505f8a1dd5
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Wed Dec 11 15:47:51 2019 +0000

    Clock applet: Fix string comparison

 applets/clock/clock.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 2d88f6f2a819cc251d4e7ec4a3750ce368fa7bf2
Author: Jonathan Michalon <dev@michalon.eu>
Date:   Fri Dec 6 17:49:29 2019 +0100

    clock applet: add a call to ATK to provide the current displayed time

 applets/clock/clock.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 5715290e278e74e7bad2dfa3f64e5f0b1a6a5446
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Dec 8 14:24:11 2019 +0100

    Travis CI: add '-Wredundant-decls' to 'CFLAGS' variable

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 40fe418fd4b03d58f2606c66a3b82d1ef88c9f31
Author: Victor Kareh <vkareh@redhat.com>
Date:   Thu Nov 28 07:00:29 2019 -0500

    status-notifier: Render menu items as cairo surface

 applets/notification_area/status-notifier/sn-dbus-menu-item.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 8c354d3543c361e88417b593594590b765617ae0
Author: Victor Kareh <vkareh@redhat.com>
Date:   Wed Nov 27 13:51:53 2019 -0500

    status-notifier: Render icons as cairo surface
    
    Instead of GdkPixbuf, so that SNI icons can render correctly on HiDPI
    displays.

 .../notification_area/status-notifier/sn-item-v0.c | 48 ++++++++++++++--------
 1 file changed, 30 insertions(+), 18 deletions(-)

commit 8f9b9ba97dabce3f14806b62bdc0777faaa01562
Author: raveit65 <mate@raveit.de>
Date:   Sun Nov 24 15:00:26 2019 +0100

    travis ci: use fedora:latest

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 25e2ee4301dbd27daf498b14d346692f7e2f341c
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 14 13:32:07 2019 +0100

    na-tray: increase min_icon_size value
    
    This is better for HIDPI resolution with larger icons.
    And tray- applet can be displayed in in one row with
    a full-size top/bottom panel.

 applets/notification_area/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 981ee3649d067e3cf5b39ad46624d1bb5b182534
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Fri Nov 15 16:20:44 2019 +0800

    fix mate-panel can not find mo file

 applets/clock/Makefile.am        | 2 +-
 applets/fish/Makefile.am         | 2 +-
 applets/wncklet/Makefile.am      | 2 +-
 libmate-panel-applet/Makefile.am | 2 +-
 mate-panel/Makefile.am           | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit 81fcedf052112e66b46e93c719347b3d9ff8476f
Author: raveit65 <mate@raveit.de>
Date:   Fri Nov 15 00:21:27 2019 +0100

    tx: sync with transifex

 help/mate-clock/ar/ar.po       |    2 +-
 help/mate-clock/es/es.po       |    3 +-
 help/mate-clock/hu/hu.po       |    2 +-
 help/mate-clock/ie/ie.po       |    2 +-
 help/mate-clock/it/it.po       |   77 +-
 help/mate-clock/nb/nb.po       |    5 +-
 help/mate-clock/pt_BR/pt_BR.po |    4 +-
 help/mate-clock/sl/sl.po       |   10 +-
 help/mate-clock/tr/tr.po       |    2 +-
 help/mate-fish/ar/ar.po        |    2 +-
 help/mate-fish/es/es.po        |    3 +-
 help/mate-fish/hu/hu.po        |    2 +-
 help/mate-fish/ie/ie.po        |    2 +-
 help/mate-fish/ms/ms.po        |    4 +-
 help/mate-fish/nb/nb.po        |    5 +-
 help/mate-fish/pt_BR/pt_BR.po  |    4 +-
 help/mate-fish/sl/sl.po        |   10 +-
 po/af.po                       | 1527 +++++++++++++++++++-------------------
 po/am.po                       | 1527 +++++++++++++++++++-------------------
 po/ar.po                       | 1527 +++++++++++++++++++-------------------
 po/as.po                       | 1527 +++++++++++++++++++-------------------
 po/ast.po                      | 1527 +++++++++++++++++++-------------------
 po/az.po                       | 1527 +++++++++++++++++++-------------------
 po/be.po                       | 1527 +++++++++++++++++++-------------------
 po/bg.po                       | 1527 +++++++++++++++++++-------------------
 po/bn.po                       | 1527 +++++++++++++++++++-------------------
 po/bn_IN.po                    | 1527 +++++++++++++++++++-------------------
 po/br.po                       | 1527 +++++++++++++++++++-------------------
 po/bs.po                       | 1527 +++++++++++++++++++-------------------
 po/ca.po                       | 1527 +++++++++++++++++++-------------------
 po/ca@valencia.po              | 1527 +++++++++++++++++++-------------------
 po/cmn.po                      | 1527 +++++++++++++++++++-------------------
 po/crh.po                      | 1527 +++++++++++++++++++-------------------
 po/cs.po                       | 1527 +++++++++++++++++++-------------------
 po/cy.po                       | 1527 +++++++++++++++++++-------------------
 po/da.po                       | 1527 +++++++++++++++++++-------------------
 po/de.po                       | 1591 ++++++++++++++++++++--------------------
 po/dz.po                       | 1527 +++++++++++++++++++-------------------
 po/el.po                       | 1509 ++++++++++++++++++-------------------
 po/en_AU.po                    | 1527 +++++++++++++++++++-------------------
 po/en_CA.po                    | 1527 +++++++++++++++++++-------------------
 po/en_GB.po                    | 1527 +++++++++++++++++++-------------------
 po/eo.po                       | 1527 +++++++++++++++++++-------------------
 po/es.po                       | 1540 +++++++++++++++++++-------------------
 po/es_AR.po                    | 1523 +++++++++++++++++++-------------------
 po/es_CL.po                    | 1523 +++++++++++++++++++-------------------
 po/es_CO.po                    | 1523 +++++++++++++++++++-------------------
 po/es_CR.po                    | 1519 +++++++++++++++++++-------------------
 po/es_DO.po                    | 1519 +++++++++++++++++++-------------------
 po/es_EC.po                    | 1519 +++++++++++++++++++-------------------
 po/es_ES.po                    | 1523 +++++++++++++++++++-------------------
 po/es_MX.po                    | 1523 +++++++++++++++++++-------------------
 po/es_NI.po                    | 1519 +++++++++++++++++++-------------------
 po/es_PA.po                    | 1519 +++++++++++++++++++-------------------
 po/es_PE.po                    | 1519 +++++++++++++++++++-------------------
 po/es_PR.po                    | 1519 +++++++++++++++++++-------------------
 po/es_SV.po                    | 1519 +++++++++++++++++++-------------------
 po/es_UY.po                    | 1519 +++++++++++++++++++-------------------
 po/es_VE.po                    | 1523 +++++++++++++++++++-------------------
 po/et.po                       | 1527 +++++++++++++++++++-------------------
 po/eu.po                       | 1527 +++++++++++++++++++-------------------
 po/fa.po                       | 1527 +++++++++++++++++++-------------------
 po/fi.po                       | 1527 +++++++++++++++++++-------------------
 po/fr.po                       | 1527 +++++++++++++++++++-------------------
 po/fr_CA.po                    | 1523 +++++++++++++++++++-------------------
 po/frp.po                      | 1523 +++++++++++++++++++-------------------
 po/fur.po                      | 1527 +++++++++++++++++++-------------------
 po/fy.po                       | 1527 +++++++++++++++++++-------------------
 po/ga.po                       | 1527 +++++++++++++++++++-------------------
 po/gl.po                       | 1527 +++++++++++++++++++-------------------
 po/gu.po                       | 1527 +++++++++++++++++++-------------------
 po/ha.po                       | 1527 +++++++++++++++++++-------------------
 po/he.po                       | 1527 +++++++++++++++++++-------------------
 po/hi.po                       | 1527 +++++++++++++++++++-------------------
 po/hr.po                       | 1527 +++++++++++++++++++-------------------
 po/hu.po                       | 1529 +++++++++++++++++++-------------------
 po/hy.po                       | 1527 +++++++++++++++++++-------------------
 po/ia.po                       | 1519 +++++++++++++++++++-------------------
 po/id.po                       | 1527 +++++++++++++++++++-------------------
 po/ie.po                       | 1527 +++++++++++++++++++-------------------
 po/ig.po                       | 1527 +++++++++++++++++++-------------------
 po/is.po                       | 1527 +++++++++++++++++++-------------------
 po/it.po                       | 1527 +++++++++++++++++++-------------------
 po/ja.po                       | 1527 +++++++++++++++++++-------------------
 po/jv.po                       | 1519 +++++++++++++++++++-------------------
 po/ka.po                       | 1527 +++++++++++++++++++-------------------
 po/kk.po                       | 1527 +++++++++++++++++++-------------------
 po/kn.po                       | 1527 +++++++++++++++++++-------------------
 po/ko.po                       | 1527 +++++++++++++++++++-------------------
 po/ku.po                       | 1527 +++++++++++++++++++-------------------
 po/ku_IQ.po                    | 1523 +++++++++++++++++++-------------------
 po/ky.po                       | 1527 +++++++++++++++++++-------------------
 po/li.po                       | 1519 +++++++++++++++++++-------------------
 po/lt.po                       | 1527 +++++++++++++++++++-------------------
 po/lv.po                       | 1527 +++++++++++++++++++-------------------
 po/mai.po                      | 1527 +++++++++++++++++++-------------------
 po/mg.po                       | 1527 +++++++++++++++++++-------------------
 po/mi.po                       | 1519 +++++++++++++++++++-------------------
 po/mk.po                       | 1527 +++++++++++++++++++-------------------
 po/ml.po                       | 1527 +++++++++++++++++++-------------------
 po/mn.po                       | 1527 +++++++++++++++++++-------------------
 po/mr.po                       | 1527 +++++++++++++++++++-------------------
 po/ms.po                       | 1542 +++++++++++++++++++-------------------
 po/nb.po                       | 1552 ++++++++++++++++++++-------------------
 po/nds.po                      | 1527 +++++++++++++++++++-------------------
 po/ne.po                       | 1527 +++++++++++++++++++-------------------
 po/nl.po                       | 1527 +++++++++++++++++++-------------------
 po/nn.po                       | 1527 +++++++++++++++++++-------------------
 po/nso.po                      | 1527 +++++++++++++++++++-------------------
 po/oc.po                       | 1527 +++++++++++++++++++-------------------
 po/or.po                       | 1527 +++++++++++++++++++-------------------
 po/pa.po                       | 1527 +++++++++++++++++++-------------------
 po/pl.po                       | 1527 +++++++++++++++++++-------------------
 po/pms.po                      | 1519 +++++++++++++++++++-------------------
 po/ps.po                       | 1527 +++++++++++++++++++-------------------
 po/pt.po                       | 1527 +++++++++++++++++++-------------------
 po/pt_BR.po                    | 1531 +++++++++++++++++++-------------------
 po/ro.po                       | 1527 +++++++++++++++++++-------------------
 po/ru.po                       | 1532 +++++++++++++++++++-------------------
 po/rw.po                       | 1523 +++++++++++++++++++-------------------
 po/sc.po                       | 1519 +++++++++++++++++++-------------------
 po/si.po                       | 1527 +++++++++++++++++++-------------------
 po/sk.po                       | 1527 +++++++++++++++++++-------------------
 po/sl.po                       | 1532 +++++++++++++++++++-------------------
 po/sq.po                       | 1527 +++++++++++++++++++-------------------
 po/sr.po                       | 1527 +++++++++++++++++++-------------------
 po/sr@latin.po                 | 1527 +++++++++++++++++++-------------------
 po/sv.po                       | 1527 +++++++++++++++++++-------------------
 po/ta.po                       | 1527 +++++++++++++++++++-------------------
 po/te.po                       | 1527 +++++++++++++++++++-------------------
 po/th.po                       | 1527 +++++++++++++++++++-------------------
 po/tk.po                       | 1519 +++++++++++++++++++-------------------
 po/tr.po                       | 1527 +++++++++++++++++++-------------------
 po/tt.po                       | 1519 +++++++++++++++++++-------------------
 po/ug.po                       | 1527 +++++++++++++++++++-------------------
 po/uk.po                       | 1527 +++++++++++++++++++-------------------
 po/ur.po                       | 1527 +++++++++++++++++++-------------------
 po/uz.po                       | 1527 +++++++++++++++++++-------------------
 po/vi.po                       | 1527 +++++++++++++++++++-------------------
 po/wa.po                       | 1519 +++++++++++++++++++-------------------
 po/xh.po                       | 1527 +++++++++++++++++++-------------------
 po/yi.po                       | 1519 +++++++++++++++++++-------------------
 po/yo.po                       | 1527 +++++++++++++++++++-------------------
 po/zh_CN.po                    | 1527 +++++++++++++++++++-------------------
 po/zh_HK.po                    | 1527 +++++++++++++++++++-------------------
 po/zh_TW.po                    | 1527 +++++++++++++++++++-------------------
 po/zu.po                       | 1527 +++++++++++++++++++-------------------
 147 files changed, 100425 insertions(+), 98147 deletions(-)

commit 23df1d03f15c595a24efb76a50ed98768e014962
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 14 14:38:53 2019 +0100

    tx: add fixes to makepot script

 makepot | 1 +
 1 file changed, 1 insertion(+)

commit 71de707d608aec853eda18c4ff876d4cf902f8be
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 14 14:34:42 2019 +0100

    tx: update resource for transifex

 mate-panel.pot | 1495 ++++++++++++++++++++++++++++----------------------------
 1 file changed, 751 insertions(+), 744 deletions(-)

commit ff8684bca7d3f439a04b4204051d240eb934d6e1
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Oct 30 20:48:47 2019 +0800

    ci: autopoint

 .travis.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit f5354df76377627dde56b079c9328b46865033d2
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Oct 30 20:33:54 2019 +0800

    migrate from intltool to gettext

 Makefile.am                                        |  5 +-
 applets/clock/Makefile.am                          | 12 ++--
 ...el.ClockApplet.mate-panel-applet.desktop.in.in} |  9 +--
 applets/fish/Makefile.am                           | 12 ++--
 ...nel.FishApplet.mate-panel-applet.desktop.in.in} |  9 +--
 applets/notification_area/Makefile.am              | 14 ++--
 ...tionAreaApplet.mate-panel-applet.desktop.in.in} |  9 +--
 applets/wncklet/Makefile.am                        | 12 ++--
 ....panel.Wncklet.mate-panel-applet.desktop.in.in} | 24 ++++---
 configure.ac                                       |  7 +-
 data/Makefile.am                                   |  2 -
 libmate-panel-applet/Makefile.am                   | 10 +--
 ...e.panel.TestApplet.mate-panel-applet.desktop.in | 11 +++
 .../org.mate.panel.TestApplet.mate-panel-applet.in | 10 ---
 mate-panel/Makefile.am                             |  4 +-
 mate-panel/mate-panel.desktop.in                   |  6 +-
 po/Makevars                                        | 79 ++++++++++++++++++++++
 po/POTFILES.in                                     | 45 ++++++------
 18 files changed, 182 insertions(+), 98 deletions(-)

commit 1614cec077ab369640b24ff73045bf470ca93683
Author: rbuj <robert.buj@gmail.com>
Date:   Mon Oct 21 14:14:19 2019 +0200

    build: %.gschema.xml files were already generated by autogen.sh
    
    configure.ac contents:
    
    GETTEXT_PACKAGE=mate-panel
    AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Define the gettext package to be used])
    AC_SUBST(GETTEXT_PACKAGE)
    
    AC_OUTPUT([
    ...
    data/org.mate.panel.gschema.xml
    data/org.mate.panel.menubar.gschema.xml
    data/org.mate.panel.object.gschema.xml
    data/org.mate.panel.toplevel.gschema.xml
    ...

 data/Makefile.am | 3 ---
 1 file changed, 3 deletions(-)

commit 6104b728b5fd5745ec8298a7e47ea712cfd4b1c0
Author: raveit65 <mate@raveit.de>
Date:   Wed Oct 30 11:46:13 2019 +0100

    tx: pull with fixed formatting issue of greek language
    
    in clock user-guide

 help/mate-clock/el/el.po |   9 +--
 po/el.po                 | 152 ++++++++++++++++++++++++-----------------------
 2 files changed, 83 insertions(+), 78 deletions(-)

commit bbdaf1fd77e851bd0b63e4793e1f9309dbe12ebc
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Oct 15 10:39:26 2019 +0200

    Travis CI: don't build mate-menus from git master

 .travis.yml | 15 ---------------
 1 file changed, 15 deletions(-)

commit f42be5d37b7f2b5c71d3a3595936e4d86c1fa554
Author: raveit65 <mate@raveit.de>
Date:   Fri Oct 11 19:43:45 2019 +0200

    release 1.23.2

 NEWS         | 122 ++++++++++++++++++++++++++++++++++++-----------------------
 configure.ac |   2 +-
 2 files changed, 75 insertions(+), 49 deletions(-)

commit 5b7a40e3570c1a0751c7c6d026de20ea545ea404
Author: raveit65 <mate@raveit.de>
Date:   Fri Oct 11 19:36:54 2019 +0200

    tx: sync with transifex

 help/mate-clock/af/af.po                   |   4 +-
 help/mate-clock/am/am.po                   |  10 +-
 help/mate-clock/ar/ar.po                   |  11 +-
 help/mate-clock/as/as.po                   |   4 +-
 help/mate-clock/ast/ast.po                 |   4 +-
 help/mate-clock/az/az.po                   |   4 +-
 help/mate-clock/be/be.po                   |   4 +-
 help/mate-clock/bg/bg.po                   |   4 +-
 help/mate-clock/bn/bn.po                   |   4 +-
 help/mate-clock/bn_IN/bn_IN.po             |   4 +-
 help/mate-clock/br/br.po                   |   4 +-
 help/mate-clock/bs/bs.po                   |   4 +-
 help/mate-clock/ca/ca.po                   |   6 +-
 help/mate-clock/ca@valencia/ca@valencia.po |   6 +-
 help/mate-clock/cmn/cmn.po                 |   4 +-
 help/mate-clock/crh/crh.po                 |   4 +-
 help/mate-clock/cs/cs.po                   |   9 +-
 help/mate-clock/cy/cy.po                   |   4 +-
 help/mate-clock/da/da.po                   |   6 +-
 help/mate-clock/de/de.po                   |  52 +--
 help/mate-clock/dz/dz.po                   |   4 +-
 help/mate-clock/el/el.po                   |  17 +-
 help/mate-clock/en_AU/en_AU.po             |   4 +-
 help/mate-clock/en_CA/en_CA.po             |   4 +-
 help/mate-clock/en_GB/en_GB.po             |   6 +-
 help/mate-clock/eo/eo.po                   |   6 +-
 help/mate-clock/es/es.po                   |  22 +-
 help/mate-clock/es_AR/es_AR.po             |   4 +-
 help/mate-clock/es_CL/es_CL.po             |   6 +-
 help/mate-clock/es_CO/es_CO.po             |   4 +-
 help/mate-clock/es_PR/es_PR.po             |   4 +-
 help/mate-clock/et/et.po                   |   4 +-
 help/mate-clock/eu/eu.po                   |   4 +-
 help/mate-clock/fa/fa.po                   |   4 +-
 help/mate-clock/fi/fi.po                   |   4 +-
 help/mate-clock/fr/fr.po                   |   9 +-
 help/mate-clock/fur/fur.po                 |   4 +-
 help/mate-clock/fy/fy.po                   |   4 +-
 help/mate-clock/ga/ga.po                   |   4 +-
 help/mate-clock/gl/gl.po                   |   6 +-
 help/mate-clock/gu/gu.po                   |   4 +-
 help/mate-clock/ha/ha.po                   |   4 +-
 help/mate-clock/he/he.po                   |   4 +-
 help/mate-clock/hi/hi.po                   |   4 +-
 help/mate-clock/hr/hr.po                   |  10 +-
 help/mate-clock/hu/hu.po                   |   8 +-
 help/mate-clock/hy/hy.po                   |   4 +-
 help/mate-clock/id/id.po                   |   4 +-
 help/mate-clock/ie/ie.po                   |   8 +-
 help/mate-clock/ig/ig.po                   |   4 +-
 help/mate-clock/is/is.po                   |   4 +-
 help/mate-clock/it/it.po                   | 113 ++++--
 help/mate-clock/ja/ja.po                   |   6 +-
 help/mate-clock/ka/ka.po                   |   4 +-
 help/mate-clock/kab/kab.po                 |   8 +-
 help/mate-clock/kk/kk.po                   |   4 +-
 help/mate-clock/kn/kn.po                   |   4 +-
 help/mate-clock/ko/ko.po                   |   6 +-
 help/mate-clock/ku/ku.po                   |   4 +-
 help/mate-clock/ky/ky.po                   |   4 +-
 help/mate-clock/lt/lt.po                   |   6 +-
 help/mate-clock/lv/lv.po                   |   4 +-
 help/mate-clock/mai/mai.po                 |   4 +-
 help/mate-clock/mg/mg.po                   |   4 +-
 help/mate-clock/mk/mk.po                   |   4 +-
 help/mate-clock/ml/ml.po                   |   4 +-
 help/mate-clock/mn/mn.po                   |   4 +-
 help/mate-clock/mr/mr.po                   |   4 +-
 help/mate-clock/ms/ms.po                   |  10 +-
 help/mate-clock/nb/nb.po                   |   6 +-
 help/mate-clock/nds/nds.po                 |   4 +-
 help/mate-clock/ne/ne.po                   |   4 +-
 help/mate-clock/nl/nl.po                   |   6 +-
 help/mate-clock/nn/nn.po                   |   4 +-
 help/mate-clock/nso/nso.po                 |   4 +-
 help/mate-clock/oc/oc.po                   |   4 +-
 help/mate-clock/or/or.po                   |   4 +-
 help/mate-clock/pa/pa.po                   |   4 +-
 help/mate-clock/pl/pl.po                   |  10 +-
 help/mate-clock/ps/ps.po                   |   4 +-
 help/mate-clock/pt/pt.po                   |  10 +-
 help/mate-clock/pt_BR/pt_BR.po             |  54 ++-
 help/mate-clock/ro/ro.po                   |   4 +-
 help/mate-clock/ru/ru.po                   |  14 +-
 help/mate-clock/si/si.po                   |   4 +-
 help/mate-clock/sk/sk.po                   |   6 +-
 help/mate-clock/sl/sl.po                   |   4 +-
 help/mate-clock/sq/sq.po                   |   6 +-
 help/mate-clock/sr/sr.po                   |   4 +-
 help/mate-clock/sr@latin/sr@latin.po       |   4 +-
 help/mate-clock/sv/sv.po                   |   9 +-
 help/mate-clock/ta/ta.po                   |   4 +-
 help/mate-clock/te/te.po                   |   4 +-
 help/mate-clock/th/th.po                   |   4 +-
 help/mate-clock/tr/tr.po                   |   6 +-
 help/mate-clock/ug/ug.po                   |   4 +-
 help/mate-clock/uk/uk.po                   |   6 +-
 help/mate-clock/ur/ur.po                   |   4 +-
 help/mate-clock/uz/uz.po                   |   4 +-
 help/mate-clock/vi/vi.po                   |   4 +-
 help/mate-clock/wa/wa.po                   |   4 +-
 help/mate-clock/xh/xh.po                   |   4 +-
 help/mate-clock/yo/yo.po                   |   4 +-
 help/mate-clock/zh_CN/zh_CN.po             |  18 +-
 help/mate-clock/zh_HK/zh_HK.po             |   4 +-
 help/mate-clock/zh_TW/zh_TW.po             |   8 +-
 help/mate-clock/zu/zu.po                   |   4 +-
 help/mate-fish/af/af.po                    |   4 +-
 help/mate-fish/am/am.po                    |  10 +-
 help/mate-fish/an/an.po                    |   4 +-
 help/mate-fish/ar/ar.po                    |  11 +-
 help/mate-fish/as/as.po                    |   4 +-
 help/mate-fish/ast/ast.po                  |   4 +-
 help/mate-fish/az/az.po                    |   4 +-
 help/mate-fish/be/be.po                    |   4 +-
 help/mate-fish/bg/bg.po                    |   4 +-
 help/mate-fish/bn/bn.po                    |   4 +-
 help/mate-fish/bn_IN/bn_IN.po              |   4 +-
 help/mate-fish/br/br.po                    |   4 +-
 help/mate-fish/bs/bs.po                    |   4 +-
 help/mate-fish/ca/ca.po                    |   6 +-
 help/mate-fish/ca@valencia/ca@valencia.po  |   6 +-
 help/mate-fish/cmn/cmn.po                  |   4 +-
 help/mate-fish/crh/crh.po                  |   4 +-
 help/mate-fish/cs/cs.po                    |   9 +-
 help/mate-fish/cy/cy.po                    |   4 +-
 help/mate-fish/da/da.po                    |  10 +-
 help/mate-fish/de/de.po                    |  12 +-
 help/mate-fish/dz/dz.po                    |   4 +-
 help/mate-fish/el/el.po                    |  17 +-
 help/mate-fish/en_AU/en_AU.po              |   4 +-
 help/mate-fish/en_CA/en_CA.po              |   4 +-
 help/mate-fish/en_GB/en_GB.po              |   6 +-
 help/mate-fish/eo/eo.po                    |   6 +-
 help/mate-fish/es/es.po                    |  22 +-
 help/mate-fish/es_AR/es_AR.po              |   4 +-
 help/mate-fish/es_CL/es_CL.po              |   6 +-
 help/mate-fish/es_CO/es_CO.po              |   4 +-
 help/mate-fish/es_ES/es_ES.po              |   4 +-
 help/mate-fish/es_MX/es_MX.po              |   4 +-
 help/mate-fish/es_PR/es_PR.po              |   4 +-
 help/mate-fish/et/et.po                    |   4 +-
 help/mate-fish/eu/eu.po                    |   4 +-
 help/mate-fish/fa/fa.po                    |   4 +-
 help/mate-fish/fi/fi.po                    |   4 +-
 help/mate-fish/fil/fil.po                  |   4 +-
 help/mate-fish/fr/fr.po                    |  12 +-
 help/mate-fish/frp/frp.po                  |   4 +-
 help/mate-fish/fur/fur.po                  |   4 +-
 help/mate-fish/fy/fy.po                    |   4 +-
 help/mate-fish/ga/ga.po                    |   4 +-
 help/mate-fish/gl/gl.po                    |  57 ++-
 help/mate-fish/gu/gu.po                    |   4 +-
 help/mate-fish/ha/ha.po                    |   4 +-
 help/mate-fish/he/he.po                    |   4 +-
 help/mate-fish/hi/hi.po                    |   4 +-
 help/mate-fish/hr/hr.po                    |   6 +-
 help/mate-fish/hu/hu.po                    |   8 +-
 help/mate-fish/hy/hy.po                    |   4 +-
 help/mate-fish/ia/ia.po                    |   4 +-
 help/mate-fish/id/id.po                    |   4 +-
 help/mate-fish/ie/ie.po                    |   8 +-
 help/mate-fish/ig/ig.po                    |   4 +-
 help/mate-fish/is/is.po                    |   4 +-
 help/mate-fish/it/it.po                    |   6 +-
 help/mate-fish/ja/ja.po                    |   6 +-
 help/mate-fish/jv/jv.po                    |   4 +-
 help/mate-fish/ka/ka.po                    |   4 +-
 help/mate-fish/kab/kab.po                  |   8 +-
 help/mate-fish/kk/kk.po                    |   4 +-
 help/mate-fish/km/km.po                    |   4 +-
 help/mate-fish/kn/kn.po                    |   4 +-
 help/mate-fish/ko/ko.po                    |   6 +-
 help/mate-fish/ku/ku.po                    |   4 +-
 help/mate-fish/ku_IQ/ku_IQ.po              |   4 +-
 help/mate-fish/ky/ky.po                    |   4 +-
 help/mate-fish/la/la.po                    |   4 +-
 help/mate-fish/lt/lt.po                    |   6 +-
 help/mate-fish/lv/lv.po                    |   4 +-
 help/mate-fish/mai/mai.po                  |   4 +-
 help/mate-fish/mg/mg.po                    |   4 +-
 help/mate-fish/mi/mi.po                    |   4 +-
 help/mate-fish/mk/mk.po                    |   4 +-
 help/mate-fish/ml/ml.po                    |   4 +-
 help/mate-fish/mn/mn.po                    |   4 +-
 help/mate-fish/mr/mr.po                    |   4 +-
 help/mate-fish/ms/ms.po                    |  10 +-
 help/mate-fish/nb/nb.po                    |   6 +-
 help/mate-fish/nds/nds.po                  |   4 +-
 help/mate-fish/ne/ne.po                    |   4 +-
 help/mate-fish/nl/nl.po                    |   6 +-
 help/mate-fish/nn/nn.po                    |   4 +-
 help/mate-fish/nso/nso.po                  |   4 +-
 help/mate-fish/oc/oc.po                    |   4 +-
 help/mate-fish/or/or.po                    |   4 +-
 help/mate-fish/pa/pa.po                    |   4 +-
 help/mate-fish/pl/pl.po                    |  10 +-
 help/mate-fish/ps/ps.po                    |   4 +-
 help/mate-fish/pt/pt.po                    |  10 +-
 help/mate-fish/pt_BR/pt_BR.po              |  49 ++-
 help/mate-fish/ro/ro.po                    |   4 +-
 help/mate-fish/ru/ru.po                    |  16 +-
 help/mate-fish/si/si.po                    |   4 +-
 help/mate-fish/sk/sk.po                    |   6 +-
 help/mate-fish/sl/sl.po                    |   4 +-
 help/mate-fish/sq/sq.po                    |   6 +-
 help/mate-fish/sr/sr.po                    |   4 +-
 help/mate-fish/sr@latin/sr@latin.po        |   4 +-
 help/mate-fish/sv/sv.po                    |   9 +-
 help/mate-fish/ta/ta.po                    |   4 +-
 help/mate-fish/te/te.po                    |   4 +-
 help/mate-fish/th/th.po                    |   4 +-
 help/mate-fish/tk/tk.po                    |   4 +-
 help/mate-fish/tr/tr.po                    |   9 +-
 help/mate-fish/ug/ug.po                    |   4 +-
 help/mate-fish/uk/uk.po                    |   6 +-
 help/mate-fish/ur/ur.po                    |   4 +-
 help/mate-fish/uz/uz.po                    |   4 +-
 help/mate-fish/vi/vi.po                    |   4 +-
 help/mate-fish/wa/wa.po                    |   4 +-
 help/mate-fish/xh/xh.po                    |   4 +-
 help/mate-fish/yo/yo.po                    |   4 +-
 help/mate-fish/zh-Hans/zh-Hans.po          |   4 +-
 help/mate-fish/zh_CN/zh_CN.po              |  20 +-
 help/mate-fish/zh_HK/zh_HK.po              |   4 +-
 help/mate-fish/zh_TW/zh_TW.po              |   8 +-
 help/mate-fish/zu/zu.po                    |   4 +-
 po/af.po                                   | 392 ++++++++++---------
 po/am.po                                   | 392 ++++++++++---------
 po/ar.po                                   | 392 ++++++++++---------
 po/as.po                                   | 392 ++++++++++---------
 po/ast.po                                  | 392 ++++++++++---------
 po/az.po                                   | 400 ++++++++++---------
 po/be.po                                   | 392 ++++++++++---------
 po/bg.po                                   | 392 ++++++++++---------
 po/bn.po                                   | 392 ++++++++++---------
 po/bn_IN.po                                | 392 ++++++++++---------
 po/br.po                                   | 392 ++++++++++---------
 po/bs.po                                   | 400 ++++++++++---------
 po/ca.po                                   | 394 ++++++++++---------
 po/ca@valencia.po                          | 392 ++++++++++---------
 po/cmn.po                                  | 392 ++++++++++---------
 po/crh.po                                  | 392 ++++++++++---------
 po/cs.po                                   | 396 ++++++++++---------
 po/cy.po                                   | 392 ++++++++++---------
 po/da.po                                   | 396 ++++++++++---------
 po/de.po                                   | 392 ++++++++++---------
 po/dz.po                                   | 398 ++++++++++---------
 po/el.po                                   | 399 ++++++++++---------
 po/en_AU.po                                | 392 ++++++++++---------
 po/en_CA.po                                | 398 ++++++++++---------
 po/en_GB.po                                | 392 ++++++++++---------
 po/eo.po                                   | 392 ++++++++++---------
 po/es.po                                   | 444 +++++++++++----------
 po/es_AR.po                                | 394 ++++++++++---------
 po/es_CL.po                                | 396 ++++++++++---------
 po/es_CO.po                                | 394 ++++++++++---------
 po/es_CR.po                                | 394 ++++++++++---------
 po/es_DO.po                                | 394 ++++++++++---------
 po/es_EC.po                                | 394 ++++++++++---------
 po/es_ES.po                                | 394 ++++++++++---------
 po/es_MX.po                                | 394 ++++++++++---------
 po/es_NI.po                                | 394 ++++++++++---------
 po/es_PA.po                                | 394 ++++++++++---------
 po/es_PE.po                                | 394 ++++++++++---------
 po/es_PR.po                                | 394 ++++++++++---------
 po/es_SV.po                                | 394 ++++++++++---------
 po/es_UY.po                                | 394 ++++++++++---------
 po/es_VE.po                                | 394 ++++++++++---------
 po/et.po                                   | 412 +++++++++++---------
 po/eu.po                                   | 392 ++++++++++---------
 po/fa.po                                   | 398 ++++++++++---------
 po/fi.po                                   | 392 ++++++++++---------
 po/fr.po                                   | 395 ++++++++++---------
 po/fr_CA.po                                | 394 ++++++++++---------
 po/frp.po                                  | 394 ++++++++++---------
 po/fur.po                                  | 398 ++++++++++---------
 po/fy.po                                   | 400 ++++++++++---------
 po/ga.po                                   | 392 ++++++++++---------
 po/gl.po                                   | 605 +++++++++++++++--------------
 po/gu.po                                   | 392 ++++++++++---------
 po/ha.po                                   | 398 ++++++++++---------
 po/he.po                                   | 392 ++++++++++---------
 po/hi.po                                   | 392 ++++++++++---------
 po/hr.po                                   | 400 ++++++++++---------
 po/hu.po                                   | 394 ++++++++++---------
 po/hy.po                                   | 392 ++++++++++---------
 po/ia.po                                   | 394 ++++++++++---------
 po/id.po                                   | 392 ++++++++++---------
 po/ie.po                                   | 396 ++++++++++---------
 po/ig.po                                   | 398 ++++++++++---------
 po/is.po                                   | 392 ++++++++++---------
 po/it.po                                   | 396 ++++++++++---------
 po/ja.po                                   | 392 ++++++++++---------
 po/jv.po                                   | 394 ++++++++++---------
 po/ka.po                                   | 398 ++++++++++---------
 po/kk.po                                   | 392 ++++++++++---------
 po/kn.po                                   | 392 ++++++++++---------
 po/ko.po                                   | 392 ++++++++++---------
 po/ku.po                                   | 398 ++++++++++---------
 po/ku_IQ.po                                | 392 ++++++++++---------
 po/ky.po                                   | 392 ++++++++++---------
 po/li.po                                   | 400 ++++++++++---------
 po/lt.po                                   | 392 ++++++++++---------
 po/lv.po                                   | 392 ++++++++++---------
 po/mai.po                                  | 398 ++++++++++---------
 po/mg.po                                   | 392 ++++++++++---------
 po/mi.po                                   | 394 ++++++++++---------
 po/mk.po                                   | 398 ++++++++++---------
 po/ml.po                                   | 392 ++++++++++---------
 po/mn.po                                   | 398 ++++++++++---------
 po/mr.po                                   | 392 ++++++++++---------
 po/ms.po                                   | 392 ++++++++++---------
 po/nb.po                                   | 459 ++++++++++++----------
 po/nds.po                                  | 400 ++++++++++---------
 po/ne.po                                   | 398 ++++++++++---------
 po/nl.po                                   | 392 ++++++++++---------
 po/nn.po                                   | 392 ++++++++++---------
 po/nso.po                                  | 400 ++++++++++---------
 po/oc.po                                   | 398 ++++++++++---------
 po/or.po                                   | 392 ++++++++++---------
 po/pa.po                                   | 392 ++++++++++---------
 po/pl.po                                   | 398 ++++++++++---------
 po/pms.po                                  | 394 ++++++++++---------
 po/ps.po                                   | 398 ++++++++++---------
 po/pt.po                                   | 392 ++++++++++---------
 po/pt_BR.po                                | 417 +++++++++++---------
 po/ro.po                                   | 392 ++++++++++---------
 po/ru.po                                   | 392 ++++++++++---------
 po/rw.po                                   | 394 ++++++++++---------
 po/sc.po                                   | 394 ++++++++++---------
 po/si.po                                   | 392 ++++++++++---------
 po/sk.po                                   | 392 ++++++++++---------
 po/sl.po                                   | 392 ++++++++++---------
 po/sq.po                                   | 398 ++++++++++---------
 po/sr.po                                   | 392 ++++++++++---------
 po/sr@latin.po                             | 392 ++++++++++---------
 po/sv.po                                   | 394 ++++++++++---------
 po/ta.po                                   | 392 ++++++++++---------
 po/te.po                                   | 392 ++++++++++---------
 po/th.po                                   | 392 ++++++++++---------
 po/tk.po                                   | 394 ++++++++++---------
 po/tr.po                                   | 392 ++++++++++---------
 po/tt.po                                   | 394 ++++++++++---------
 po/ug.po                                   | 392 ++++++++++---------
 po/uk.po                                   | 392 ++++++++++---------
 po/ur.po                                   | 392 ++++++++++---------
 po/uz.po                                   | 392 ++++++++++---------
 po/vi.po                                   | 392 ++++++++++---------
 po/wa.po                                   | 394 ++++++++++---------
 po/xh.po                                   | 398 ++++++++++---------
 po/yi.po                                   | 394 ++++++++++---------
 po/yo.po                                   | 398 ++++++++++---------
 po/zh_CN.po                                | 397 ++++++++++---------
 po/zh_HK.po                                | 392 ++++++++++---------
 po/zh_TW.po                                | 396 ++++++++++---------
 po/zu.po                                   | 400 ++++++++++---------
 357 files changed, 28758 insertions(+), 24389 deletions(-)

commit cb768384ba7246551b4635964a917961a3a76422
Author: raveit65 <mate@raveit.de>
Date:   Fri Oct 11 19:26:36 2019 +0200

    tx: update resource for transifex

 mate-panel.pot | 144 +++++++++++++++++++++++++++++----------------------------
 1 file changed, 74 insertions(+), 70 deletions(-)

commit f2cc08cac7966f3484fc9a6d7c6163a084abb6fe
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Oct 11 16:43:57 2019 +0200

    ci: MATE_COMPILE_WARNINGS([maximum])

 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 36cf85ffff62165bf2c9ee26916283fd86b06517
Author: Victor Kareh <vkareh@redhat.com>
Date:   Wed Oct 9 13:43:18 2019 -0400

    fish: Use a higher resolution image for Wanda the Fish

 applets/fish/wanda.png | Bin 13683 -> 84346 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 4d20a0003798eea253fed6ea8f02cec5da6ffb2d
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Wed Oct 9 15:09:57 2019 +0100

    Fetch clock formats using LC_TIME (as opposed to LANGUAGE)
    
    This is a port of https://github.com/linuxmint/cinnamon-desktop/commit/7cd7c008e05acf36efd87446256d28a8b89d187a
    Which fixed https://github.com/linuxmint/cinnamon-desktop/pull/132
    
    This commit fixes the same issue in the MATE clock applet.

 applets/clock/clock.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit c50e4bd3aaf65a27a57df75d3141428ac6f686ec
Author: Martin Wimpress <code@flexion.org>
Date:   Fri Oct 4 14:39:57 2019 +0100

    Change the panel menu descriptions to better identify them
    
    The "Main Menu" becomes "Compact Menu", since it is indeed the most compact menu available for MATE.
    
    The "Menu Bar" becomes "Classic Menu" since this is what most users identify as the classic menu used in GNOME2/MATE. The description more clearly articulates the menu features.

 mate-panel/panel-addto.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 6db03b2852482dc0eedf0f5c2464410e4da74d37
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Oct 6 20:54:11 2019 +0200

    Travis CI: use Debian "testing" instead "sid"

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 317280ad9b2fab0bff794109007ef59802a8c18a
Author: raveit65 <mate@raveit.de>
Date:   Sun Oct 6 19:05:16 2019 +0200

    travis(ci): enable notify_servers

 .travis.yml | 2 ++
 1 file changed, 2 insertions(+)

commit 028741e9e4982711c37282522aadc815330ec15c
Author: Anthony Perkins <anthony@acperkins.com>
Date:   Fri Sep 20 17:59:13 2019 +0100

    Load layouts from absolute paths
    
    If the layout name begins with a '/', load from that filename instead of
    from PANEL_LAYOUTS_DIR.  This allows loading of layouts from home
    directories and other write-permitted locations.

 mate-panel/panel-layout.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit dbcd931fced4b67aff58e3205ce0bba86a1b7133
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 28 10:21:53 2019 +0200

    travis (ci): build mate-common from tarball

 .travis.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 06b9aac1847161f027546574d2ce4aed7eacbebd
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Sep 27 11:37:42 2019 +0200

    Set compiler debug flags using MATE_DEBUG_CHECK
    
    -enable-debug=yes/info/profile/no
    
    By default, compiler debug flags are disabled.
    
    Test:
    
     $ ./autogen.sh && make clean && make && file mate-panel/mate-panel
         autogen
            cflags:
         file
            mate-panel/mate-panel: ..., not stripped
    
     $ ./autogen.sh -enable-debug && make clean && make && file mate-panel/mate-panel
         autogen
            cflags:                         -g -O0
         file
            mate-panel/mate-panel: ..., with debug_info, not stripped
    
     $ CFLAGS="-g -O2" ./autogen.sh && make clean && make && file mate-panel/mate-panel
         autogen
            cflags:                        -g -O2
         file
            mate-panel/mate-panel: ..., with debug_info, not stripped
    
     $ CFLAGS="-g -O2" ./autogen.sh -enable-debug && make clean && make && file mate-panel/mate-panel
         autogen
            cflags:                        -g -O2 -g -O0
         file
            mate-panel/mate-panel: ..., with debug_info, not stripped

 .travis.yml  | 4 ++++
 configure.ac | 1 +
 2 files changed, 5 insertions(+)

commit d7bf58967703f42f39f17d16def3857b9f205b1c
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Sep 17 10:43:58 2019 +0200

    sn-item: avoid 'g_type_class_add_private'

 .../notification_area/status-notifier/sn-item.c    | 27 ++++++++++------------
 1 file changed, 12 insertions(+), 15 deletions(-)

commit 589f4ec1fa10b7a43eabb42c2d00d832acdd2002
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Sep 17 10:41:21 2019 +0200

    notification_area/main: avoid 'g_type_class_add_private'

 applets/notification_area/main.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit 07c80d7f0631f809d73c513e67c939c9487b85f1
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Sep 17 10:37:25 2019 +0200

    na-tray: avoid 'g_type_class_add_private'

 applets/notification_area/system-tray/na-tray.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 8146d0c4f841d45a812a0408028b7af167428c6b
Author: raveit65 <mate@raveit.de>
Date:   Sun Sep 15 12:44:20 2019 +0200

    clock-face: fix code formating
    
    - replace tabs with spaces
    - fix a few indentation
    - reduce leading spaces (8 --> 4)

 applets/clock/clock-face.c | 556 ++++++++++++++++++++++-----------------------
 1 file changed, 278 insertions(+), 278 deletions(-)

commit 60894665c424ff487caf294b9cd5f72c753a4a4f
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Sep 11 21:42:09 2019 +0800

    clock: avoid deprecated g_type_class_add_private

 applets/clock/calendar-window.c     |  8 ++---
 applets/clock/clock-face.c          | 36 +++++++++-----------
 applets/clock/clock-location-tile.c | 45 ++++++++++++++-----------
 applets/clock/clock-location.c      | 66 +++++++++++++++++--------------------
 applets/clock/clock-map.c           | 32 ++++++++----------
 applets/clock/system-timezone.c     | 28 +++++++++-------
 6 files changed, 104 insertions(+), 111 deletions(-)

commit 82febf351bae5e8872bb6d8fb4649207f7182f0c
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Sep 11 11:20:56 2019 +0800

    When determining whether the pos is in the applet, use ad->cells to calc.

 mate-panel/panel-widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 407956e1f924dc0c1da1d3784706aaa014e91fc0
Author: monsta <monsta@inbox.ru>
Date:   Fri Aug 30 15:08:46 2019 +0300

    build: use AC_STRUCT_DIRENT_D_TYPE instead of custom macro
    
    it defines the same HAVE_STRUCT_DIRENT_D_TYPE as before
    
    taken from:
    https://github.com/GNOME/gnome-panel/commit/56b8d88bf467f8a332947930338e7c4f43b4751e

 configure.ac |  7 +++++--
 m4/d-type.m4 | 49 -------------------------------------------------
 2 files changed, 5 insertions(+), 51 deletions(-)

commit efcb4f1d1f233eeb8db5014b698bcf5c308a83c6
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Aug 29 17:09:39 2019 +0200

    Travis CI: clang: -enable-checker alpha.deadcode.UnreachableCode

 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

commit 950caf8a0cce531b01c152bc8de8ab11ac011aab
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Aug 16 04:49:18 2019 +0200

    panel-toplevel: avoid deprecated 'gtk_css_provider_get_default'

 mate-panel/panel-toplevel.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 60c14740efc90306707987907d26912adb7ef76a
Author: monsta <monsta@inbox.ru>
Date:   Mon Jul 22 17:58:58 2019 +0300

    panel-toplevel: fix applets placement on expanded vertical panel
    
    fixes https://github.com/mate-desktop/mate-panel/issues/745

 mate-panel/panel-toplevel.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 053315539251d211e156dc7c5e99f5f8b416de4f
Author: monsta <monsta@inbox.ru>
Date:   Mon Jul 22 17:58:13 2019 +0300

    panel-toplevel: fix coding style and spacing a bit

 mate-panel/panel-toplevel.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit 71f796cdf6bf15fd986ea3edf91da2380488dc3b
Author: William Wold <wm@wmww.sh>
Date:   Tue Jul 9 20:40:41 2019 +0000

    Fix GTK Layer Shell include and CFLAGS

 mate-panel/Makefile.am       | 2 +-
 mate-panel/wayland-backend.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit f6c0d20f955d7c5d7798f7044f7e5de462c90410
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Fri Jul 12 14:30:00 2019 +0800

    ci: fix build error on travis for gtk-layer-shell

 .travis.yml | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

commit 6a4266535f537c7bbc7964245cb0d5f4fa1311db
Author: Laurent Napias <tamplan@free.fr>
Date:   Mon Jul 8 21:19:54 2019 +0200

    [clock-applet] Add scroll interface tabs with mouse wheel

 applets/clock/clock.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 70 insertions(+), 1 deletion(-)

commit 1fd43b26ae8af38494c0ff91d366493ce037bb32
Author: William Wold <wm@wmww.sh>
Date:   Sun Jul 7 23:09:09 2019 +0000

    Keep menu button popup from covering up menu on Wayland

 mate-panel/panel-menu-button.c | 28 ++++++++++++++++++++++------
 1 file changed, 22 insertions(+), 6 deletions(-)

commit 9c3d35733b6c76fa0ab478b6ab738c6ebcce062c
Author: William Wold <wm@wmww.sh>
Date:   Sun Jul 7 22:47:09 2019 +0000

    Keep applet menus from covering up applets on Wayland

 libmate-panel-applet/mate-panel-applet.c | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

commit dbdde3e384beae26cd71dcd0ef008b890675149d
Author: William Wold <wm@wmww.sh>
Date:   Tue Jul 2 23:43:04 2019 +0000

    Add comment headers to wayland backend files

 mate-panel/wayland-backend.c | 24 ++++++++++++++++++++++++
 mate-panel/wayland-backend.h | 24 ++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

commit 01fb4342ea56d467ad46a68a411ffb07b4d5d326
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 18:18:30 2019 +0000

    Add Wayland backend

 configure.ac                 |  2 --
 mate-panel/Makefile.am       |  4 ++++
 mate-panel/main.c            | 10 ++++++++
 mate-panel/panel-toplevel.c  | 20 ++++++++++++++++
 mate-panel/wayland-backend.c | 57 ++++++++++++++++++++++++++++++++++++++++++++
 mate-panel/wayland-backend.h | 18 ++++++++++++++
 6 files changed, 109 insertions(+), 2 deletions(-)

commit 188846cecfda3b8f19e45ca37a60d817bff2afed
Author: Laurent Napias <tamplan@free.fr>
Date:   Sat Jun 29 11:54:59 2019 +0200

    Remove trailing whitespaces

 applets/clock/calendar-window.c                    |   2 +-
 applets/clock/clock-sunpos.c                       |   4 +-
 applets/clock/clock-utils.c                        |   2 +-
 applets/clock/set-timezone.c                       |   2 +-
 applets/clock/system-timezone.c                    |  14 +--
 applets/clock/test-system-timezone.c               |   2 +-
 applets/fish/fish.c                                |   2 +-
 applets/notification_area/main.c                   |   8 +-
 applets/notification_area/na-grid.c                |  12 +-
 .../status-notifier/sn-dbus-menu.c                 |   2 +-
 .../notification_area/status-notifier/sn-item.c    |   2 +-
 applets/wncklet/window-list.c                      |   8 +-
 libmate-panel-applet/mate-panel-applet.c           |   8 +-
 libmate-panel-applet/panel-applet-private.h        |   2 +-
 mate-panel/applet.c                                |   2 +-
 mate-panel/button-widget.c                         |  18 +--
 mate-panel/launcher.c                              |  10 +-
 mate-panel/libegg/eggsmclient-xsmp.c               |   8 +-
 mate-panel/libegg/eggsmclient.c                    |   2 +-
 mate-panel/libpanel-util/panel-color.c             |   2 +-
 mate-panel/libpanel-util/panel-gtk.c               |   8 +-
 mate-panel/libpanel-util/panel-keyfile.c           |   6 +-
 mate-panel/libpanel-util/panel-list.c              |   2 +-
 mate-panel/libpanel-util/panel-show.h              |   2 +-
 mate-panel/mate-desktop-item-edit.c                |   2 +-
 mate-panel/menu.c                                  |  10 +-
 mate-panel/panel-a11y.c                            |   4 +-
 mate-panel/panel-action-button.c                   |   4 +-
 mate-panel/panel-background.c                      |   4 +-
 mate-panel/panel-background.h                      |   6 +-
 mate-panel/panel-bindings.c                        |   6 +-
 mate-panel/panel-context-menu.c                    |  10 +-
 mate-panel/panel-force-quit.c                      |   8 +-
 mate-panel/panel-lockdown.c                        |   2 +-
 mate-panel/panel-menu-items.c                      |   2 +-
 mate-panel/panel-multimonitor.h                    |   4 +-
 mate-panel/panel-properties-dialog.c               |   4 +-
 mate-panel/panel-recent.c                          |   4 +-
 mate-panel/panel-run-dialog.c                      |   2 +-
 mate-panel/panel-test-applets.c                    |   2 +-
 mate-panel/panel-toplevel.c                        |   8 +-
 mate-panel/panel-widget.c                          | 140 ++++++++++-----------
 mate-panel/panel.c                                 |  30 ++---
 43 files changed, 191 insertions(+), 191 deletions(-)

commit 96ceed2717780188bc0eb84565d91617783d7192
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 16:48:28 2019 +0000

    Use monitor size instead of screen size in panel-toplevel.c

 mate-panel/panel-toplevel.c | 68 ++++++++++++++-------------------------------
 1 file changed, 21 insertions(+), 47 deletions(-)

commit 87fe770a9b17116a44f0d5ed5ed15d40f807a82f
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 16:48:57 2019 +0000

    Add panel_multimonitor_get_bounds ()

 mate-panel/panel-multimonitor.c | 18 ++++++++++++++++++
 mate-panel/panel-multimonitor.h |  2 ++
 2 files changed, 20 insertions(+)

commit 2cdd4ea85f21db8ec7409e2fa3c3009bd123bd4b
Author: raveit65 <mate@raveit.de>
Date:   Sun Jun 23 10:56:13 2019 +0200

    release 1.23.1

 NEWS         | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 51 insertions(+), 1 deletion(-)

commit 8fc0701a7f0bea3ef92bfecce2660c97eafef6c4
Author: raveit65 <mate@raveit.de>
Date:   Sun Jun 23 11:01:33 2019 +0200

    tx: sync with transifex

 help/mate-clock/es/es.po |   46 +-
 help/mate-clock/et/et.po |    5 +-
 help/mate-clock/fi/fi.po |    5 +-
 help/mate-clock/he/he.po |    8 +-
 help/mate-clock/ie/ie.po |  696 +++++++++++
 help/mate-clock/it/it.po |    7 +-
 help/mate-clock/ja/ja.po |    9 +-
 help/mate-clock/pl/pl.po |    5 +-
 help/mate-clock/pt/pt.po |    2 +-
 help/mate-clock/sr/sr.po |    6 +-
 help/mate-clock/tr/tr.po |   68 +-
 help/mate-fish/de/de.po  |    7 +-
 help/mate-fish/es/es.po  |   93 +-
 help/mate-fish/et/et.po  |    5 +-
 help/mate-fish/fi/fi.po  |    5 +-
 help/mate-fish/he/he.po  |    8 +-
 help/mate-fish/ie/ie.po  |  445 +++++++
 help/mate-fish/it/it.po  |   89 +-
 help/mate-fish/ja/ja.po  |   11 +-
 help/mate-fish/pt/pt.po  |    2 +-
 help/mate-fish/ru/ru.po  |    2 +-
 help/mate-fish/sr/sr.po  |    6 +-
 po/LINGUAS               |    1 +
 po/ca.po                 |    8 +-
 po/es.po                 |  606 ++++-----
 po/fi.po                 |  140 ++-
 po/gl.po                 |   38 +-
 po/ie.po                 | 3054 ++++++++++++++++++++++++++++++++++++++++++++++
 po/pl.po                 |    2 +-
 po/pt.po                 |   14 +-
 30 files changed, 4867 insertions(+), 526 deletions(-)

commit b023d447b150863fae25e90d0f5b8e9227e7090b
Author: raveit65 <mate@raveit.de>
Date:   Sun Jun 23 10:19:33 2019 +0200

    tx: update resource for transifex

 mate-clock.pot |   4 +-
 mate-fish.pot  |   4 +-
 mate-panel.pot | 394 +++++++++++++++++++++++++++++++--------------------------
 3 files changed, 217 insertions(+), 185 deletions(-)

commit b21b4f2d17bca31b038ae9157e5e5845461c9ec1
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 18:17:24 2019 +0000

    Wayland support for panel-toplevel.c

 mate-panel/panel-toplevel.c | 149 +++++++++++++++++++++++++++++---------------
 1 file changed, 98 insertions(+), 51 deletions(-)

commit 2327fc711b7b427cfd9b41b050075790411b4e7d
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 04:41:43 2019 +0000

    Fix unused variable in panel-widget.c

 mate-panel/panel-widget.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 8fca8d929a6382d59566639acb0edf1bdb5c9600
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 04:39:39 2019 +0000

    Wayland support for panel-layout.c

 mate-panel/panel-layout.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 598b3fec58b15eb2eb5e2d7bcaf0a26b2acc6afc
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 04:39:17 2019 +0000

    Wayland support for panel-profile.c

 mate-panel/panel-profile.c | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

commit ee2c41faa98ac00e48e16b0128e610720330e6fe
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 04:38:04 2019 +0000

    Wayland support for main.c

 mate-panel/main.c | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

commit 49942432f1d908d801d8ec353887eee2d110e5e2
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 22:33:59 2019 +0000

    Wayland support for panel-applet-container.c

 .../panel-applet-container.c                       | 46 ++++++++++++++++++----
 1 file changed, 38 insertions(+), 8 deletions(-)

commit 6ceac636cc2f96702707a560b73975391506c630
Author: William Wold <wm@wmww.sh>
Date:   Fri Jun 21 02:59:13 2019 +0000

    Fix out-of-process applets on X11 by fixing mate-panel-applet.c

 libmate-panel-applet/mate-panel-applet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 08dba813b7e4289bf87ae4c12d87acd9e0399574
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 22:29:43 2019 +0000

    Wayland support for mate-panel-applet.c

 libmate-panel-applet/mate-panel-applet.c | 42 +++++++++++++++++---------------
 1 file changed, 23 insertions(+), 19 deletions(-)

commit 873c72216713553e7b94d061de9aafbf24cac2ae
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 20:59:45 2019 +0000

    Wayland support for libegg

 mate-panel/libegg/eggdesktopfile.c   | 54 ++++++++++++++++++++++++++----------
 mate-panel/libegg/eggsmclient-xsmp.c |  8 +++++-
 2 files changed, 47 insertions(+), 15 deletions(-)

commit b54ee03c1b393348ee3b6af6ab3cb6b4676e87a4
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 22:31:50 2019 +0000

    In mate-panel-applet-factory.c, only set screen when used

 libmate-panel-applet/mate-panel-applet-factory.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit b852dfa8c677f1a95cee98d1350d99c6bb28f50c
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 22:15:47 2019 +0000

    Make system-tray X11-only

 applets/notification_area/system-tray/fixedtip.c | 6 ++++++
 applets/notification_area/system-tray/na-tray.h  | 6 ++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

commit 8c378192fd449f2877525ea603ca9083c202cfcb
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 20:39:33 2019 +0000

    Make panel-struts X11-only

 mate-panel/Makefile.am    |  8 ++++----
 mate-panel/panel-struts.c | 14 ++++++++++++++
 mate-panel/panel-struts.h |  6 ++++++
 3 files changed, 24 insertions(+), 4 deletions(-)

commit ffa9cef172aeb9087a59f2b78ce5362bd1bcd510
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Jun 21 19:46:39 2019 +0200

    Travis CI: cppcheck: ignore 'gtk-layer-shell-build' folder

 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a05c438cca0e25b47d24ee3a2cf2db259d96cbf1
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 21:52:13 2019 +0000

    Reinit panel-multimonitor when screen is changed

 mate-panel/panel-multimonitor.c | 31 +++++++++++++++++++++++++------
 1 file changed, 25 insertions(+), 6 deletions(-)

commit ef54e9a53d5a24933a323afccd4689f2e9f2fe69
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 21:18:50 2019 +0000

    Reinit panel-multimonitor when a monitor is invalidated

 mate-panel/panel-multimonitor.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit ff71e289397985e45b756c4fdb126186f0c1b951
Author: William Wold <wm@wmww.sh>
Date:   Thu Jun 20 00:15:29 2019 +0000

    Make panel-multimonitor Wayland ready

 mate-panel/panel-multimonitor.c | 49 ++++++++++++++++++++++++++++-------------
 1 file changed, 34 insertions(+), 15 deletions(-)

commit 3cd3758a35cb0027bee8bda80e89864eaa24c2a8
Author: William Wold <wm@wmww.sh>
Date:   Wed Jun 19 19:00:12 2019 +0000

    Update to the new panel_multimonitor functions

 mate-panel/main.c             |  4 +-
 mate-panel/panel-profile.c    |  4 +-
 mate-panel/panel-run-dialog.c |  5 +--
 mate-panel/panel-struts.c     | 29 ++++++-------
 mate-panel/panel-toplevel.c   | 98 +++++++++++++++----------------------------
 5 files changed, 52 insertions(+), 88 deletions(-)

commit 0a818dee94ddee0a510973e482def9945c0c267e
Author: William Wold <wm@wmww.sh>
Date:   Wed Jun 19 18:57:10 2019 +0000

    Refactor panel_multiscreen functions into panel_multimonitor ones

 mate-panel/panel-multimonitor.c | 274 ++++++++++++++--------------------------
 mate-panel/panel-multimonitor.h |  37 +++---
 2 files changed, 108 insertions(+), 203 deletions(-)

commit 8c61fc25221e6ef102c77a859c6a44b9b4e25cb6
Author: William Wold <wm@wmww.sh>
Date:   Wed Jun 19 18:30:19 2019 +0000

    Rename panel-multiscreen files panel-multimonitor

 mate-panel/Makefile.am                                   | 4 ++--
 mate-panel/launcher.c                                    | 1 -
 mate-panel/main.c                                        | 2 +-
 mate-panel/{panel-multiscreen.c => panel-multimonitor.c} | 2 +-
 mate-panel/{panel-multiscreen.h => panel-multimonitor.h} | 8 ++++----
 mate-panel/panel-profile.c                               | 2 +-
 mate-panel/panel-recent.c                                | 1 -
 mate-panel/panel-run-dialog.c                            | 2 +-
 mate-panel/panel-struts.c                                | 2 +-
 mate-panel/panel-toplevel.c                              | 2 +-
 mate-panel/panel.c                                       | 1 -
 11 files changed, 12 insertions(+), 15 deletions(-)

commit 8cb8f197fe2cf2babae6824b2dd89c4b712eaa19
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 22:08:45 2019 +0000

    Make panel-background Wayland ready

 mate-panel/panel-background.c | 93 +++++++++++++++++++++++++++++--------------
 mate-panel/panel-background.h |  7 ++++
 2 files changed, 71 insertions(+), 29 deletions(-)

commit 592f9c1ba5e8a1719551fe545f8f3e2d82c8b22b
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 21:54:43 2019 +0000

    Make panel-background-monitor X11-only

 mate-panel/Makefile.am                |  8 ++++----
 mate-panel/panel-background-monitor.c | 12 ++++++++++++
 mate-panel/panel-background-monitor.h |  6 ++++++
 3 files changed, 22 insertions(+), 4 deletions(-)

commit 4703065becdb10a99dda91db6c8f68cc4486db35
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 21 14:24:18 2019 +0200

    CI: add gtk-layer-shell git repo

 .travis.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit a797489fa9b3054473537a7cdf8aa26f0e1958e7
Author: Laurent Napias <tamplan@free.fr>
Date:   Sun Jun 16 18:37:58 2019 +0200

    Strings resistance

 applets/notification_area/main.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 622448814ded2129d4415713a1d06d6fdcb80cfb
Author: Juan Picca <jumapico@gmail.com>
Date:   Mon Jun 17 00:53:00 2019 -0300

    Fix Makefile.am to install in a given prefix path
    
    Currently installing mate-panel fails with the error
    
         /bin/mkdir -p '/usr/share/gir-1.0'
         /usr/bin/install -c -m 644 MatePanelApplet-4.0.gir '/usr/share/gir-1.0'
        /usr/bin/install: cannot create regular file '/usr/share/gir-1.0/MatePanelApplet-4.0.gir': Permission denied
    
    when configure is called with the --prefix option.
    
    This fix is the same used in:
    
    * caja (libcaja-extension/Makefile.am)
    * eom (src/Makefile.am)
    * libmatekbd (libmatekbd/Makefile.am)
    * mate-desktop (libmate-desktop/Makefile.am)
    * pluma (pluma/Makefile.am)

 libmate-panel-applet/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a1c2e4d8f3f81e0d75bb0ae2da4f96dbee2906d7
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 06:54:58 2019 +0000

    Error in the correct place when applets are loaded on a platform they don't support

 .../panel-applets-manager-dbus.c                   | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

commit 59b36542a9cb4c1265cb2395ca3256ee812dd5d8
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 06:02:54 2019 +0000

    Add supported platform values to *.mate-panel-applet files

 applets/clock/org.mate.panel.ClockApplet.mate-panel-applet.in.in      | 1 +
 applets/fish/org.mate.panel.FishApplet.mate-panel-applet.in.in        | 1 +
 .../org.mate.panel.NotificationAreaApplet.mate-panel-applet.in.in     | 1 +
 applets/wncklet/org.mate.panel.Wncklet.mate-panel-applet.in.in        | 4 ++++
 4 files changed, 7 insertions(+)

commit 17b300a83857eeed10c14b4c1ec1bb0b9ccb5ff2
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 05:57:35 2019 +0000

    Load and store what platforms applets support

 .../panel-applets-manager-dbus.c                   | 32 ++++++++++++++++++-
 mate-panel/panel-addto.c                           | 19 +++++++++++-
 mate-panel/panel-applet-info.c                     | 36 +++++++++++++++++-----
 mate-panel/panel-applet-info.h                     | 15 ++++++---
 4 files changed, 87 insertions(+), 15 deletions(-)

commit d6f085fe853cedcf612c0b4a8b3a40585414dfa4
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 05:50:44 2019 +0000

    panel-addto support disabling applets

 mate-panel/panel-addto.c | 54 +++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 51 insertions(+), 3 deletions(-)

commit 5d2fbbe19a33a99d4ba2b7e4f715e6b6ea8d229e
Author: William Wold <wm@wmww.sh>
Date:   Tue Jun 18 05:59:48 2019 +0000

    Panel addto Wayland support

 mate-panel/panel-addto.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit 0f6aa310eb1dbb8f2df599318d3835101b606faf
Author: William Wold <wm@wmww.sh>
Date:   Thu Feb 7 21:50:38 2019 -0500

    Add MATE_PANEL_APPLET_LIB_PREFIX environment variable

 .../libmate-panel-applet-private/panel-applets-manager-dbus.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit c45e92082b67c5b57a6a4a44551572882a4e6091
Author: William Wold <wm@wmww.sh>
Date:   Mon Jun 17 20:10:43 2019 +0000

    Switch out wayland protocols for gtk-layer-shell dependency

 README                                             |    2 +
 configure.ac                                       |   10 +-
 mate-panel/Makefile.am                             |   19 +-
 mate-panel/wayland-protocols/Makefile.am           |   23 -
 .../wlr-layer-shell-unstable-v1.xml                |  285 -----
 mate-panel/wayland-protocols/xdg-shell.xml         | 1144 --------------------
 6 files changed, 12 insertions(+), 1471 deletions(-)

commit 517435ea0a864438509102901dbd7e177002e3f3
Author: Laurent Napias <tamplan@free.fr>
Date:   Mon Jun 10 10:54:05 2019 +0200

    Update FSF address

 mate-panel/panel-a11y.c | 2 +-
 mate-panel/panel-a11y.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 894645c7bce5a4f554976ab48f66293bf9fd70cc
Author: raveit65 <mate@raveit.de>
Date:   Mon Jun 3 19:56:29 2019 +0200

    revert menu-bar: transfer focus correctly on alt-F1
    
    This revert
     https://github.com/mate-desktop/mate-panel/commit/f0f4c5e
    
    and fixes hopefully https://github.com/mate-desktop/marco/issues/209

 mate-panel/panel-menu-bar.c    | 36 ----------------
 mate-panel/panel-menu-button.c | 33 ---------------
 mate-panel/panel-util.c        | 96 ------------------------------------------
 mate-panel/panel-util.h        | 11 -----
 4 files changed, 176 deletions(-)

commit a9e608411f519b5cb1bc268f7384dc8449221d4f
Author: Alberts Muktupavels <alberts.muktupavels@gmail.com>
Date:   Tue Sep 11 14:33:33 2018 +0300

    na-tray: avoid deprecated g_type_class_add_private
    
    origin commit:
    https://gitlab.gnome.org/GNOME/gnome-panel/commit/cb2cc3a

 applets/notification_area/system-tray/fixedtip.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit e41549de306f4c597aec1d01755b3ab9c624da1d
Author: Martin Wimpress <martin@mate-desktop.org>
Date:   Fri May 31 13:43:45 2019 +0100

    Create FUNDING.yml

 .github/FUNDING.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 9245659d1b7e916947d2f658ec8afa036b3e2839
Author: raveit65 <mate@raveit.de>
Date:   Tue May 28 11:18:44 2019 +0200

    travis: use fedora-30 and ubuntu-19.10 for building

 .travis.yml | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit 8dd8eaa8252ed2627b5e9a384d6c58d0a74c22be
Author: monsta <monsta@inbox.ru>
Date:   Sun May 12 13:09:49 2019 +0300

    fix reloading the default layout after panel reset
    
    - do it in the idle handler
    - wait until all toplevels are destroyed before reloading the layout

 mate-panel/panel-profile.c | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit 5e2b2a876e481ef98ed8ebd75bfa656a60253571
Author: monsta <monsta@inbox.ru>
Date:   Tue May 7 17:26:50 2019 +0300

    fix random crashes on panel reset
    
    - unref objects in toplevel's dispose function instead of finalize
    - disconnect from toplevel's GSettings objects before deleting them

 mate-panel/panel-profile.c  | 10 ------
 mate-panel/panel-toplevel.c | 84 +++++++++++++++++++++++----------------------
 2 files changed, 43 insertions(+), 51 deletions(-)

commit 985bd4ed7b4341aea9b85a232969140708150972
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu May 9 15:39:36 2019 +0800

    [mate-panel] Avoid deprecated g_type_class_add_private

 mate-panel/button-widget.c                         | 12 ++++-------
 .../panel-applet-container.c                       |  9 ++-------
 .../panel-applet-frame-dbus.c                      | 13 ++++--------
 .../panel-applets-manager-dbus.c                   | 23 ++++++++++------------
 mate-panel/libpanel-util/panel-icon-chooser.c      | 11 ++---------
 mate-panel/panel-action-button.c                   | 10 +++-------
 mate-panel/panel-applet-frame.c                    | 10 +++-------
 mate-panel/panel-ditem-editor.c                    | 11 ++---------
 mate-panel/panel-menu-bar.c                        | 10 +++-------
 mate-panel/panel-menu-button.c                     | 10 +++-------
 mate-panel/panel-menu-items.c                      | 19 +++++-------------
 mate-panel/panel-separator.c                       |  8 ++------
 mate-panel/panel-toplevel.c                        | 10 +++-------
 13 files changed, 46 insertions(+), 110 deletions(-)

commit 2c838847a593718f230d4f9bf17fe707d6390b81
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu May 9 15:45:21 2019 +0800

    [libmate-panel-applet] Avoid deprecated g_type_class_add_private

 libmate-panel-applet/mate-panel-applet.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit 88a1df4c40d1bf8b554446c381c1ca557bff62e9
Author: rbuj <robert.buj@gmail.com>
Date:   Tue May 7 15:25:40 2019 +0200

    Set compressed="true" for gresource text files
    
    shrink the size of binary files.

 applets/clock/clock.gresource.xml | 12 ++++++------
 mate-panel/panel.gresource.xml    |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

commit 5497beb64ca17a0e80a84c92bc546dc8788f64a1
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu May 9 21:45:08 2019 +0200

    panel-toplevel: Clarify calculation precedence for '&' and '?'
    
    Fixes cppcheck warnings:
    
    [mate-panel/panel-toplevel.c:2315]: (style) Clarify calculation precedence for '&' and '?'.
    [mate-panel/panel-toplevel.c:4687]: (style) Clarify calculation precedence for '&' and '?'.
    [mate-panel/panel-toplevel.c:5036]: (style) Clarify calculation precedence for '&' and '?'.

 mate-panel/panel-toplevel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit a7275d5e5fb15f86fe2dec1a392fd62f32193137
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu May 9 21:42:30 2019 +0200

    button-widget: Clarify calculation precedence for '&' and '?'
    
    Fixes cppcheck warnings:
    
    [mate-panel/button-widget.c:180]: (style) Clarify calculation precedence for '&' and '?'.
    [mate-panel/button-widget.c:181]: (style) Clarify calculation precedence for '&' and '?'.
    [mate-panel/button-widget.c:315]: (style) Clarify calculation precedence for '&' and '?'.

 mate-panel/button-widget.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 6164765c4150be348cf6397f679a17d9bb8fc930
Author: Victor Kareh <vkareh@redhat.com>
Date:   Thu May 9 14:30:43 2019 -0400

    Determine libwnck version during configure

 applets/wncklet/Makefile.am                        |  7 +++
 ...anel.applet.window-list-previews.gschema.xml.in | 14 ++++++
 ...rg.mate.panel.applet.window-list.gschema.xml.in | 10 ----
 applets/wncklet/window-list.c                      | 53 ++++++++++++++--------
 applets/wncklet/window-list.ui                     |  2 +-
 configure.ac                                       | 11 ++++-
 6 files changed, 65 insertions(+), 32 deletions(-)

commit 6dc636307a0c8a106d8a18a28159f18aa6f1b7d3
Author: Victor Kareh <vkareh@redhat.com>
Date:   Wed May 1 07:56:53 2019 -0400

    Add version check for libwnck

 applets/wncklet/window-list.c | 32 ++++++++++++++++++++++++++++++--
 1 file changed, 30 insertions(+), 2 deletions(-)

commit dc4c4f08c716c6275979904d837e3cded05f0565
Author: Victor Kareh <vkareh@redhat.com>
Date:   Tue Apr 9 16:04:06 2019 +0300

    window-list: Show window previews on hover
    
    When hovering on taskbar entries, display a popup with a thumbnail
    of the associated window. Popup goes away when leaving the button.
    
    If a window has not been mapped since the applet started, it will
    not display a thumbnail. Once mapped, however, it will use its
    latest available thumbnail as preview, even when minimized.
    
    Thumbnails can be turned on or off, and the size can be changed in
    the applet preferences dialog.

 ...rg.mate.panel.applet.window-list.gschema.xml.in |  10 +
 applets/wncklet/window-list.c                      | 270 ++++++++++++++++++++-
 applets/wncklet/window-list.ui                     | 144 ++++++++++-
 3 files changed, 417 insertions(+), 7 deletions(-)

commit a2cdef91974fbe83995791e98f19ed58ec04a43c
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon May 6 02:04:12 2019 -0400

    Fix panel applet keyboard focus trap
    
    Do not open the context menu on tab-or on anything but the menu key. Note that Return must be used by some applets (e.g. the clock) for something else

 libmate-panel-applet/mate-panel-applet.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 46cb23ba1aaed0dbcaf1df6ffac62f81fd06e6b4
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue May 7 16:46:54 2019 +0200

    [ci] Add cppcheck html report

 .travis.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit dd161527f822ab152ee97c4ff8f4e111da10d27f
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sun Apr 28 15:21:19 2019 +0800

    [ci] remove dbus-glib which is not needed anymore

 .travis.yml | 2 --
 1 file changed, 2 deletions(-)

commit 54bf5f7313af0d4c0ab9dbf2901e19e733a300c8
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Apr 16 23:46:50 2019 +0200

    travis: enable cppcheck only in debian and disable it in other distros

 .travis.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 6ec88ce0c98d4e33375aac92ccffd1062198aa87
Author: raveit65 <mate@raveit.de>
Date:   Tue Apr 16 22:07:14 2019 +0200

    release 1.23.0

 NEWS | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 738db1cba778aa14fe080a65e6497c124feb990b
Author: raveit65 <mate@raveit.de>
Date:   Tue Apr 16 22:02:47 2019 +0200

    sync with transifex

 help/mate-clock/ca/ca.po                   |  4 +--
 help/mate-clock/ca@valencia/ca@valencia.po |  2 +-
 help/mate-clock/cs/cs.po                   |  5 +--
 help/mate-clock/de/de.po                   |  5 +--
 help/mate-clock/el/el.po                   | 18 ++++++++--
 help/mate-clock/fr/fr.po                   | 26 ++++++++------
 help/mate-clock/gl/gl.po                   |  4 ++-
 help/mate-clock/hu/hu.po                   |  7 ++--
 help/mate-clock/it/it.po                   | 11 +++---
 help/mate-clock/ja/ja.po                   |  4 +--
 help/mate-clock/ko/ko.po                   |  6 ++--
 help/mate-clock/nl/nl.po                   |  2 +-
 help/mate-clock/pl/pl.po                   | 52 +++++++++++++++------------
 help/mate-clock/pt_BR/pt_BR.po             |  7 ++--
 help/mate-clock/sq/sq.po                   | 12 +++----
 help/mate-clock/sr@latin/sr@latin.po       |  2 +-
 help/mate-clock/tr/tr.po                   |  4 +--
 help/mate-fish/ca@valencia/ca@valencia.po  |  2 +-
 help/mate-fish/cs/cs.po                    |  5 +--
 help/mate-fish/el/el.po                    | 20 ++++++++---
 help/mate-fish/fil/fil.po                  |  6 +++-
 help/mate-fish/fr/fr.po                    |  4 +--
 help/mate-fish/gl/gl.po                    | 33 +++++++++++++----
 help/mate-fish/hr/hr.po                    |  6 ++--
 help/mate-fish/hu/hu.po                    |  9 ++---
 help/mate-fish/it/it.po                    |  9 ++---
 help/mate-fish/ja/ja.po                    |  4 +--
 help/mate-fish/ko/ko.po                    |  6 ++--
 help/mate-fish/nl/nl.po                    |  2 +-
 help/mate-fish/pl/pl.po                    | 15 ++++----
 help/mate-fish/pt_BR/pt_BR.po              |  4 +--
 help/mate-fish/sq/sq.po                    | 12 +++----
 help/mate-fish/sr@latin/sr@latin.po        |  2 +-
 po/bg.po                                   |  2 +-
 po/ca@valencia.po                          |  2 +-
 po/cs.po                                   | 48 +++++++++++++++++--------
 po/es.po                                   |  2 +-
 po/et.po                                   |  4 +--
 po/fr.po                                   | 27 +++++++-------
 po/gl.po                                   | 22 ++++++------
 po/hu.po                                   | 48 +++++++++++++++++--------
 po/it.po                                   | 19 +++++-----
 po/ko.po                                   | 48 +++++++++++++++++--------
 po/ms.po                                   | 48 +++++++++++++++++--------
 po/nb.po                                   |  2 +-
 po/nl.po                                   |  6 ++--
 po/pl.po                                   | 20 +++++------
 po/pt.po                                   | 58 ++++++++++++++++++++----------
 po/sq.po                                   |  6 ++--
 po/sr@latin.po                             |  2 +-
 po/sv.po                                   |  4 +--
 po/tr.po                                   | 49 +++++++++++++++++--------
 po/uk.po                                   | 16 ++++-----
 po/zh_CN.po                                | 48 +++++++++++++++++--------
 54 files changed, 502 insertions(+), 289 deletions(-)

commit 905d98eea89f8aa45efc153dc7816e7a25eb3f64
Author: Pablo Barciela <scow@riseup.net>
Date:   Wed Apr 10 20:21:31 2019 +0200

    travis: enable 'cppcheck'

 .travis.yml | 5 +++++
 1 file changed, 5 insertions(+)

commit 0ac70465e8cde8c11dd743297174235afd8afdc1
Author: raveit65 <mate@raveit.de>
Date:   Tue Apr 2 13:58:03 2019 +0200

    github release page

 .travis.yml | 37 +++++++++++++++++++++++++++----------
 1 file changed, 27 insertions(+), 10 deletions(-)

commit 439cf87ce6623ca8bae2b051afc95148eb0664c5
Author: raveit65 <mate@raveit.de>
Date:   Mon Apr 1 11:07:41 2019 +0200

    add volume-applet to fedora layout

 data/fedora.layout | 8 ++++++++
 1 file changed, 8 insertions(+)

commit a51afe6e15e70fe05e8da21c4ae8a86ddccb9004
Author: raveit65 <mate@raveit.de>
Date:   Sun Mar 31 23:05:00 2019 +0200

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit b55745426ddbbad78d8b7e4f87f2b02e83612eee
Author: William Wold <wm@wmww.sh>
Date:   Sun Mar 31 15:02:34 2019 -0400

    Try to fix build warning

 mate-panel/panel-layout.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 550a3a04ca42d4c35e0df71d40d3c30eede2330c
Author: William Wold <wm@wmww.sh>
Date:   Sat Mar 23 13:26:25 2019 -0400

    Show single empty panel, even if no default layout is found
    
    This allows the user to add panels and applets if no
    default.layout is found

 mate-panel/panel-layout.c | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

commit c93ac7768aa3de3498ef7c7bd0766f5d3b6e221d
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 16 05:46:04 2019 -0500

    Dropped *-protocol suffix from generated files

 mate-panel/Makefile.am                   | 13 +++++++++----
 mate-panel/wayland-protocols/Makefile.am | 26 +++++++++++++-------------
 2 files changed, 22 insertions(+), 17 deletions(-)

commit a5642b9670cff46f03310e4b6d225a5517db9d14
Author: raveit65 <mate@raveit.de>
Date:   Sat Mar 23 16:44:25 2019 +0100

    help: update copyright

 help/mate-clock/C/index.docbook | 2 +-
 help/mate-fish/C/index.docbook  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit a975dcc0734b2592810a44714e98f2e8c768a286
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Mar 3 03:13:55 2019 +0100

    [Security] panel-keyfile: Use 'g_strlcpy' instead of 'strcpy'
    
    Fixes Clang static analyzer warning:
    
    warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119

 mate-panel/libpanel-util/panel-keyfile.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 90c61c664b2c31f27eb04a076bc34e9998f44335
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Feb 16 12:54:56 2019 +0100

    na-tray-child: avoid deprecated 'gtk_widget_set_double_buffered'

 applets/notification_area/system-tray/na-tray-child.c | 7 -------
 1 file changed, 7 deletions(-)

commit 308d0d31734c59650af5cd4f5542df4b409c672b
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Fri Mar 8 10:26:35 2019 +0800

    [ci] switch to use build scripts on master branch

 .travis.yml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit 4553a339bacf72e818781b6f8d961bdb8f60b5e6
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Fri Mar 1 16:43:57 2019 +0800

    [ci] Use status notification

 .travis.yml | 48 ++++++++++++------------------------------------
 1 file changed, 12 insertions(+), 36 deletions(-)

commit 2d20edc142211707b040956e482884e2b34f4f8c
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Feb 27 16:14:47 2019 +0800

    [ci] Enable clang-analyzer

 .travis.yml | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 89 insertions(+), 3 deletions(-)

commit 59a633d981b39cecd530ef00ed9cada69bf809e5
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:32:19 2019 -0500

    Wayland support for panel-util.c/.h

 mate-panel/panel-util.c | 23 ++++++++++++++---------
 mate-panel/panel-util.h | 10 ++++++++--
 2 files changed, 22 insertions(+), 11 deletions(-)

commit 7f72e0ad603cd76c7b65ce31af4afb691da36f88
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:21:13 2019 -0500

    Wayland support for panel.c

 mate-panel/panel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit d9f3c3646006d5405d51f04d6b1d7d2889d366ab
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:19:44 2019 -0500

    Wayland support for panel-widget.c

 mate-panel/panel-widget.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit be40cc6bee1f2a0cb3329077301460250cd303ae
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:17:08 2019 -0500

    Wayland support for panel-session.c

 mate-panel/panel-session.c | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

commit 8ae4ece9753c583c65503ac32ce4314cdc7d9029
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:12:23 2019 -0500

    Wayland support for panel-menu-button.c

 mate-panel/panel-menu-button.c | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

commit 9e85956188204eafff6c0c27ece1812bf3d57108
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 16:11:08 2019 -0500

    Wayland support for panel-bindings.c

 mate-panel/panel-bindings.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 9a6369a54a2aa6a9ed73eabe1452ccc8b3eae27b
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:58:16 2019 -0500

    Wayland support for panel-background.c

 mate-panel/panel-background.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 649d1293174715573d5ef29dbdaefc0fb2466a1d
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:46:32 2019 -0500

    Wayland support for panel-applet-frame.c

 mate-panel/panel-applet-frame.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit d602706d8c6486a3f2b43535b3b3b3407b44e882
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:28:57 2019 -0500

    Wayland support for panel-action-button.c

 mate-panel/panel-action-button.c | 26 +++++++++++++++++++++++---
 1 file changed, 23 insertions(+), 3 deletions(-)

commit c0b33db1de315c0fa8932c4870b686dd37a6e81b
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:26:32 2019 -0500

    Wayland support for launcher.c

 mate-panel/launcher.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 3e403c6ca523fb0c47a1904cd555379fa1fc29a8
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:23:26 2019 -0500

    Wayland support for panel-menu-bar.c

 mate-panel/panel-menu-bar.c | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

commit b75ce4314d8ed43d9d9df6f36b62a6a8b2fcde25
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:21:41 2019 -0500

    Wayland support for panel-run-dialog.c

 mate-panel/panel-run-dialog.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 3870e8a3f6b4c3e9c1d4646e933365a586d375db
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:25:06 2019 -0500

    Error if compiling panel-plug-private.h without X11 support

 libmate-panel-applet/panel-plug-private.h | 6 ++++++
 1 file changed, 6 insertions(+)

commit caa1b2a146ae182f85028259153e98e858384611
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 14:47:39 2019 -0500

    Don't build X11 specific files when X11 support is not enabled

 mate-panel/Makefile.am | 36 ++++++++++++++++++++++++++----------
 1 file changed, 26 insertions(+), 10 deletions(-)

commit 07535034e99d6dd102664b016b6ade280cdf0e22
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 11 15:07:13 2019 -0500

    Remove unneeded X11 includes

 mate-panel/applet.c           | 1 -
 mate-panel/drawer.c           | 1 -
 mate-panel/launcher.c         | 1 -
 mate-panel/main.c             | 1 -
 mate-panel/panel-background.c | 1 -
 5 files changed, 5 deletions(-)

commit 11d70b567c3ef4fdc3ca0f6012ec5f418f3300c5
Author: William Wold <wm@wmww.sh>
Date:   Mon Feb 25 07:58:29 2019 -0500

    GdkRectangle monitor -> monitor_geom

 mate-panel/panel-toplevel.c | 208 ++++++++++++++++++++++----------------------
 1 file changed, 104 insertions(+), 104 deletions(-)

commit 1aa26b6f7e1ac2562a1943b01061283e04fca627
Author: William Wold <wm@wmww.sh>
Date:   Fri Feb 22 05:16:21 2019 -0500

    Change panel_toplevel_get_monitor_geometry to fill in a GdkRectangle instead of 4 ints

 mate-panel/panel-toplevel.c | 293 +++++++++++++++++++-------------------------
 1 file changed, 128 insertions(+), 165 deletions(-)

commit 5628a7700f57f6bc8457f4c928838c73203db6d7
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 24 19:28:19 2019 +0100

    release 1.22.0

 NEWS         | 22 ++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 2db82bb4fcbd33ff1c717fa02329ee2f2242bfb4
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 24 19:18:54 2019 +0100

    tx: sync with transifex

 help/mate-clock/ca/ca.po       |   4 +-
 help/mate-clock/el/el.po       |   4 +-
 help/mate-clock/fr/fr.po       |   7 +-
 help/mate-clock/gl/gl.po       |   6 +-
 help/mate-clock/ja/ja.po       |   5 +-
 help/mate-clock/lt/lt.po       |   6 +-
 help/mate-clock/nl/nl.po       |   6 +-
 help/mate-clock/pl/pl.po       |   8 +-
 help/mate-clock/pt_BR/pt_BR.po |   5 +-
 help/mate-clock/zh_TW/zh_TW.po |   6 +-
 help/mate-fish/ca/ca.po        |   5 +-
 help/mate-fish/el/el.po        |   4 +-
 help/mate-fish/fr/fr.po        |   5 +-
 help/mate-fish/gl/gl.po        |  42 ++++--
 help/mate-fish/ja/ja.po        |   5 +-
 help/mate-fish/nl/nl.po        |   5 +-
 help/mate-fish/pl/pl.po        |   6 +-
 help/mate-fish/pt_BR/pt_BR.po  |   5 +-
 help/mate-fish/zh_TW/zh_TW.po  |   6 +-
 po/af.po                       | 280 +++++++++++++++++++++-------------
 po/am.po                       | 280 +++++++++++++++++++++-------------
 po/ar.po                       | 280 +++++++++++++++++++++-------------
 po/as.po                       | 280 +++++++++++++++++++++-------------
 po/ast.po                      | 280 +++++++++++++++++++++-------------
 po/az.po                       | 280 +++++++++++++++++++++-------------
 po/be.po                       | 280 +++++++++++++++++++++-------------
 po/bg.po                       | 280 +++++++++++++++++++++-------------
 po/bn.po                       | 280 +++++++++++++++++++++-------------
 po/bn_IN.po                    | 280 +++++++++++++++++++++-------------
 po/br.po                       | 280 +++++++++++++++++++++-------------
 po/bs.po                       | 280 +++++++++++++++++++++-------------
 po/ca.po                       | 300 +++++++++++++++++++++++-------------
 po/ca@valencia.po              | 280 +++++++++++++++++++++-------------
 po/cmn.po                      | 280 +++++++++++++++++++++-------------
 po/crh.po                      | 280 +++++++++++++++++++++-------------
 po/cs.po                       | 280 +++++++++++++++++++++-------------
 po/cy.po                       | 280 +++++++++++++++++++++-------------
 po/da.po                       | 300 +++++++++++++++++++++++-------------
 po/de.po                       | 280 +++++++++++++++++++++-------------
 po/dz.po                       | 280 +++++++++++++++++++++-------------
 po/el.po                       | 282 +++++++++++++++++++++-------------
 po/en_AU.po                    | 280 +++++++++++++++++++++-------------
 po/en_CA.po                    | 280 +++++++++++++++++++++-------------
 po/en_GB.po                    | 280 +++++++++++++++++++++-------------
 po/eo.po                       | 280 +++++++++++++++++++++-------------
 po/es.po                       | 282 +++++++++++++++++++++-------------
 po/es_AR.po                    | 285 +++++++++++++++++++++-------------
 po/es_CL.po                    | 280 +++++++++++++++++++++-------------
 po/es_CO.po                    | 280 +++++++++++++++++++++-------------
 po/es_CR.po                    | 280 +++++++++++++++++++++-------------
 po/es_DO.po                    | 280 +++++++++++++++++++++-------------
 po/es_EC.po                    | 280 +++++++++++++++++++++-------------
 po/es_ES.po                    | 280 +++++++++++++++++++++-------------
 po/es_MX.po                    | 280 +++++++++++++++++++++-------------
 po/es_NI.po                    | 280 +++++++++++++++++++++-------------
 po/es_PA.po                    | 280 +++++++++++++++++++++-------------
 po/es_PE.po                    | 280 +++++++++++++++++++++-------------
 po/es_PR.po                    | 280 +++++++++++++++++++++-------------
 po/es_SV.po                    | 280 +++++++++++++++++++++-------------
 po/es_UY.po                    | 280 +++++++++++++++++++++-------------
 po/es_VE.po                    | 280 +++++++++++++++++++++-------------
 po/et.po                       | 290 ++++++++++++++++++++++-------------
 po/eu.po                       | 280 +++++++++++++++++++++-------------
 po/fa.po                       | 280 +++++++++++++++++++++-------------
 po/fi.po                       | 280 +++++++++++++++++++++-------------
 po/fr.po                       | 280 +++++++++++++++++++++-------------
 po/fr_CA.po                    | 280 +++++++++++++++++++++-------------
 po/frp.po                      | 280 +++++++++++++++++++++-------------
 po/fur.po                      | 280 +++++++++++++++++++++-------------
 po/fy.po                       | 280 +++++++++++++++++++++-------------
 po/ga.po                       | 280 +++++++++++++++++++++-------------
 po/gl.po                       | 336 ++++++++++++++++++++++++++---------------
 po/gu.po                       | 280 +++++++++++++++++++++-------------
 po/ha.po                       | 280 +++++++++++++++++++++-------------
 po/he.po                       | 280 +++++++++++++++++++++-------------
 po/hi.po                       | 280 +++++++++++++++++++++-------------
 po/hr.po                       | 280 +++++++++++++++++++++-------------
 po/hu.po                       | 280 +++++++++++++++++++++-------------
 po/hy.po                       | 280 +++++++++++++++++++++-------------
 po/ia.po                       | 280 +++++++++++++++++++++-------------
 po/id.po                       | 280 +++++++++++++++++++++-------------
 po/ig.po                       | 280 +++++++++++++++++++++-------------
 po/is.po                       | 280 +++++++++++++++++++++-------------
 po/it.po                       | 316 ++++++++++++++++++++++++--------------
 po/ja.po                       | 280 +++++++++++++++++++++-------------
 po/jv.po                       | 280 +++++++++++++++++++++-------------
 po/ka.po                       | 280 +++++++++++++++++++++-------------
 po/kk.po                       | 280 +++++++++++++++++++++-------------
 po/kn.po                       | 280 +++++++++++++++++++++-------------
 po/ko.po                       | 280 +++++++++++++++++++++-------------
 po/ku.po                       | 280 +++++++++++++++++++++-------------
 po/ku_IQ.po                    | 280 +++++++++++++++++++++-------------
 po/ky.po                       | 280 +++++++++++++++++++++-------------
 po/li.po                       | 280 +++++++++++++++++++++-------------
 po/lt.po                       | 300 +++++++++++++++++++++++-------------
 po/lv.po                       | 280 +++++++++++++++++++++-------------
 po/mai.po                      | 280 +++++++++++++++++++++-------------
 po/mg.po                       | 280 +++++++++++++++++++++-------------
 po/mi.po                       | 280 +++++++++++++++++++++-------------
 po/mk.po                       | 280 +++++++++++++++++++++-------------
 po/ml.po                       | 280 +++++++++++++++++++++-------------
 po/mn.po                       | 280 +++++++++++++++++++++-------------
 po/mr.po                       | 280 +++++++++++++++++++++-------------
 po/ms.po                       | 280 +++++++++++++++++++++-------------
 po/nb.po                       | 280 +++++++++++++++++++++-------------
 po/nds.po                      | 298 ++++++++++++++++++++++--------------
 po/ne.po                       | 280 +++++++++++++++++++++-------------
 po/nl.po                       | 300 +++++++++++++++++++++++-------------
 po/nn.po                       | 280 +++++++++++++++++++++-------------
 po/nso.po                      | 280 +++++++++++++++++++++-------------
 po/oc.po                       | 280 +++++++++++++++++++++-------------
 po/or.po                       | 280 +++++++++++++++++++++-------------
 po/pa.po                       | 280 +++++++++++++++++++++-------------
 po/pl.po                       | 314 ++++++++++++++++++++++++--------------
 po/pms.po                      | 280 +++++++++++++++++++++-------------
 po/ps.po                       | 280 +++++++++++++++++++++-------------
 po/pt.po                       | 280 +++++++++++++++++++++-------------
 po/pt_BR.po                    | 280 +++++++++++++++++++++-------------
 po/ro.po                       | 280 +++++++++++++++++++++-------------
 po/ru.po                       | 280 +++++++++++++++++++++-------------
 po/rw.po                       | 280 +++++++++++++++++++++-------------
 po/sc.po                       | 280 +++++++++++++++++++++-------------
 po/si.po                       | 280 +++++++++++++++++++++-------------
 po/sk.po                       | 280 +++++++++++++++++++++-------------
 po/sl.po                       | 280 +++++++++++++++++++++-------------
 po/sq.po                       | 280 +++++++++++++++++++++-------------
 po/sr.po                       | 280 +++++++++++++++++++++-------------
 po/sr@latin.po                 | 280 +++++++++++++++++++++-------------
 po/sv.po                       | 280 +++++++++++++++++++++-------------
 po/ta.po                       | 280 +++++++++++++++++++++-------------
 po/te.po                       | 280 +++++++++++++++++++++-------------
 po/th.po                       | 280 +++++++++++++++++++++-------------
 po/tk.po                       | 280 +++++++++++++++++++++-------------
 po/tr.po                       | 280 +++++++++++++++++++++-------------
 po/tt.po                       | 280 +++++++++++++++++++++-------------
 po/ug.po                       | 280 +++++++++++++++++++++-------------
 po/uk.po                       | 280 +++++++++++++++++++++-------------
 po/ur.po                       | 280 +++++++++++++++++++++-------------
 po/uz.po                       | 280 +++++++++++++++++++++-------------
 po/vi.po                       | 280 +++++++++++++++++++++-------------
 po/wa.po                       | 280 +++++++++++++++++++++-------------
 po/xh.po                       | 280 +++++++++++++++++++++-------------
 po/yi.po                       | 280 +++++++++++++++++++++-------------
 po/yo.po                       | 280 +++++++++++++++++++++-------------
 po/zh_CN.po                    | 280 +++++++++++++++++++++-------------
 po/zh_HK.po                    | 280 +++++++++++++++++++++-------------
 po/zh_TW.po                    | 300 +++++++++++++++++++++++-------------
 po/zu.po                       | 280 +++++++++++++++++++++-------------
 148 files changed, 23132 insertions(+), 13391 deletions(-)

commit 1db7d2a9963e990cc0bf8a7038f74fdb63e0b3b0
Author: rbuj <robert.buj@gmail.com>
Date:   Sat Feb 16 23:22:06 2019 +0100

    Ensure proper translation of the about dialog title
    
    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

 applets/clock/clock.c                |   1 +
 applets/fish/fish.c                  |   1 +
 applets/notification_area/main.c     |   1 +
 applets/wncklet/showdesktop.c        |   1 +
 applets/wncklet/window-list.c        |   1 +
 applets/wncklet/window-menu.c        |   1 +
 applets/wncklet/workspace-switcher.c |   1 +
 mate-panel.pot                       | 114 ++++++++++++++++++++++-------------
 8 files changed, 78 insertions(+), 43 deletions(-)

commit 84c0435e762c6338b72d95a763c8bdee497c4abb
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sat Feb 16 22:22:57 2019 +0800

    Prepare for docker-build 0.1.1 merge into master
    
    Please see mate-desktop/mate-dev-scripts#13

 .travis.yml | 31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

commit 2b2582e6e09f26fd9297af64e65741ec057b9a7c
Author: raveit65 <mate@raveit.de>
Date:   Fri Feb 15 19:33:59 2019 +0100

    tx: update resource for transifex

 mate-panel.pot | 166 ++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 106 insertions(+), 60 deletions(-)

commit e0efbab6d4a97f3d658c2f4a5f08bbae2a969349
Author: rbuj <robert.buj@gmail.com>
Date:   Fri Feb 15 11:50:03 2019 +0100

    Make translatable the copyright in about dialog

 applets/clock/clock.c                |  7 ++-----
 applets/fish/fish.c                  |  7 +++----
 applets/notification_area/main.c     | 11 ++++-------
 applets/wncklet/showdesktop.c        | 11 +++--------
 applets/wncklet/window-list.c        |  9 +++------
 applets/wncklet/window-menu.c        | 13 +++++--------
 applets/wncklet/workspace-switcher.c |  9 +++------
 mate-panel/panel-context-menu.c      |  5 +++--
 8 files changed, 26 insertions(+), 46 deletions(-)

commit 086ca8b01aa6566ba7be07ba348d5b16b887bd48
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Fri Feb 15 23:53:08 2019 +0800

    Use docker-build on the master branch

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 134d9474d7e72a1b915dc844a2f2c529335d3d33
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Feb 9 18:33:59 2019 -0500

    Fix last menu with gtk_menu_popup and failure to follow panel theme

 mate-panel/menu.c | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

commit dacbd08684d6081f21041928e01072ed83c80dd8
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Feb 9 17:42:58 2019 -0500

    mate-panel-applet.c: replace deprecated gtk_menu_popup
    
    We need this for future porting of tray icons to standalone applets as replacements dfor gtk_menu_popup emit a "popped-up" signal when the menu is showing
    
    Based on gnome-panel commit github.com/GNOME/gnome-panel/commit/8e6e2847eca002499e862e9ae85bbc4c16b601fa

 libmate-panel-applet/mate-panel-applet.c | 133 ++++++++++---------------------
 1 file changed, 41 insertions(+), 92 deletions(-)

commit b27a35aa96c06043c7a1abed6ee2dee13610b29f
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 10 09:55:36 2019 +0100

    tx: update resource for transifex

 mate-panel.pot | 142 ++++++++++++++++++++++++++++-----------------------------
 1 file changed, 71 insertions(+), 71 deletions(-)

commit a57792697c9cefc565307a186c693d1fc914c918
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu Feb 7 11:53:58 2019 +0800

    fix make distcheck fail on debian

 configure.ac                                                   | 1 -
 mate-panel/{mate-panel.desktop.in.in => mate-panel.desktop.in} | 4 ----
 po/POTFILES.in                                                 | 2 +-
 po/POTFILES.skip                                               | 1 -
 4 files changed, 1 insertion(+), 7 deletions(-)

commit 5b873db2368ca23457feae79442fba07dac5e48d
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu Feb 7 11:18:42 2019 +0800

    use archlinux/base image

 .travis.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 4a6c3df6d6d68fdc7ff3fef9573b4706fca2e740
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Feb 3 23:00:05 2019 -0500

    Properly align button menu positions on vertical panels

 mate-panel/panel-menu-button.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 14fce6f47cebae7c21b0a5f4d62409e047027187
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Wed Feb 6 09:33:49 2019 +0800

    Test the new docker-build

 .travis.yml | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

commit 15e3a6863829e5760b0b21b80527d2dba427c203
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Tue Feb 5 11:40:42 2019 +0800

    initial travis-CI support

 .travis.yml | 155 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 155 insertions(+)

commit 371e3d7cb45ed908ce2f04d9972129c69ff156eb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 28 02:57:40 2019 -0500

    fix crash on removing tray
    
    *clear applet gsettings on dispose to stop crash and memory leak introduced in github.com/mate-desktop/mate-panel/commit/10b9c30fc79de5f8d9516ba153df233c4968da65
    
    *tray: fix misplaced g_return_if_fail check

 applets/notification_area/main.c    | 1 +
 applets/notification_area/na-grid.c | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit c733d206b9e389b0ff1945f0ace496b9d3ad4a10
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 05:51:51 2019 -0500

    panel-action-protocol: Error if used when X11 is disabled

 mate-panel/panel-action-protocol.c | 7 +++++++
 mate-panel/panel-action-protocol.h | 6 ++++++
 2 files changed, 13 insertions(+)

commit 4fe2b74e7bb8e578d68a2e6966ba096a96908ebf
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 05:33:08 2019 -0500

    panel-force-quit: Error if used when X11 is disabled

 mate-panel/panel-force-quit.c | 6 ++++++
 mate-panel/panel-force-quit.h | 6 ++++++
 2 files changed, 12 insertions(+)

commit db9a60cb179c7d34931609db20763d79dd58ad8e
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 05:29:57 2019 -0500

    panel-xutils: Error if used when X11 is disabled

 mate-panel/panel-xutils.c | 7 +++++++
 mate-panel/panel-xutils.h | 6 ++++++
 2 files changed, 13 insertions(+)

commit 00e26f7f8397704b77751ad63d7534575f2f10f0
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:58:29 2019 -0500

    xstuff: include GTK and GDK X11 headers, so including files don't have to

 mate-panel/xstuff.h | 3 +++
 1 file changed, 3 insertions(+)

commit ab19ac4da4490363535be79404900a9c8044987d
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:56:26 2019 -0500

    xstuff: add is_using_x11 ()

 mate-panel/xstuff.c | 5 +++++
 mate-panel/xstuff.h | 2 ++
 2 files changed, 7 insertions(+)

commit e3846eb096a7ded4566775bcca0a3e3ceb22f762
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:56:06 2019 -0500

    xstuff: Error if X11 not enabled

 mate-panel/xstuff.c | 6 ++++++
 mate-panel/xstuff.h | 8 ++++++++
 2 files changed, 14 insertions(+)

commit 58d9c36f73ab1e331c293d044e38caf43f0c99b1
Author: raveit65 <mate@raveit.de>
Date:   Tue Jan 29 15:23:00 2019 +0100

    tx: sync with transifex

 help/mate-clock/ca/ca.po |   6 +-
 help/mate-clock/hu/hu.po |   4 +-
 help/mate-fish/ca/ca.po  |  50 ++++++++++---
 help/mate-fish/hu/hu.po  |   2 +-
 po/af.po                 | 170 +++++++++++++++++++++++++-------------------
 po/am.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ar.po                 | 170 +++++++++++++++++++++++++-------------------
 po/as.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ast.po                | 170 +++++++++++++++++++++++++-------------------
 po/az.po                 | 170 +++++++++++++++++++++++++-------------------
 po/be.po                 | 170 +++++++++++++++++++++++++-------------------
 po/bg.po                 | 170 +++++++++++++++++++++++++-------------------
 po/bn.po                 | 170 +++++++++++++++++++++++++-------------------
 po/bn_IN.po              | 170 +++++++++++++++++++++++++-------------------
 po/br.po                 | 170 +++++++++++++++++++++++++-------------------
 po/bs.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ca.po                 | 174 +++++++++++++++++++++++++--------------------
 po/ca@valencia.po        | 170 +++++++++++++++++++++++++-------------------
 po/cmn.po                | 170 +++++++++++++++++++++++++-------------------
 po/crh.po                | 170 +++++++++++++++++++++++++-------------------
 po/cs.po                 | 170 +++++++++++++++++++++++++-------------------
 po/cy.po                 | 170 +++++++++++++++++++++++++-------------------
 po/da.po                 | 174 +++++++++++++++++++++++++--------------------
 po/de.po                 | 170 +++++++++++++++++++++++++-------------------
 po/dz.po                 | 170 +++++++++++++++++++++++++-------------------
 po/el.po                 | 170 +++++++++++++++++++++++++-------------------
 po/en_AU.po              | 170 +++++++++++++++++++++++++-------------------
 po/en_CA.po              | 170 +++++++++++++++++++++++++-------------------
 po/en_GB.po              | 170 +++++++++++++++++++++++++-------------------
 po/eo.po                 | 170 +++++++++++++++++++++++++-------------------
 po/es.po                 | 170 +++++++++++++++++++++++++-------------------
 po/es_AR.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_CL.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_CO.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_CR.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_DO.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_EC.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_ES.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_MX.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_NI.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_PA.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_PE.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_PR.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_SV.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_UY.po              | 170 +++++++++++++++++++++++++-------------------
 po/es_VE.po              | 170 +++++++++++++++++++++++++-------------------
 po/et.po                 | 170 +++++++++++++++++++++++++-------------------
 po/eu.po                 | 170 +++++++++++++++++++++++++-------------------
 po/fa.po                 | 170 +++++++++++++++++++++++++-------------------
 po/fi.po                 | 170 +++++++++++++++++++++++++-------------------
 po/fr.po                 | 170 +++++++++++++++++++++++++-------------------
 po/fr_CA.po              | 170 +++++++++++++++++++++++++-------------------
 po/frp.po                | 170 +++++++++++++++++++++++++-------------------
 po/fur.po                | 170 +++++++++++++++++++++++++-------------------
 po/fy.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ga.po                 | 170 +++++++++++++++++++++++++-------------------
 po/gl.po                 | 170 +++++++++++++++++++++++++-------------------
 po/gu.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ha.po                 | 170 +++++++++++++++++++++++++-------------------
 po/he.po                 | 170 +++++++++++++++++++++++++-------------------
 po/hi.po                 | 170 +++++++++++++++++++++++++-------------------
 po/hr.po                 | 170 +++++++++++++++++++++++++-------------------
 po/hu.po                 | 170 +++++++++++++++++++++++++-------------------
 po/hy.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ia.po                 | 170 +++++++++++++++++++++++++-------------------
 po/id.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ig.po                 | 170 +++++++++++++++++++++++++-------------------
 po/is.po                 | 170 +++++++++++++++++++++++++-------------------
 po/it.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ja.po                 | 170 +++++++++++++++++++++++++-------------------
 po/jv.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ka.po                 | 170 +++++++++++++++++++++++++-------------------
 po/kk.po                 | 170 +++++++++++++++++++++++++-------------------
 po/kn.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ko.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ku.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ku_IQ.po              | 170 +++++++++++++++++++++++++-------------------
 po/ky.po                 | 170 +++++++++++++++++++++++++-------------------
 po/la.po                 | 170 +++++++++++++++++++++++++-------------------
 po/li.po                 | 170 +++++++++++++++++++++++++-------------------
 po/lt.po                 | 174 +++++++++++++++++++++++++--------------------
 po/lv.po                 | 170 +++++++++++++++++++++++++-------------------
 po/mai.po                | 170 +++++++++++++++++++++++++-------------------
 po/mg.po                 | 170 +++++++++++++++++++++++++-------------------
 po/mi.po                 | 170 +++++++++++++++++++++++++-------------------
 po/mk.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ml.po                 | 170 +++++++++++++++++++++++++-------------------
 po/mn.po                 | 170 +++++++++++++++++++++++++-------------------
 po/mr.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ms.po                 | 170 +++++++++++++++++++++++++-------------------
 po/nb.po                 | 170 +++++++++++++++++++++++++-------------------
 po/nds.po                | 180 +++++++++++++++++++++++++++--------------------
 po/ne.po                 | 170 +++++++++++++++++++++++++-------------------
 po/nl.po                 | 174 +++++++++++++++++++++++++--------------------
 po/nn.po                 | 170 +++++++++++++++++++++++++-------------------
 po/nso.po                | 170 +++++++++++++++++++++++++-------------------
 po/oc.po                 | 170 +++++++++++++++++++++++++-------------------
 po/or.po                 | 170 +++++++++++++++++++++++++-------------------
 po/pa.po                 | 170 +++++++++++++++++++++++++-------------------
 po/pl.po                 | 170 +++++++++++++++++++++++++-------------------
 po/pms.po                | 170 +++++++++++++++++++++++++-------------------
 po/ps.po                 | 170 +++++++++++++++++++++++++-------------------
 po/pt.po                 | 170 +++++++++++++++++++++++++-------------------
 po/pt_BR.po              | 170 +++++++++++++++++++++++++-------------------
 po/ro.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ru.po                 | 170 +++++++++++++++++++++++++-------------------
 po/rw.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sc.po                 | 170 +++++++++++++++++++++++++-------------------
 po/si.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sk.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sl.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sq.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sr.po                 | 170 +++++++++++++++++++++++++-------------------
 po/sr@latin.po           | 170 +++++++++++++++++++++++++-------------------
 po/sv.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ta.po                 | 170 +++++++++++++++++++++++++-------------------
 po/te.po                 | 170 +++++++++++++++++++++++++-------------------
 po/th.po                 | 170 +++++++++++++++++++++++++-------------------
 po/tk.po                 | 170 +++++++++++++++++++++++++-------------------
 po/tr.po                 | 170 +++++++++++++++++++++++++-------------------
 po/tt.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ug.po                 | 170 +++++++++++++++++++++++++-------------------
 po/uk.po                 | 170 +++++++++++++++++++++++++-------------------
 po/ur.po                 | 170 +++++++++++++++++++++++++-------------------
 po/uz.po                 | 170 +++++++++++++++++++++++++-------------------
 po/vi.po                 | 170 +++++++++++++++++++++++++-------------------
 po/wa.po                 | 170 +++++++++++++++++++++++++-------------------
 po/xh.po                 | 170 +++++++++++++++++++++++++-------------------
 po/yi.po                 | 170 +++++++++++++++++++++++++-------------------
 po/yo.po                 | 170 +++++++++++++++++++++++++-------------------
 po/zh_CN.po              | 170 +++++++++++++++++++++++++-------------------
 po/zh_HK.po              | 170 +++++++++++++++++++++++++-------------------
 po/zh_TW.po              | 174 +++++++++++++++++++++++++--------------------
 po/zu.po                 | 170 +++++++++++++++++++++++++-------------------
 134 files changed, 12671 insertions(+), 9521 deletions(-)

commit 62237a6aa91a89849b68583aae300dc8757a96d2
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:06:13 2019 -0500

    Applets: only compile X11 applets when X11 is enabled

 applets/Makefile.am | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit d71479299f7a134a2de6d187535edb3a04441095
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:25:21 2019 -0500

    Clock: Wayland support

 applets/clock/clock-location-tile.c |  1 -
 applets/clock/clock.c               | 10 +++++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

commit aa4754cf5a232842ff25cdcb34d098bfab9ee861
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 04:05:10 2019 -0500

    wncklet: Error if compiling without X11 support

 applets/wncklet/showdesktop.c | 4 ++++
 applets/wncklet/wncklet.c     | 4 ++++
 2 files changed, 8 insertions(+)

commit d7edd93f04f56bcf60e31096593cd60653726fe0
Author: William Wold <wm@wmww.sh>
Date:   Tue Jan 22 08:40:49 2019 -0500

    Notification area: error if compiling without X11 support

 applets/notification_area/main.c                        | 10 ++++++++++
 applets/notification_area/na-grid.h                     |  5 ++++-
 applets/notification_area/system-tray/na-tray-child.c   |  9 +++++++++
 applets/notification_area/system-tray/na-tray-child.h   |  7 +++++++
 applets/notification_area/system-tray/na-tray-manager.c |  5 +++++
 applets/notification_area/system-tray/na-tray.c         |  5 +++++
 applets/notification_area/system-tray/na-tray.h         |  4 +++-
 7 files changed, 43 insertions(+), 2 deletions(-)

commit 3630b204548036d02abc663509b33ebe5797b3b3
Author: William Wold <wm@wmww.sh>
Date:   Sat Jan 26 05:08:36 2019 -0500

    applet.c: Remove unused mate_panel_applet_position_menu ()

 mate-panel/applet.c | 74 -----------------------------------------------------
 mate-panel/applet.h |  5 ----
 2 files changed, 79 deletions(-)

commit d3ad5dceb5b459ace05c3b08ad62ea15696f0ede
Author: raveit65 <mate@raveit.de>
Date:   Fri Jan 25 19:57:35 2019 +0100

    release 1.21.4

 NEWS | 128 ++++++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 80 insertions(+), 48 deletions(-)

commit c10a7ecd25a5a3f949d03c051b534e85a8576bcc
Author: raveit65 <mate@raveit.de>
Date:   Fri Jan 25 19:51:22 2019 +0100

    tx: sync with transifex

 help/mate-clock/da/da.po          | 116 +++++++---
 help/mate-clock/gl/gl.po          |  52 ++++-
 help/mate-clock/hu/hu.po          |   8 +-
 help/mate-clock/ko/ko.po          |   2 +-
 help/mate-clock/nb/nb.po          |  13 +-
 help/mate-clock/nl/nl.po          |  19 +-
 help/mate-clock/pl/pl.po          |  10 +-
 help/mate-clock/pt/pt.po          |  88 +++++---
 help/mate-clock/pt_BR/pt_BR.po    |   7 +-
 help/mate-clock/tr/tr.po          |   5 +-
 help/mate-clock/uk/uk.po          |   4 +-
 help/mate-fish/gl/gl.po           |  62 +++++-
 help/mate-fish/hu/hu.po           |   8 +-
 help/mate-fish/kab/kab.po         |   2 +-
 help/mate-fish/ko/ko.po           |   2 +-
 help/mate-fish/nb/nb.po           |   9 +-
 help/mate-fish/nl/nl.po           |  21 +-
 help/mate-fish/pl/pl.po           |  10 +-
 help/mate-fish/pt/pt.po           | 118 ++++++----
 help/mate-fish/pt_BR/pt_BR.po     |   5 +-
 help/mate-fish/uk/uk.po           |   2 +-
 help/mate-fish/zh-Hans/zh-Hans.po | 445 ++++++++++++++++++++++++++++++++++++++
 po/cs.po                          |   2 +-
 po/es.po                          |   2 +-
 po/gl.po                          |  65 +++---
 po/pt.po                          |  63 +++---
 po/uk.po                          |   6 +-
 27 files changed, 920 insertions(+), 226 deletions(-)

commit 2699dec3d7e643aad27b650c51e153e587a6fc12
Author: raveit65 <mate@raveit.de>
Date:   Fri Jan 25 19:42:07 2019 +0100

    tx: update resource for transifex

 mate-panel.pot | 171 ++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 97 insertions(+), 74 deletions(-)

commit b57daee828b67a9c6d1912787592b7000a40ac8d
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 23 09:33:43 2019 -0500

    libmate-panel-applet: Add comments in headers to explain Wayland behavior

 libmate-panel-applet/mate-panel-applet.h    | 1 +
 libmate-panel-applet/panel-applet-private.h | 1 +
 libmate-panel-applet/panel-plug-private.h   | 2 ++
 3 files changed, 4 insertions(+)

commit d30deb00087c7de459775a565d1d6f9db4909913
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 23 09:32:28 2019 -0500

    libmate-panel-applet: mate-panel-applet.c Wayland support

 libmate-panel-applet/mate-panel-applet.c | 116 +++++++++++++++++++++++--------
 1 file changed, 86 insertions(+), 30 deletions(-)

commit 8c9a5171c3894788523db54207bf4e4158c53b1d
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 23 09:31:38 2019 -0500

    libmate-panel-applet: Applet factory Wayland support

 libmate-panel-applet/mate-panel-applet-factory.c | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

commit 3e4a50d937eecb9b510614e3a62e8844a5fb46b0
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 23 09:29:07 2019 -0500

    libmate-panel-applet: Error if panel-plug is built without X11

 libmate-panel-applet/panel-plug.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 23e1bdab8fff515cdb0adc4ac97a621cf9252844
Author: William Wold <wm@wmww.sh>
Date:   Wed Jan 16 06:38:16 2019 -0500

    libmate-panel-applet: Stop X11 specific files from building on Wayland

 libmate-panel-applet/Makefile.am | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 793cc2539f42982c6c745ca6debf9771d1b590aa
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Jan 20 14:36:24 2019 +0100

    eggsmclient: avoid deprecated 'g_type_class_add_private'

 mate-panel/libegg/eggsmclient.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit ab4812acb6862e67a50941ec0a84aa0f9397f438
Author: raveit65 <mate@raveit.de>
Date:   Mon Jan 14 09:24:51 2019 +0100

    clock: set  horizontal padding for clock-button
    
    To make sure we have space left and right inside the button
    if applet is build-in-process.

 applets/clock/clock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3d9cfcf4ab3b3cafe22c4197a67753e46e4debb3
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Jan 8 10:29:40 2019 +0100

    panel-config-global: avoid deprecated 'g_settings_list_keys'

 mate-panel/panel-config-global.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 8d7aad19808ef31b9181de100ddd159ca26340ca
Author: William Wold <wm@wmww.sh>
Date:   Mon Jan 7 04:13:42 2019 -0500

    Store fish surface size to enable rendering without backend specific code

 applets/fish/fish.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit c4b2b333fd048e11c32bbb432686d9e3b6835f53
Author: William Wold <wm@wmww.sh>
Date:   Mon Jan 7 02:29:59 2019 -0500

    Remove unused screen variable in fish applet

 applets/fish/fish.c | 3 ---
 1 file changed, 3 deletions(-)

commit e7ed982eef407b1f870b0ae9fc13c62f4e937272
Author: William Wold <wm@wmww.sh>
Date:   Mon Oct 29 17:46:51 2018 -0700

    Remove X specific functions from fish applet

 applets/fish/fish.c | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

commit c979fdf188fb68eb1f3864b53e8359308cc5b345
Author: monsta <monsta@inbox.ru>
Date:   Sat Jan 5 14:45:33 2019 +0300

    README: don't mention dbus-glib which is not needed anymore

 README | 1 -
 1 file changed, 1 deletion(-)

commit 9935eeb51c6fef98573246421ff7e834ff385638
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jan 2 17:55:23 2019 -0500

    Clock: Fix weather icon size selection for panel height

 applets/clock/clock.c | 31 +++++++++++++++++++++++++++++--
 1 file changed, 29 insertions(+), 2 deletions(-)

commit 8d0f753559918251d5ba3a841803e5369a90bb17
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Dec 31 02:59:36 2018 -0500

    Clock: ensure weather icon resizes with panel
    
    Connect to the "change_size" signal and reload the icon at the correct size

 applets/clock/clock.c | 41 +++++++++++++++++++++++++++++++++++++----
 1 file changed, 37 insertions(+), 4 deletions(-)

commit 9484b053c9857ca7512b7374461c1fec6e246159
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Dec 30 02:26:46 2018 -0500

    Tray: Fix too-wide icon spacing after mate-polkit has been used w sni
    
    Note that vertical and horizontal panels require different options in the grid, as "homogenous" is needed in rows for horizontal panels and columns in vertical panels to prevent icon rendering problems including icons growing without limit when the tray is moved from a horizontal to a vertical panel

 applets/notification_area/na-grid.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 4c2319756605f0b30e76832f7dd369cc7c6763eb
Author: raveit65 <mate@raveit.de>
Date:   Mon Dec 24 18:20:55 2018 +0100

    clock: force no button vertical padding and margin
    
    fixes weather-icon problems with some themes

 applets/clock/clock.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 422f7e5128d77c88d5dba2d9eecdc09827a413a3
Author: raveit65 <mate@raveit.de>
Date:   Fri Dec 21 16:51:45 2018 +0100

    disable deprecation warnings for distcheck

 Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 77d343bda16bea9608188a249a858a79aa67ac96
Author: William Wold <wm@wmww.sh>
Date:   Wed Dec 19 13:29:17 2018 -0500

    Disallow building without X11 support

 configure.ac | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 083180649a2af38454b67cb6bc5e53c067d8362a
Author: William Wold <wm@wmww.sh>
Date:   Wed Dec 19 13:19:31 2018 -0500

    Allow for enabling and disabling a backend without affecting the other

 configure.ac | 58 +++++++++++++++++++++++++++++-----------------------------
 1 file changed, 29 insertions(+), 29 deletions(-)

commit c13a54c7b276be1c63216092e7ceb7952a4e8574
Author: William Wold <wm@wmww.sh>
Date:   Wed Dec 19 12:45:27 2018 -0500

    Remove generated Wayland files on make clean

 mate-panel/wayland-protocols/Makefile.am | 6 ++++++
 1 file changed, 6 insertions(+)

commit 9b8511a811ccb947015ddd4fe980be65c63e3faa
Author: William Wold <wm@wmww.sh>
Date:   Mon Dec 17 11:05:34 2018 -0500

    Replace wayland-scanner private-code option with code

 mate-panel/wayland-protocols/Makefile.am | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 3e73d66a4e9f41958ca5148bd76d49ab28904793
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Dec 10 23:43:46 2018 -0500

    clock.c: Force negative margin, not passing on clockbutton
    
    Allow themers to set padding on the clock without cutting the weather icons

 applets/clock/clock.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit a0d306870068a9cd2d637018275679671d0ec190
Author: William Wold <wm@wmww.sh>
Date:   Mon Dec 10 09:55:49 2018 -0500

    Link with Wayland protocols and libraries
    
    Move protocol files to parent's EXTRA_DIST

 mate-panel/Makefile.am                   | 27 ++++++++++++++++++++++++++-
 mate-panel/wayland-protocols/Makefile.am | 10 +++++-----
 2 files changed, 31 insertions(+), 6 deletions(-)

commit b0fb7b55064b72f7ba92c1bca12f376eb87b4d7a
Author: William Wold <wm@wmww.sh>
Date:   Mon Dec 10 09:54:33 2018 -0500

    Include Wayland protocol generating makefile in build system

 configure.ac           | 1 +
 mate-panel/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 8dd32e8bd9d7ff64811151dfc59d7014c9c63bd0
Author: William Wold <wm@wmww.sh>
Date:   Mon Dec 10 09:53:23 2018 -0500

    Add wayland protocol generating makefile

 mate-panel/wayland-protocols/Makefile.am | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit d7074e3fb761652d46848093dee5d5e858d1bc36
Author: William Wold <wm@wmww.sh>
Date:   Sun Dec 9 21:53:35 2018 -0500

    Updated configure.ac for Wayland support

 configure.ac | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 57 insertions(+), 2 deletions(-)

commit dc37f884350ff35b148d9fd869d9dedbee16c4b9
Author: William Wold <wm@wmww.sh>
Date:   Fri Dec 7 11:50:53 2018 -0500

    Add XDG Shell protocol xml

 mate-panel/wayland-protocols/xdg-shell.xml | 1144 ++++++++++++++++++++++++++++
 1 file changed, 1144 insertions(+)

commit 0ea564a8fd79ccdf899dd6439eda1b52582faeb9
Author: William Wold <wm@wmww.sh>
Date:   Fri Dec 7 11:50:23 2018 -0500

    Add Layer Shell protocol xml

 .../wlr-layer-shell-unstable-v1.xml                | 285 +++++++++++++++++++++
 1 file changed, 285 insertions(+)

commit c50f7b353fee1023e1a1236e25cc2705d482d1f6
Author: William Wold <wm@wmww.sh>
Date:   Mon Dec 3 15:34:34 2018 -0500

    Remove legacy X11 package detection

 configure.ac | 21 +--------------------
 1 file changed, 1 insertion(+), 20 deletions(-)

commit 8fe7f0c830fc444849ac8aa16a2ca9128bcc91ec
Author: raveit65 <mate@raveit.de>
Date:   Wed Dec 5 10:40:28 2018 +0100

    tx: fix typo

 .tx/config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9628efb30335fc08cd58bd8c51a8e84f18cf8b95
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Dec 2 01:50:51 2018 +0100

    panel-gtk: Fix memory leaks
    
    'g_strconcat' needs to be freed

 mate-panel/libpanel-util/panel-gtk.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 76d6eff17e27330431d4e1a787eea1f16744c266
Author: raveit65 <mate@raveit.de>
Date:   Sat Nov 24 17:51:37 2018 +0100

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 22ab0e044c16c539cb72066c0ae1e6a306509ebe
Author: raveit65 <mate@raveit.de>
Date:   Wed Nov 21 21:38:59 2018 +0100

    sync from transifex with fixes for newer itstool
    
    this fixes Ukraine language merge issues with
    itstool-2.0.4

 help/mate-clock/da/da.po |  53 +++-
 help/mate-clock/ko/ko.po |   5 +-
 help/mate-clock/pt/pt.po | 134 +++++++---
 help/mate-clock/uk/uk.po |  10 +-
 help/mate-fish/ko/ko.po  |   5 +-
 help/mate-fish/pt/pt.po  |  14 +-
 help/mate-fish/uk/uk.po  |  14 +-
 po/ast.po                | 625 +++++++++++++++++++++++++----------------------
 8 files changed, 500 insertions(+), 360 deletions(-)

commit 18d15f9ab80f55a72c2ab8ec4f7d18ce11207ef9
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 15 14:53:12 2018 +0100

    release 1.21.3

 NEWS         | 20 ++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 35b574b0ab51245b35d11c0838855d4a9e7b1209
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 15 14:46:14 2018 +0100

    tx: update translations from transifex

 help/mate-clock/af/af.po                   |  700 +++++++++++++++
 help/mate-clock/am/am.po                   |  696 +++++++++++++++
 help/mate-clock/ar/ar.po                   |  878 ++++++++++++------
 help/mate-clock/as/as.po                   |  696 +++++++++++++++
 help/mate-clock/ast/ast.po                 |  697 +++++++++++++++
 help/mate-clock/az/az.po                   |  700 +++++++++++++++
 help/mate-clock/be/be.po                   |  699 +++++++++++++++
 help/mate-clock/bg/bg.po                   |  706 +++++++++++++++
 help/mate-clock/bn/bn.po                   |  701 +++++++++++++++
 help/mate-clock/bn_IN/bn_IN.po             |  699 +++++++++++++++
 help/mate-clock/br/br.po                   |  697 +++++++++++++++
 help/mate-clock/bs/bs.po                   |  697 +++++++++++++++
 help/mate-clock/ca/ca.po                   | 1047 ++++++++++++++++------
 help/mate-clock/ca@valencia/ca@valencia.po |  753 ++++++++++++++++
 help/mate-clock/cmn/cmn.po                 |  699 +++++++++++++++
 help/mate-clock/crh/crh.po                 |  698 +++++++++++++++
 help/mate-clock/cs/cs.po                   |  937 ++++++++++---------
 help/mate-clock/cy/cy.po                   |  699 +++++++++++++++
 help/mate-clock/da/da.po                   |  943 +++++++++----------
 help/mate-clock/de/de.po                   |  931 ++++++++++---------
 help/mate-clock/dz/dz.po                   |  699 +++++++++++++++
 help/mate-clock/el/el.po                   | 1289 ++++++++++++++------------
 help/mate-clock/en_AU/en_AU.po             |  696 +++++++++++++++
 help/mate-clock/en_CA/en_CA.po             |  696 +++++++++++++++
 help/mate-clock/en_GB/en_GB.po             |  898 +++++++++++--------
 help/mate-clock/eo/eo.po                   |  727 +++++++++++++++
 help/mate-clock/es/es.po                   | 1004 +++++++++++----------
 help/mate-clock/es_AR/es_AR.po             |  699 +++++++++++++++
 help/mate-clock/es_CL/es_CL.po             |  698 +++++++++++++++
 help/mate-clock/es_CO/es_CO.po             |  699 +++++++++++++++
 help/mate-clock/es_CR/es_CR.po             |  698 +++++++++++++++
 help/mate-clock/es_DO/es_DO.po             |  698 +++++++++++++++
 help/mate-clock/es_EC/es_EC.po             |  698 +++++++++++++++
 help/mate-clock/es_ES/es_ES.po             |  698 +++++++++++++++
 help/mate-clock/es_MX/es_MX.po             |  704 +++++++++++++++
 help/mate-clock/es_NI/es_NI.po             |  698 +++++++++++++++
 help/mate-clock/es_PA/es_PA.po             |  698 +++++++++++++++
 help/mate-clock/es_PE/es_PE.po             |  698 +++++++++++++++
 help/mate-clock/es_PR/es_PR.po             |  699 +++++++++++++++
 help/mate-clock/es_SV/es_SV.po             |  698 +++++++++++++++
 help/mate-clock/es_UY/es_UY.po             |  698 +++++++++++++++
 help/mate-clock/es_VE/es_VE.po             |  698 +++++++++++++++
 help/mate-clock/et/et.po                   |  702 +++++++++++++++
 help/mate-clock/eu/eu.po                   |  917 +++++++++++++------
 help/mate-clock/fa/fa.po                   |  697 +++++++++++++++
 help/mate-clock/fi/fi.po                   |  918 ++++++++++++-------
 help/mate-clock/fr/fr.po                   |  939 ++++++++++---------
 help/mate-clock/fur/fur.po                 |  696 +++++++++++++++
 help/mate-clock/fy/fy.po                   |  699 +++++++++++++++
 help/mate-clock/ga/ga.po                   |  699 +++++++++++++++
 help/mate-clock/gl/gl.po                   |  713 +++++++++++++++
 help/mate-clock/gu/gu.po                   |  697 +++++++++++++++
 help/mate-clock/ha/ha.po                   |  696 +++++++++++++++
 help/mate-clock/he/he.po                   |  697 +++++++++++++++
 help/mate-clock/hi/hi.po                   |  702 +++++++++++++++
 help/mate-clock/hr/hr.po                   |  734 +++++++++++++++
 help/mate-clock/hu/hu.po                   |  756 ++++++++++++++++
 help/mate-clock/hy/hy.po                   |  697 +++++++++++++++
 help/mate-clock/ia/ia.po                   |  696 +++++++++++++++
 help/mate-clock/id/id.po                   |  720 +++++++++++++++
 help/mate-clock/ig/ig.po                   |  696 +++++++++++++++
 help/mate-clock/is/is.po                   |  700 +++++++++++++++
 help/mate-clock/it/it.po                   |  955 ++++++++++++++------
 help/mate-clock/ja/ja.po                   |  949 ++++++++++----------
 help/mate-clock/ka/ka.po                   |  696 +++++++++++++++
 help/mate-clock/kab/kab.po                 |  696 +++++++++++++++
 help/mate-clock/kk/kk.po                   |  697 +++++++++++++++
 help/mate-clock/kn/kn.po                   |  698 +++++++++++++++
 help/mate-clock/ko/ko.po                   |  919 +++++++++++--------
 help/mate-clock/ku/ku.po                   |  696 +++++++++++++++
 help/mate-clock/ky/ky.po                   |  696 +++++++++++++++
 help/mate-clock/li/li.po                   |  696 +++++++++++++++
 help/mate-clock/lt/lt.po                   |  742 +++++++++++++++
 help/mate-clock/lv/lv.po                   |  698 +++++++++++++++
 help/mate-clock/mai/mai.po                 |  696 +++++++++++++++
 help/mate-clock/mg/mg.po                   |  696 +++++++++++++++
 help/mate-clock/mk/mk.po                   |  697 +++++++++++++++
 help/mate-clock/ml/ml.po                   |  698 +++++++++++++++
 help/mate-clock/mn/mn.po                   |  698 +++++++++++++++
 help/mate-clock/mr/mr.po                   |  697 +++++++++++++++
 help/mate-clock/ms/ms.po                   |  830 +++++++++++++++++
 help/mate-clock/nb/nb.po                   |  707 +++++++++++++++
 help/mate-clock/nds/nds.po                 |  699 +++++++++++++++
 help/mate-clock/ne/ne.po                   |  699 +++++++++++++++
 help/mate-clock/nl/nl.po                   | 1341 ++++++++++++----------------
 help/mate-clock/nn/nn.po                   |  699 +++++++++++++++
 help/mate-clock/nso/nso.po                 |  698 +++++++++++++++
 help/mate-clock/oc/oc.po                   |  793 ++++++++++------
 help/mate-clock/or/or.po                   |  696 +++++++++++++++
 help/mate-clock/pa/pa.po                   |  858 +++++++++++-------
 help/mate-clock/pl/pl.po                   |  725 +++++++++++++++
 help/mate-clock/ps/ps.po                   |  698 +++++++++++++++
 help/mate-clock/pt/pt.po                   |  938 +++++++++++--------
 help/mate-clock/pt_BR/pt_BR.po             |  966 ++++++++++++--------
 help/mate-clock/ro/ro.po                   |  697 +++++++++++++++
 help/mate-clock/ru/ru.po                   |  924 +++++++++++++------
 help/mate-clock/si/si.po                   |  696 +++++++++++++++
 help/mate-clock/sk/sk.po                   |  745 ++++++++++++++++
 help/mate-clock/sl/sl.po                   |  697 +++++++++++++++
 help/mate-clock/sq/sq.po                   |  702 +++++++++++++++
 help/mate-clock/sr/sr.po                   |  890 ++++++++++--------
 help/mate-clock/sr@latin/sr@latin.po       |  700 +++++++++++++++
 help/mate-clock/sv/sv.po                   |  932 +++++++++++++------
 help/mate-clock/ta/ta.po                   |  699 +++++++++++++++
 help/mate-clock/te/te.po                   |  697 +++++++++++++++
 help/mate-clock/th/th.po                   | 1018 ++++++++++++++-------
 help/mate-clock/tr/tr.po                   |  756 ++++++++++++++++
 help/mate-clock/ug/ug.po                   |  705 +++++++++++++++
 help/mate-clock/uk/uk.po                   |  946 ++++++++++++--------
 help/mate-clock/ur/ur.po                   |  702 +++++++++++++++
 help/mate-clock/uz/uz.po                   |  697 +++++++++++++++
 help/mate-clock/vi/vi.po                   |  697 +++++++++++++++
 help/mate-clock/wa/wa.po                   |  696 +++++++++++++++
 help/mate-clock/xh/xh.po                   |  696 +++++++++++++++
 help/mate-clock/yo/yo.po                   |  696 +++++++++++++++
 help/mate-clock/zh_CN/zh_CN.po             |  967 ++++++++++----------
 help/mate-clock/zh_HK/zh_HK.po             |  912 ++++++++++---------
 help/mate-clock/zh_TW/zh_TW.po             |  919 +++++++++----------
 help/mate-clock/zu/zu.po                   |  698 +++++++++++++++
 help/mate-fish/af/af.po                    |  448 ++++++++++
 help/mate-fish/am/am.po                    |  445 +++++++++
 help/mate-fish/an/an.po                    |  448 ++++++++++
 help/mate-fish/ar/ar.po                    |  450 ++++++++++
 help/mate-fish/as/as.po                    |  445 +++++++++
 help/mate-fish/ast/ast.po                  |  446 +++++++++
 help/mate-fish/az/az.po                    |  449 ++++++++++
 help/mate-fish/be/be.po                    |  448 ++++++++++
 help/mate-fish/bg/bg.po                    |  456 ++++++++++
 help/mate-fish/bn/bn.po                    |  450 ++++++++++
 help/mate-fish/bn_IN/bn_IN.po              |  449 ++++++++++
 help/mate-fish/br/br.po                    |  446 +++++++++
 help/mate-fish/bs/bs.po                    |  446 +++++++++
 help/mate-fish/ca/ca.po                    |  647 ++++++++++----
 help/mate-fish/ca@valencia/ca@valencia.po  |  501 +++++++++++
 help/mate-fish/cmn/cmn.po                  |  448 ++++++++++
 help/mate-fish/crh/crh.po                  |  447 ++++++++++
 help/mate-fish/cs/cs.po                    |  611 +++++++------
 help/mate-fish/csb/csb.po                  |  447 ++++++++++
 help/mate-fish/cy/cy.po                    |  448 ++++++++++
 help/mate-fish/da/da.po                    |  559 ++++++++++++
 help/mate-fish/de/de.po                    |  653 +++++++-------
 help/mate-fish/dz/dz.po                    |  448 ++++++++++
 help/mate-fish/el/el.po                    |  822 +++++++++--------
 help/mate-fish/en_AU/en_AU.po              |  445 +++++++++
 help/mate-fish/en_CA/en_CA.po              |  445 +++++++++
 help/mate-fish/en_GB/en_GB.po              |  551 ++++++------
 help/mate-fish/eo/eo.po                    |  477 ++++++++++
 help/mate-fish/es/es.po                    |  681 ++++++++------
 help/mate-fish/es_AR/es_AR.po              |  449 ++++++++++
 help/mate-fish/es_CL/es_CL.po              |  447 ++++++++++
 help/mate-fish/es_CO/es_CO.po              |  446 +++++++++
 help/mate-fish/es_CR/es_CR.po              |  447 ++++++++++
 help/mate-fish/es_DO/es_DO.po              |  447 ++++++++++
 help/mate-fish/es_EC/es_EC.po              |  447 ++++++++++
 help/mate-fish/es_ES/es_ES.po              |  448 ++++++++++
 help/mate-fish/es_MX/es_MX.po              |  453 ++++++++++
 help/mate-fish/es_NI/es_NI.po              |  447 ++++++++++
 help/mate-fish/es_PA/es_PA.po              |  447 ++++++++++
 help/mate-fish/es_PE/es_PE.po              |  447 ++++++++++
 help/mate-fish/es_PR/es_PR.po              |  448 ++++++++++
 help/mate-fish/es_SV/es_SV.po              |  447 ++++++++++
 help/mate-fish/es_UY/es_UY.po              |  447 ++++++++++
 help/mate-fish/es_VE/es_VE.po              |  447 ++++++++++
 help/mate-fish/et/et.po                    |  451 ++++++++++
 help/mate-fish/eu/eu.po                    |  608 +++++++++----
 help/mate-fish/fa/fa.po                    |  447 ++++++++++
 help/mate-fish/fi/fi.po                    |  614 ++++++++-----
 help/mate-fish/fil/fil.po                  |  445 +++++++++
 help/mate-fish/fr/fr.po                    |  600 +++++++------
 help/mate-fish/fr_CA/fr_CA.po              |  445 +++++++++
 help/mate-fish/frp/frp.po                  |  445 +++++++++
 help/mate-fish/fur/fur.po                  |  445 +++++++++
 help/mate-fish/fy/fy.po                    |  448 ++++++++++
 help/mate-fish/ga/ga.po                    |  448 ++++++++++
 help/mate-fish/gl/gl.po                    |  462 ++++++++++
 help/mate-fish/gu/gu.po                    |  446 +++++++++
 help/mate-fish/ha/ha.po                    |  445 +++++++++
 help/mate-fish/he/he.po                    |  447 ++++++++++
 help/mate-fish/hi/hi.po                    |  451 ++++++++++
 help/mate-fish/hr/hr.po                    |  472 ++++++++++
 help/mate-fish/hu/hu.po                    |  506 +++++++++++
 help/mate-fish/hy/hy.po                    |  446 +++++++++
 help/mate-fish/ia/ia.po                    |  445 +++++++++
 help/mate-fish/id/id.po                    |  470 ++++++++++
 help/mate-fish/ig/ig.po                    |  445 +++++++++
 help/mate-fish/is/is.po                    |  449 ++++++++++
 help/mate-fish/it/it.po                    |  591 ++++++------
 help/mate-fish/ja/ja.po                    |  573 ++++++------
 help/mate-fish/jv/jv.po                    |  445 +++++++++
 help/mate-fish/ka/ka.po                    |  445 +++++++++
 help/mate-fish/kab/kab.po                  |  445 +++++++++
 help/mate-fish/kk/kk.po                    |  446 +++++++++
 help/mate-fish/km/km.po                    |  445 +++++++++
 help/mate-fish/kn/kn.po                    |  448 ++++++++++
 help/mate-fish/ko/ko.po                    |  564 +++++++-----
 help/mate-fish/ks/ks.po                    |  445 +++++++++
 help/mate-fish/ku/ku.po                    |  445 +++++++++
 help/mate-fish/ku_IQ/ku_IQ.po              |  445 +++++++++
 help/mate-fish/ky/ky.po                    |  445 +++++++++
 help/mate-fish/la/la.po                    |  446 +++++++++
 help/mate-fish/lb/lb.po                    |  447 ++++++++++
 help/mate-fish/li/li.po                    |  445 +++++++++
 help/mate-fish/lt/lt.po                    |  489 ++++++++++
 help/mate-fish/lv/lv.po                    |  448 ++++++++++
 help/mate-fish/mai/mai.po                  |  445 +++++++++
 help/mate-fish/mg/mg.po                    |  445 +++++++++
 help/mate-fish/mi/mi.po                    |  445 +++++++++
 help/mate-fish/mk/mk.po                    |  446 +++++++++
 help/mate-fish/ml/ml.po                    |  447 ++++++++++
 help/mate-fish/mn/mn.po                    |  447 ++++++++++
 help/mate-fish/mr/mr.po                    |  446 +++++++++
 help/mate-fish/ms/ms.po                    |  554 ++++++++++++
 help/mate-fish/my/my.po                    |  445 +++++++++
 help/mate-fish/nb/nb.po                    |  456 ++++++++++
 help/mate-fish/nds/nds.po                  |  448 ++++++++++
 help/mate-fish/ne/ne.po                    |  449 ++++++++++
 help/mate-fish/nl/nl.po                    |  459 ++++++++++
 help/mate-fish/nn/nn.po                    |  448 ++++++++++
 help/mate-fish/nso/nso.po                  |  447 ++++++++++
 help/mate-fish/oc/oc.po                    |  462 ++++++----
 help/mate-fish/or/or.po                    |  445 +++++++++
 help/mate-fish/pa/pa.po                    |  485 ++++++++++
 help/mate-fish/pl/pl.po                    |  472 ++++++++++
 help/mate-fish/pms/pms.po                  |  445 +++++++++
 help/mate-fish/ps/ps.po                    |  447 ++++++++++
 help/mate-fish/pt/pt.po                    |  521 +++++++++++
 help/mate-fish/pt_BR/pt_BR.po              |  521 +++++++++++
 help/mate-fish/ro/ro.po                    |  446 +++++++++
 help/mate-fish/ru/ru.po                    |  605 ++++++++-----
 help/mate-fish/rw/rw.po                    |  445 +++++++++
 help/mate-fish/sc/sc.po                    |  448 ++++++++++
 help/mate-fish/si/si.po                    |  445 +++++++++
 help/mate-fish/sk/sk.po                    |  495 ++++++++++
 help/mate-fish/sl/sl.po                    |  447 ++++++++++
 help/mate-fish/sq/sq.po                    |  451 ++++++++++
 help/mate-fish/sr/sr.po                    |  446 +++++++++
 help/mate-fish/sr@latin/sr@latin.po        |  449 ++++++++++
 help/mate-fish/sv/sv.po                    |  620 ++++++++-----
 help/mate-fish/sw/sw.po                    |  447 ++++++++++
 help/mate-fish/ta/ta.po                    |  449 ++++++++++
 help/mate-fish/te/te.po                    |  446 +++++++++
 help/mate-fish/th/th.po                    |  579 +++++++-----
 help/mate-fish/tk/tk.po                    |  445 +++++++++
 help/mate-fish/tr/tr.po                    |  565 ++++++++++++
 help/mate-fish/ts/ts.po                    |  445 +++++++++
 help/mate-fish/ug/ug.po                    |  454 ++++++++++
 help/mate-fish/uk/uk.po                    |  603 ++++++++-----
 help/mate-fish/ur/ur.po                    |  451 ++++++++++
 help/mate-fish/ur_PK/ur_PK.po              |  449 ++++++++++
 help/mate-fish/uz/uz.po                    |  446 +++++++++
 help/mate-fish/vi/vi.po                    |  447 ++++++++++
 help/mate-fish/wa/wa.po                    |  445 +++++++++
 help/mate-fish/xh/xh.po                    |  445 +++++++++
 help/mate-fish/yo/yo.po                    |  445 +++++++++
 help/mate-fish/zh_CN/zh_CN.po              |  586 ++++++------
 help/mate-fish/zh_HK/zh_HK.po              |  449 ++++++++++
 help/mate-fish/zh_TW/zh_TW.po              |  455 ++++++++++
 help/mate-fish/zu/zu.po                    |  447 ++++++++++
 po/af.po                                   |  163 ++--
 po/am.po                                   |  163 ++--
 po/ar.po                                   |  169 ++--
 po/as.po                                   |  159 ++--
 po/ast.po                                  |  164 ++--
 po/az.po                                   |  163 ++--
 po/be.po                                   |  163 ++--
 po/bg.po                                   |  170 ++--
 po/bn.po                                   |  162 ++--
 po/bn_IN.po                                |  162 ++--
 po/br.po                                   |  163 ++--
 po/bs.po                                   |  163 ++--
 po/ca.po                                   |  195 ++--
 po/ca@valencia.po                          |  161 ++--
 po/cmn.po                                  |  159 ++--
 po/crh.po                                  |  159 ++--
 po/cs.po                                   |  175 ++--
 po/cy.po                                   |  163 ++--
 po/da.po                                   |  166 ++--
 po/de.po                                   |  173 ++--
 po/dz.po                                   |  159 ++--
 po/el.po                                   |  173 ++--
 po/en_AU.po                                |  159 ++--
 po/en_CA.po                                |  159 ++--
 po/en_GB.po                                |  163 ++--
 po/eo.po                                   |  166 ++--
 po/es.po                                   |  174 ++--
 po/es_AR.po                                |  172 ++--
 po/es_CL.po                                |  168 ++--
 po/es_CO.po                                |  165 ++--
 po/es_CR.po                                |  159 ++--
 po/es_DO.po                                |  162 ++--
 po/es_EC.po                                |  159 ++--
 po/es_ES.po                                |  164 ++--
 po/es_MX.po                                |  169 ++--
 po/es_NI.po                                |  159 ++--
 po/es_PA.po                                |  159 ++--
 po/es_PE.po                                |  159 ++--
 po/es_PR.po                                |  162 ++--
 po/es_SV.po                                |  159 ++--
 po/es_UY.po                                |  159 ++--
 po/es_VE.po                                |  160 ++--
 po/et.po                                   |  166 ++--
 po/eu.po                                   |  163 ++--
 po/fa.po                                   |  170 ++--
 po/fi.po                                   |  168 ++--
 po/fr.po                                   |  173 ++--
 po/fr_CA.po                                |  162 ++--
 po/frp.po                                  |  159 ++--
 po/fur.po                                  |  159 ++--
 po/fy.po                                   |  162 ++--
 po/ga.po                                   |  162 ++--
 po/gl.po                                   |  165 ++--
 po/gu.po                                   |  162 ++--
 po/ha.po                                   |  159 ++--
 po/he.po                                   |  166 ++--
 po/hi.po                                   |  163 ++--
 po/hr.po                                   |  167 ++--
 po/hu.po                                   |  169 ++--
 po/hy.po                                   |  164 ++--
 po/ia.po                                   |  164 ++--
 po/id.po                                   |  175 ++--
 po/ig.po                                   |  159 ++--
 po/is.po                                   |  160 ++--
 po/it.po                                   |  168 ++--
 po/ja.po                                   |  169 ++--
 po/jv.po                                   |  162 ++--
 po/ka.po                                   |  162 ++--
 po/kk.po                                   |  163 ++--
 po/km.po                                   |  162 ++--
 po/kn.po                                   |  164 ++--
 po/ko.po                                   |  170 ++--
 po/ks.po                                   |  159 ++--
 po/ku.po                                   |  162 ++--
 po/ku_IQ.po                                |  160 ++--
 po/ky.po                                   |  164 ++--
 po/la.po                                   |  168 ++--
 po/li.po                                   |  159 ++--
 po/lt.po                                   |  166 ++--
 po/lv.po                                   |  165 ++--
 po/mai.po                                  |  159 ++--
 po/mg.po                                   |  159 ++--
 po/mi.po                                   |  159 ++--
 po/mk.po                                   |  163 ++--
 po/ml.po                                   |  162 ++--
 po/mn.po                                   |  163 ++--
 po/mr.po                                   |  163 ++--
 po/ms.po                                   |  166 ++--
 po/nb.po                                   |  167 ++--
 po/nds.po                                  |  366 +++++---
 po/ne.po                                   |  164 ++--
 po/nl.po                                   |  171 ++--
 po/nn.po                                   |  163 ++--
 po/nso.po                                  |  159 ++--
 po/oc.po                                   |  165 ++--
 po/or.po                                   |  159 ++--
 po/pa.po                                   |  162 ++--
 po/pl.po                                   |  179 ++--
 po/pms.po                                  |  159 ++--
 po/ps.po                                   |  159 ++--
 po/pt.po                                   |  175 ++--
 po/pt_BR.po                                |  181 ++--
 po/ro.po                                   |  166 ++--
 po/ru.po                                   |  174 ++--
 po/rw.po                                   |  159 ++--
 po/sc.po                                   |  159 ++--
 po/si.po                                   |  162 ++--
 po/sk.po                                   |  171 ++--
 po/sl.po                                   |  168 ++--
 po/sq.po                                   |  165 ++--
 po/sr.po                                   |  163 ++--
 po/sr@latin.po                             |  163 ++--
 po/sv.po                                   |  171 ++--
 po/ta.po                                   |  165 ++--
 po/te.po                                   |  164 ++--
 po/th.po                                   |  166 ++--
 po/tk.po                                   |  159 ++--
 po/tr.po                                   |  169 ++--
 po/tt.po                                   |  159 ++--
 po/ug.po                                   |  159 ++--
 po/uk.po                                   |  170 ++--
 po/ur.po                                   |  162 ++--
 po/uz.po                                   |  160 ++--
 po/vi.po                                   |  166 ++--
 po/wa.po                                   |  159 ++--
 po/xh.po                                   |  159 ++--
 po/yi.po                                   |  162 ++--
 po/yo.po                                   |  159 ++--
 po/zh_CN.po                                |  170 ++--
 po/zh_HK.po                                |  164 ++--
 po/zh_TW.po                                |  165 ++--
 po/zu.po                                   |  159 ++--
 390 files changed, 152979 insertions(+), 25514 deletions(-)

commit 4302754bb391805b690d99a47adf52b8e348f88a
Author: raveit65 <mate@raveit.de>
Date:   Thu Nov 15 14:35:46 2018 +0100

    Use make functions for HELP_LINGUAS

 help/mate-clock/Makefile.am | 6 +++++-
 help/mate-fish/Makefile.am  | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

commit b9bd3f63367f7b7abf6fc1ef86b5a8edd92d775f
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu Nov 15 17:52:44 2018 +0800

    Check if manager->proxy is NULL

 mate-panel/libpanel-util/panel-session-manager.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit a34f531da4f03eecfc38414295ebe70742dfad71
Author: yetist <yetist@gmail.com>
Date:   Tue Sep 4 14:27:45 2018 +0800

    Migrate mate-panel from dbus-glib to gdbus
    
    - Code optimization
    - Put GDBusProxy in PanelSessionManager struct

 applets/clock/set-timezone.c                     | 184 +++++++-------
 configure.ac                                     |   7 +-
 mate-panel/libpanel-util/Makefile.am             |   2 -
 mate-panel/libpanel-util/panel-dbus-service.c    | 307 -----------------------
 mate-panel/libpanel-util/panel-dbus-service.h    |  78 ------
 mate-panel/libpanel-util/panel-session-manager.c | 155 +++++-------
 mate-panel/libpanel-util/panel-session-manager.h |  29 +--
 7 files changed, 156 insertions(+), 606 deletions(-)

commit a73abb84d55ed6757f05b28484bbe0080ee5d129
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Nov 4 14:32:43 2018 +0100

    notification-area-preferences-dialog.ui: avoid GtkButton:use-stock

 .../notification-area-preferences-dialog.ui                  | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 576488685ee8b2775f4e556c0cdc7bfda2595dd4
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Nov 1 16:48:18 2018 -0400

    Fix GdkSeat warning
    
    Workaround a possible GTK issue

 mate-panel/panel-action-protocol.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 105f685f3c11a6096f6396f9282ce8eb8ecf7920
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Oct 29 16:00:28 2018 -0400

    Ensure alt-F1 can show the menu even if no menu applet on panel
    
    Fix regression introduced by https://github.com/mate-desktop/mate-panel/commit/17ac8aab4d139cb917619a3a981300f51b750c17 and ensure that menu shown follows same theme as menu shown from panel menu button or panel menu bar

 mate-panel/panel-action-protocol.c | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit d68268a7200b0f9ecf93566f1da9beca58ca4c1d
Author: Fabien Broquard <braikar@gmail.com>
Date:   Tue Oct 2 20:35:14 2018 +0200

    na-tray: add preferences dialog and applet menu entry
    
    The only option in the preferences is a GtkSpinButton
    for the user to be able to set the icon sizes easily
    without having to use dconf-editor.

 applets/notification_area/Makefile.am              |   1 +
 applets/notification_area/main.c                   |  95 ++++++++++++
 applets/notification_area/na.gresource.xml         |   1 +
 .../notification_area/notification-area-menu.xml   |   1 +
 .../notification-area-preferences-dialog.ui        | 164 +++++++++++++++++++++
 po/POTFILES.in                                     |   1 +
 6 files changed, 263 insertions(+)

commit 10b9c30fc79de5f8d9516ba153df233c4968da65
Author: Fabien Broquard <braikar@gmail.com>
Date:   Tue Oct 2 20:29:38 2018 +0200

    na-tray: wide panels, add GSettings to the applet
    
    The new GSettings allow to change and remember the minimum icon size for the grid.
    The default icon size is set at 24px.

 applets/notification_area/Makefile.am              | 10 +++++++-
 applets/notification_area/main.c                   | 29 +++++++++++++++++++++-
 applets/notification_area/main.h                   |  3 +++
 ...e.panel.applet.notification-area.gschema.xml.in |  9 +++++++
 configure.ac                                       |  1 +
 po/POTFILES.in                                     |  1 +
 6 files changed, 51 insertions(+), 2 deletions(-)

commit c7d431d36f8bf6e9b94bab37c19dd51041e117c9
Author: Fabien Broquard <braikar@gmail.com>
Date:   Tue Oct 2 20:21:37 2018 +0200

    na-tray: wide panels, convert main GtkBox display to GtkGrid
    
    New grid sorting/display functions to arrange notification area icons in a self reorganising grid
    main changes in: item_added_cb(), notification_notify() -> refresh_notify().
    update_size_and_orientation() is no longer needed
    the grid auto arranges on any size-allocation which includes orientation changes.
    Grid is now refreshed with refresh_grid()/determine_grid_properties()/reorder_items_with_data().
    based on the min_icon_size property
    the main applets' code can call na_grid_set_min_icon_size() to update the grid icon size.

 applets/notification_area/na-grid.c | 187 +++++++++++++++++++++++++-----------
 applets/notification_area/na-grid.h |   4 +-
 2 files changed, 135 insertions(+), 56 deletions(-)

commit 9bdd469392c4ae52f234b28ddd45615030167565
Author: Fabien Broquard <braikar@gmail.com>
Date:   Tue Oct 2 20:16:53 2018 +0200

    na-tray: wide panels, preliminary batch box to grid rename
    
    box/Box/BOX changed to grid/Grid/GRID as a preliminary step
    to prepare for changing GtkBox in na-box/na-grid to a GtkGrid
    to make the notification area work well on vertical and wide panels
    note: even if everything is renamed to grid, the GtkWidget is still a GtkBox
    thats why GtkBox and GTK_TYPE_BOX have not been renamed.

 applets/notification_area/Makefile.am             |   4 +-
 applets/notification_area/main.c                  |  26 +++---
 applets/notification_area/{na-box.c => na-grid.c} | 108 +++++++++++-----------
 applets/notification_area/{na-box.h => na-grid.h} |  27 ++----
 applets/notification_area/testtray.c              |   4 +-
 5 files changed, 78 insertions(+), 91 deletions(-)

commit 3f351d5c959b81792ed5a20845bb871a66b2f87c
Author: braikar <braikar@gmail.com>
Date:   Mon Aug 20 05:58:16 2018 +0200

    button-widget: wide panels, more suitable resize limits on Widgets and arrows
    
    Set better limits to the size taken by all BUTTON_WIDGETs when the panel is wide.
    For a wide panel (example vertical panel 100px wide) a widget would, before, take a space of 100x100 (for max hardcoded icon size 48px)
    Now if panel width exceeds 50px, the widgets' height stays at 50 and does not grow in height anymore.
    Same behaviour applies on wide horizontal panels.
    The GTK_ARROW also resizes properly for wide panel on BUTTON_WIDGETs with property "has_arrow"

 mate-panel/button-widget.c | 57 ++++++++++++++++++++++++++++++++++------------
 1 file changed, 42 insertions(+), 15 deletions(-)

commit e4fc17cf8c76f84a95e21779b5384136f1a2b756
Author: info-cppsp <info@cppsp.de>
Date:   Tue Jan 30 19:39:45 2018 +0100

    README - Add dependency list

 README | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 326ee8740a243d2009a24d2a522ebbc948eb8184
Author: raveit65 <mate@raveit.de>
Date:   Wed Oct 3 14:07:55 2018 +0200

    tx: update transifex sources

 mate-clock.pot |  28 +++++------
 mate-panel.pot | 154 ++++++++++++++++++++++++++++-----------------------------
 2 files changed, 91 insertions(+), 91 deletions(-)

commit 423e74c5b5334aa01842b6913de6bc00e6a244ab
Author: rbuj <robert.buj@gmail.com>
Date:   Tue Oct 2 22:18:21 2018 +0200

    legal.xml
    
    find . -name legal.xml -exec cp ~/Devel/mate-user-guide/mate-user-guide/C/legal.xml {} \;

 help/mate-clock/C/legal.xml | 135 ++++++++++++++++++++++-------------------
 help/mate-fish/C/legal.xml  | 143 ++++++++++++++++++++++----------------------
 2 files changed, 146 insertions(+), 132 deletions(-)

commit 227e36b880fe86030410f541233ce123a5449f1d
Author: raveit65 <mate@raveit.de>
Date:   Tue Oct 2 09:44:59 2018 +0200

    tx: update mate-clock translation source

 mate-clock.pot | 138 +++++++++++++++++++++++++++++++--------------------------
 1 file changed, 74 insertions(+), 64 deletions(-)

commit 0340a5e3912f08bcddc4469ddbe75f1a3bb37e06
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Sep 30 10:45:25 2018 +0200

    Clock applet help: To Adjust the System Date or Time

 help/mate-clock/C/index.docbook | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

commit 3fd6d38ecbc3664d06569ec32e332ead85d19822
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Sep 30 09:52:08 2018 +0200

    Clock applet help: Add Show week numbers in calendar

 help/mate-clock/C/index.docbook | 6 ++++++
 1 file changed, 6 insertions(+)

commit b7a1ac59a08933acd4c4fb329580a872fbd2b102
Author: rbuj <robert.buj@gmail.com>
Date:   Sun Sep 30 09:44:14 2018 +0200

    Clock applet help: Fix speed unit for meters per second

 help/mate-clock/C/index.docbook | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2bccd4e4ac308918e2cbdf7f53f230bd41d7dedb
Author: raveit65 <mate@raveit.de>
Date:   Fri Sep 28 15:24:34 2018 +0200

    tx: add clock and fish help to transifex config

 .tx/config     |  16 +-
 makepot        |  11 ++
 mate-clock.pot | 567 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 mate-fish.pot  | 349 +++++++++++++++++++++++++++++++++++
 4 files changed, 942 insertions(+), 1 deletion(-)

commit 7ce8636131082def35731476fa1037f58971eb5c
Author: raveit65 <mate@raveit.de>
Date:   Fri Sep 28 13:51:30 2018 +0200

    release 1.21.2

 NEWS         | 34 ++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 35 insertions(+), 1 deletion(-)

commit 16e6140c82647e0a39358031bffb66241a000b53
Author: raveit65 <mate@raveit.de>
Date:   Fri Sep 28 13:46:01 2018 +0200

    sync with transifex

 po/af.po          | 284 ++++++++++++++++++++++++-------------------------
 po/am.po          | 294 +++++++++++++++++++++++++--------------------------
 po/ar.po          | 284 ++++++++++++++++++++++++-------------------------
 po/as.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ast.po         | 284 ++++++++++++++++++++++++-------------------------
 po/az.po          | 284 ++++++++++++++++++++++++-------------------------
 po/be.po          | 284 ++++++++++++++++++++++++-------------------------
 po/bg.po          | 284 ++++++++++++++++++++++++-------------------------
 po/bn.po          | 284 ++++++++++++++++++++++++-------------------------
 po/bn_IN.po       | 284 ++++++++++++++++++++++++-------------------------
 po/br.po          | 284 ++++++++++++++++++++++++-------------------------
 po/bs.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ca.po          | 310 ++++++++++++++++++++++++++----------------------------
 po/ca@valencia.po | 286 ++++++++++++++++++++++++-------------------------
 po/cmn.po         | 284 ++++++++++++++++++++++++-------------------------
 po/crh.po         | 284 ++++++++++++++++++++++++-------------------------
 po/cs.po          | 284 ++++++++++++++++++++++++-------------------------
 po/cy.po          | 284 ++++++++++++++++++++++++-------------------------
 po/da.po          | 288 ++++++++++++++++++++++++--------------------------
 po/de.po          | 284 ++++++++++++++++++++++++-------------------------
 po/dz.po          | 284 ++++++++++++++++++++++++-------------------------
 po/el.po          | 284 ++++++++++++++++++++++++-------------------------
 po/en_AU.po       | 284 ++++++++++++++++++++++++-------------------------
 po/en_CA.po       | 284 ++++++++++++++++++++++++-------------------------
 po/en_GB.po       | 288 ++++++++++++++++++++++++--------------------------
 po/eo.po          | 284 ++++++++++++++++++++++++-------------------------
 po/es.po          | 290 +++++++++++++++++++++++++-------------------------
 po/es_AR.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_CL.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_CO.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_CR.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_DO.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_EC.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_ES.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_MX.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_NI.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_PA.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_PE.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_PR.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_SV.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_UY.po       | 284 ++++++++++++++++++++++++-------------------------
 po/es_VE.po       | 284 ++++++++++++++++++++++++-------------------------
 po/et.po          | 284 ++++++++++++++++++++++++-------------------------
 po/eu.po          | 284 ++++++++++++++++++++++++-------------------------
 po/fa.po          | 284 ++++++++++++++++++++++++-------------------------
 po/fi.po          | 284 ++++++++++++++++++++++++-------------------------
 po/fr.po          | 286 ++++++++++++++++++++++++-------------------------
 po/fr_CA.po       | 284 ++++++++++++++++++++++++-------------------------
 po/frp.po         | 284 ++++++++++++++++++++++++-------------------------
 po/fur.po         | 284 ++++++++++++++++++++++++-------------------------
 po/fy.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ga.po          | 284 ++++++++++++++++++++++++-------------------------
 po/gl.po          | 284 ++++++++++++++++++++++++-------------------------
 po/gu.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ha.po          | 284 ++++++++++++++++++++++++-------------------------
 po/he.po          | 284 ++++++++++++++++++++++++-------------------------
 po/hi.po          | 284 ++++++++++++++++++++++++-------------------------
 po/hr.po          | 284 ++++++++++++++++++++++++-------------------------
 po/hu.po          | 284 ++++++++++++++++++++++++-------------------------
 po/hy.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ia.po          | 284 ++++++++++++++++++++++++-------------------------
 po/id.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ig.po          | 284 ++++++++++++++++++++++++-------------------------
 po/is.po          | 284 ++++++++++++++++++++++++-------------------------
 po/it.po          | 286 ++++++++++++++++++++++++-------------------------
 po/ja.po          | 284 ++++++++++++++++++++++++-------------------------
 po/jv.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ka.po          | 284 ++++++++++++++++++++++++-------------------------
 po/kk.po          | 284 ++++++++++++++++++++++++-------------------------
 po/km.po          | 284 ++++++++++++++++++++++++-------------------------
 po/kn.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ko.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ks.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ku.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ku_IQ.po       | 288 ++++++++++++++++++++++++--------------------------
 po/ky.po          | 284 ++++++++++++++++++++++++-------------------------
 po/la.po          | 284 ++++++++++++++++++++++++-------------------------
 po/li.po          | 284 ++++++++++++++++++++++++-------------------------
 po/lt.po          | 284 ++++++++++++++++++++++++-------------------------
 po/lv.po          | 284 ++++++++++++++++++++++++-------------------------
 po/mai.po         | 284 ++++++++++++++++++++++++-------------------------
 po/mg.po          | 284 ++++++++++++++++++++++++-------------------------
 po/mi.po          | 284 ++++++++++++++++++++++++-------------------------
 po/mk.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ml.po          | 284 ++++++++++++++++++++++++-------------------------
 po/mn.po          | 286 ++++++++++++++++++++++++-------------------------
 po/mr.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ms.po          | 284 ++++++++++++++++++++++++-------------------------
 po/nb.po          | 286 ++++++++++++++++++++++++-------------------------
 po/nds.po         | 284 ++++++++++++++++++++++++-------------------------
 po/ne.po          | 284 ++++++++++++++++++++++++-------------------------
 po/nl.po          | 284 ++++++++++++++++++++++++-------------------------
 po/nn.po          | 284 ++++++++++++++++++++++++-------------------------
 po/nso.po         | 284 ++++++++++++++++++++++++-------------------------
 po/oc.po          | 284 ++++++++++++++++++++++++-------------------------
 po/or.po          | 284 ++++++++++++++++++++++++-------------------------
 po/pa.po          | 284 ++++++++++++++++++++++++-------------------------
 po/pl.po          | 298 +++++++++++++++++++++++++--------------------------
 po/pms.po         | 284 ++++++++++++++++++++++++-------------------------
 po/ps.po          | 284 ++++++++++++++++++++++++-------------------------
 po/pt.po          | 284 ++++++++++++++++++++++++-------------------------
 po/pt_BR.po       | 286 ++++++++++++++++++++++++-------------------------
 po/ro.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ru.po          | 290 +++++++++++++++++++++++++-------------------------
 po/rw.po          | 284 ++++++++++++++++++++++++-------------------------
 po/sc.po          | 284 ++++++++++++++++++++++++-------------------------
 po/si.po          | 284 ++++++++++++++++++++++++-------------------------
 po/sk.po          | 286 ++++++++++++++++++++++++-------------------------
 po/sl.po          | 284 ++++++++++++++++++++++++-------------------------
 po/sq.po          | 284 ++++++++++++++++++++++++-------------------------
 po/sr.po          | 284 ++++++++++++++++++++++++-------------------------
 po/sr@latin.po    | 284 ++++++++++++++++++++++++-------------------------
 po/sv.po          | 290 +++++++++++++++++++++++++-------------------------
 po/ta.po          | 284 ++++++++++++++++++++++++-------------------------
 po/te.po          | 284 ++++++++++++++++++++++++-------------------------
 po/th.po          | 284 ++++++++++++++++++++++++-------------------------
 po/tk.po          | 284 ++++++++++++++++++++++++-------------------------
 po/tr.po          | 288 ++++++++++++++++++++++++--------------------------
 po/tt.po          | 284 ++++++++++++++++++++++++-------------------------
 po/ug.po          | 284 ++++++++++++++++++++++++-------------------------
 po/uk.po          | 304 ++++++++++++++++++++++++++--------------------------
 po/ur.po          | 284 ++++++++++++++++++++++++-------------------------
 po/uz.po          | 284 ++++++++++++++++++++++++-------------------------
 po/vi.po          | 284 ++++++++++++++++++++++++-------------------------
 po/wa.po          | 284 ++++++++++++++++++++++++-------------------------
 po/xh.po          | 284 ++++++++++++++++++++++++-------------------------
 po/yi.po          | 284 ++++++++++++++++++++++++-------------------------
 po/yo.po          | 284 ++++++++++++++++++++++++-------------------------
 po/zh_CN.po       | 288 ++++++++++++++++++++++++--------------------------
 po/zh_HK.po       | 284 ++++++++++++++++++++++++-------------------------
 po/zh_TW.po       | 284 ++++++++++++++++++++++++-------------------------
 po/zu.po          | 284 ++++++++++++++++++++++++-------------------------
 132 files changed, 18277 insertions(+), 19333 deletions(-)

commit f0f4c5e1217eefd46edf9f98633fb32967c67461
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Thu Aug 30 18:11:29 2018 +0200

    menu-bar: transfer focus correctly on alt-F1
    
    The background is in https://gitlab.gnome.org/GNOME/gtk/issues/85 . One of
    the conclusions, in https://gitlab.gnome.org/GNOME/gtk/issues/85#note_264804
    , is that mate-panel needs to properly transfer focus on alt-F1 keyboard
    shortcut.
    
    It used to work only by luck before, only because gtk used to
    deactivate itself during a keyboard grab. But as discussed in
    https://gitlab.gnome.org/GNOME/gtk/issues/85 that behavior poses
    accessibility feedback issues, is not coherent, and keyboard grab
    feedback will not be available in wayland anyway. Thus @ebassi saying
    in https://gitlab.gnome.org/GNOME/gtk/issues/85#note_264804 that not
    transferring focus properly is the actual bug.
    
    This change explictly switches to the menu bar after saving which X Window
    had the focus, and on menu bar deactivation restores focus to that X Window.
    
    Fixes #851

 mate-panel/panel-menu-bar.c    | 22 ++++++++++
 mate-panel/panel-menu-button.c | 22 ++++++++++
 mate-panel/panel-util.c        | 92 ++++++++++++++++++++++++++++++++++++++++++
 mate-panel/panel-util.h        |  5 +++
 4 files changed, 141 insertions(+)

commit 4c30c52e4857da9d23e284aa75b12c8ab62e2ee4
Author: Rui Caridade <rcaridade145@gmail.com>
Date:   Mon Sep 10 21:43:27 2018 +0100

    panel: avoid a critical
    
    g_file_query_info can return NULL. Use g_clear_object to make
    sure we don't try to unref NULL pointer.
    
    Origin commit:
    
    https://github.com/GNOME/gnome-panel/commit/73fa9808f24ee6a95e12a8558d6b1f6513b78693#diff-5f461c83a31d7792b939f3a1be40c512

 mate-panel/panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2e35407bfe71cf0c9c5911102daf8ed2e7246d89
Author: Rui Caridade <rcaridade145@gmail.com>
Date:   Mon Sep 10 21:37:40 2018 +0100

    panel-toplevel: fix memory leak in calculate_minimum_height
    
    Origin commit :
    https://github.com/GNOME/gnome-panel/commit/19129513e9dbfef9a985e0666d98d60a9e7b2779#diff-97cdffd8b53134e4fdfdd45b4a862042R2144

 mate-panel/panel-toplevel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 0e32e29fcc1dfda6b8764c7a7fda11aa9830065e
Author: raveit65 <mate@raveit.de>
Date:   Tue Aug 7 22:41:45 2018 +0200

    Change GTK_CHECK_VERSION to match next gtk+ release

 applets/notification_area/system-tray/na-tray-child.c | 4 ++--
 applets/wncklet/window-list.c                         | 6 +++---
 libmate-panel-applet/mate-panel-applet.c              | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

commit 31930d0b39b3bf26bcc53b2c20e61ecd4779f397
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Fri Jul 27 14:08:09 2018 -0400

    applets: Guard against GTK scale-factor fixes on GtkSocket

 applets/notification_area/system-tray/na-tray-child.c | 6 +++---
 applets/wncklet/window-list.c                         | 6 +++---
 libmate-panel-applet/mate-panel-applet.c              | 9 +++++----
 3 files changed, 11 insertions(+), 10 deletions(-)

commit 139f1837cea61ddf9971c3f7f1530de9247121d3
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Thu Jul 26 14:05:17 2018 -0400

    window-list: Skip setting size hints until WnckTasklist has items to show.

 applets/wncklet/window-list.c | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

commit f2f4d84492425428806e0b2d940b6b270c0d3bd5
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Wed Jul 25 12:39:14 2018 -0400

    applets: Fix runtime error messages

 applets/notification_area/status-notifier/sn-item-v0.c |  2 +-
 applets/wncklet/workspace-switcher.c                   | 12 ++++++++----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit b37f24ea4aabd954b7c7810a681ec8fc62c65631
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Jul 22 01:47:10 2018 -0400

    mate-panel-applet: setup_x_error_handler for in-process applets too
    
    This is for the tray: GtkPlug/GtkSocket widgets are used to embed tray icons (GtkStatusIcons) in the tray even if the tray is in-process and does not use the plug/socket widgets to be itself embedded in the panel

 libmate-panel-applet/mate-panel-applet.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit a130fb0379a270f6ed80fa21ba2a69e184b4cc2a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 20 17:36:49 2018 -0400

    GTK 3.23: fix applet size allocation
    
    Limit workaround for GTK 3.22 double width/height allocation to GTK 3.22 builds only

 libmate-panel-applet/mate-panel-applet.c | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 7369482f848486c5e35f2883346b23b1cacc6f37
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Jul 12 01:40:41 2018 +0200

    fish: avoid deprecated 'gtk_window_set_wmclass'

 applets/fish/fish.c | 5 -----
 1 file changed, 5 deletions(-)

commit 9de3a86d736f70c4d45550649ba62a935369b146
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jul 3 15:59:56 2018 -0400

    Tray: simplify force-redraw, use code that actually works
    
    Prevent most corruption of tray icons and reduce by half incomplete rendering of them, replace a never-built code block that could not be built, and replace (deprecated) direct expose handling with gtk_widget_hide/gtk_widget_show_all
    
    *Note that this is needed for GTK 3.23 but may help remaining icon issues with GTK 3.22 as well and is simpler code in any case

 .../notification_area/system-tray/na-tray-child.c  | 47 +++-------------------
 1 file changed, 5 insertions(+), 42 deletions(-)

commit 17ac8aab4d139cb917619a3a981300f51b750c17
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Sep 4 01:21:38 2017 -0400

    panel-actions: replace deprecated gtk_menu_popup

 mate-panel/panel-action-protocol.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 8001d65ccfbb4fccd84407680e4e4da5dc16cde4
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Sep 4 23:55:10 2017 -0400

    applet-context-menu: replace deprecated gtk_menu_popup

 mate-panel/applet.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit 81896c0e45a21ad3021f83e154c7c1b5a524d596
Author: raveit65 <mate@raveit.de>
Date:   Sun Jul 1 12:31:13 2018 +0200

    panel-context-menu: replace deprecated gtk_menu_popup

 mate-panel/panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3820f05688734c96f0668760bd8bd62ebb1e6d34
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Jul 1 21:13:13 2018 -0400

    GTK 3.23: don't cut tray icons too narrow in HiDPI mode
    
    Code required to avoid spaces between tray icons with GTK 3.22 cuts tray icons in half with window-scaling=2 in GTK 3.23

 applets/notification_area/system-tray/na-tray-child.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 91f9afedff98445981cc4a70cf8050ac102c6b53
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Jul 1 14:48:44 2018 -0400

    na-tray-child: remove na_tray_child_size_allocate
    
    Remov leftover from GTK2 that may play a role in cutting tray icons

 .../notification_area/system-tray/na-tray-child.c  | 46 ----------------------
 1 file changed, 46 deletions(-)

commit 002244141bd0205aff0aa3e7028529d1ba2ab22c
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 29 12:47:17 2018 +0200

    panel-menu-button: replace deprecated gtk_menu_popup

 mate-panel/panel-menu-button.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 6bad8637b8f3f16fe84a68464842f49a4d038300
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 17:15:09 2018 +0200

    na-tray-child: replace deprecated gdk_error_trap_push/pop functions

 .../notification_area/system-tray/na-tray-child.c  | 28 ++++++++++++++--------
 1 file changed, 18 insertions(+), 10 deletions(-)

commit 7c63f614dd5dcb4fe673217dccd82fe820a214f7
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 15:51:48 2018 +0200

    libmate-panel-applet: replace deprecated gdk_error_trap functions

 libmate-panel-applet/mate-panel-applet.c | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

commit 20ea38d6ee50a70c17c39d19049546874cc15743
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 29 11:42:03 2018 +0200

    panel-xutils: replace deprecated gdk_error_trap functions

 mate-panel/panel-xutils.c | 30 +++++++++++++++++-------------
 1 file changed, 17 insertions(+), 13 deletions(-)

commit edb3e0d94cc2c0493bbf88496bf4b5ccdca03f54
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 13:13:17 2018 +0200

    panel-util: replace deprecated gdk_flush

 mate-panel/panel-util.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 36d1856586e0caaa5c3417ec9f2322a110ccb4b8
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 13:05:34 2018 +0200

    main: replace deprecated gdk_flush

 mate-panel/main.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 5e296c116916039b88fd0c20bfcc464777f845b1
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 12:47:53 2018 +0200

    panel-widget: replace deprecated gdk_flush

 mate-panel/panel-widget.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit c4aedbddc01da6c0bf439e4229d77ae4c137df45
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Sat Jan 20 23:06:10 2018 +0200

    panel-toplevel: add position css class
    
    origin commit:
    https://gitlab.gnome.org/GNOME/gnome-panel/commit/6015418

 mate-panel/panel-toplevel.c | 61 ++++++++++++++++++++++++++++++++++-----------
 1 file changed, 47 insertions(+), 14 deletions(-)

commit 9009c4e1258171b72157f899dacde2b0306d0fa6
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 15:11:14 2018 +0200

    panel-force-quit: replace deprecated gdk_device_grab

 mate-panel/panel-force-quit.c | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

commit cb34c543087b2d3718c8366cb707e1fe30520129
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 18:04:00 2018 +0200

    panel-force-quit: replace deprecated gdk_error_trap functions

 mate-panel/panel-force-quit.c | 30 +++++++++++++++++-------------
 1 file changed, 17 insertions(+), 13 deletions(-)

commit 08076debace1dc487d946e0fe1d5328a9e4639ed
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 28 14:37:38 2018 +0200

    panel-force-quit: replace deprecated gdk_flush

 mate-panel/panel-force-quit.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit b22dff4194ba1024ba99069057b466bf47120bab
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Jun 24 12:48:34 2018 +0200

    menu.c: Fix: Keep spaces in the left if "menus-have-icons" is off
    
    Fixes https://github.com/mate-desktop/mate-panel/pull/820#issuecomment-399709389

 mate-panel/menu.c               | 2 +-
 mate-panel/panel-context-menu.c | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 5ca1fb1a1b34bdbaf0c966d9cc786ecf71d0df21
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Jun 21 18:35:13 2018 -0400

    Panel-gtk.c: Show menu icons only when "menus-have-icons" is set
    
    Most panel menus excluding main menus. Bind gsettings preference "menus have icons" to visibility of icon. Pack the icon into a box with a 16px min-width set in panel.css to hold the space when the icons are not shown Duplicate as much as possible behavior of now-deprecated GtkImageMenuItem replaced by github.com/mate-desktop/mate-panel/commit/86701517e7d7cb3d2c08a40d76af97308f18902c Use only one icon-settings gsettings object to control this in all menuitems controlled by panel-gtk.c The use of a single gsettings object is based on code by Albert Muktupavels https://github.com/muktupavels

 data/theme/mate-panel.css            |  3 +++
 mate-panel/libpanel-util/panel-gtk.c | 43 ++++++++++++++++++++++++++++++++++--
 2 files changed, 44 insertions(+), 2 deletions(-)

commit 2d3406f482a341805f9827b95e4b588feb0218ce
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Thu May 31 10:40:50 2018 -0400

    workspace-switcher: provide themed fallback color
    
    When a theme does not specify a color for the highlighted workspace, we can look it up from the current theme and provide that as a fallback color.
    
    Fixes #807

 applets/wncklet/workspace-switcher.c | 33 ++++++++++++++++++++++-----------
 1 file changed, 22 insertions(+), 11 deletions(-)

commit 07eb4181d15ed9622aec95a37822f777fa7dd0ca
Author: raveit65 <mate@raveit.de>
Date:   Wed May 30 17:01:22 2018 +0200

    release 1.21.1

 NEWS         | 16 ++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)

commit a5df21bf4ca40a07d77e553a119a1703fd939613
Author: monsta <monsta@inbox.ru>
Date:   Wed May 30 17:50:43 2018 +0300

    po: bring back pt_BR to LINGUAS
    
    fallout from 8135c8645126efd513c2c150a10d46dfa7f142c8

 po/LINGUAS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f8cbb7b31f2e80a8bc46c3c75158c3ddaa87c0b5
Author: raveit65 <mate@raveit.de>
Date:   Wed May 30 15:57:08 2018 +0200

    sync with transifex

 po/br.po    |  2 +-
 po/cs.po    |  2 +-
 po/de.po    |  2 +-
 po/es_AR.po | 40 ++++++++++++++++++++--------------------
 po/fa.po    |  2 +-
 po/he.po    |  2 +-
 po/ig.po    |  2 +-
 po/jv.po    |  2 +-
 po/ka.po    |  2 +-
 po/kk.po    |  2 +-
 po/kn.po    |  2 +-
 po/lt.po    |  2 +-
 po/pt.po    |  2 +-
 po/sk.po    |  2 +-
 po/tr.po    |  4 ++--
 po/uk.po    |  2 +-
 po/yo.po    |  2 +-
 17 files changed, 37 insertions(+), 37 deletions(-)

commit 0c936172cb0635695be55569b1cebbee0e6fa1ee
Author: raveit65 <mate@raveit.de>
Date:   Wed May 30 15:54:01 2018 +0200

    update mate-panel.pot

 mate-panel.pot | 288 ++++++++++++++++++++++++++++-----------------------------
 1 file changed, 140 insertions(+), 148 deletions(-)

commit 89e8e626a676a44eb69f61d9b0947bec5bc28b0c
Author: raveit65 <mate@raveit.de>
Date:   Wed May 30 15:46:45 2018 +0200

    update mate-menus requiremnt

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ac2778a74663d0c47cbdff7f0d8608a5a8d45a89
Author: yetist <yetist@gmail.com>
Date:   Sun May 20 11:52:44 2018 +0800

    panel-menu-button.c: Force use basename for compare
    
    * matemenu_tree_get_canonical_menu_path () now return absolute file
    path, not basename like matemenu_tree_get_menu_file.

 mate-panel/panel-menu-button.c | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

commit 263157786e7881f1c98f0a6d839447d8f0c57dbd
Author: yetist <yetist@gmail.com>
Date:   Fri Apr 27 15:20:40 2018 +0800

    Support new mate-menus api

 mate-panel/drawer-private.h    |   2 +-
 mate-panel/drawer.c            |  11 +-
 mate-panel/drawer.h            |   4 +-
 mate-panel/menu.c              | 273 ++++++++++++++++++++++-------------------
 mate-panel/panel-addto.c       |  93 ++++++++------
 mate-panel/panel-menu-button.c |   8 +-
 mate-panel/panel-run-dialog.c  | 140 ++++++++++++---------
 7 files changed, 294 insertions(+), 237 deletions(-)

commit 10b2021f0a98f1575400aac2beffd8e3c47ecdd5
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Tue May 1 00:24:38 2018 -0400

    Convert launcher icons to cairo surfaces
    
    This improves support for HiDPI by loading properly scaled surfaces for
    launcher and drawer icons.
    
    It also Fixes the Show Desktop wncklet to show a surface icon. Other
    wncklets have their icons determined by libwnck, so they remain as
    pixbufs.
    
    Fixes mate-desktop/mate-desktop#314

 applets/clock/clock-location-tile.c |  26 +++---
 applets/clock/clock.c               |  21 +++--
 applets/wncklet/showdesktop.c       |  49 ++++++++----
 mate-panel/button-widget.c          | 155 +++++++++++++++++++-----------------
 mate-panel/button-widget.h          |   2 +-
 mate-panel/launcher.c               |  34 ++++----
 mate-panel/panel-util.c             |  15 +++-
 mate-panel/panel-util.h             |   2 +-
 mate-panel/xstuff.c                 |  17 ++--
 mate-panel/xstuff.h                 |   2 +-
 10 files changed, 188 insertions(+), 135 deletions(-)

commit f775e8987f8279ea2fb259126e61d0b26cf78817
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon May 7 21:40:30 2018 -0400

    fix rendering and removal of in-process applets on unexpanded panel
    
    Fix https://github.com/mate-desktop/mate-panel/issues/797 and https://github.com/mate-desktop/mate-panel/issues/799

 libmate-panel-applet/mate-panel-applet.c | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

commit 8e196dacf877b90303c0d447f089d98373b37960
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Apr 22 15:31:49 2018 +0200

    applet.c: avoid deprecated GtkImageMenuItem
    
    avoid deprecated:
    
    gtk_image_menu_item_new_with_mnemonic
    gtk_image_menu_item_set_image

 mate-panel/applet.c                  | 49 ++++++++++++++----------
 mate-panel/libpanel-util/panel-gtk.c | 72 +++++++++++++++++++++++++++++-------
 mate-panel/libpanel-util/panel-gtk.h |  5 +++
 3 files changed, 94 insertions(+), 32 deletions(-)

commit 83be983eb6b57ffe8c2ebfb3701bcbe16926ad08
Author: raveit65 <mate@raveit.de>
Date:   Sat Apr 21 16:31:22 2018 +0200

    limit size of panel-hide-button
    
    Thanks to Juha Leppänen, Kuopio, Finland
    for simplifing the code

 mate-panel/panel-toplevel.c | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit 9893c11fb30412479320c28e51fbaae1793d4e5d
Author: monsta <monsta@inbox.ru>
Date:   Sat Apr 28 16:16:38 2018 +0300

    clock: fix weird thing in comments
    
    result of excessive renaming after forking from GNOME 2 (orbit -> matecorba)

 applets/clock/clock-sunpos.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3b9119b3bb941de61654d45eb693a85f48d56289
Author: monsta <monsta@inbox.ru>
Date:   Sat Apr 28 16:04:10 2018 +0300

    clock: fix actual copy/paste error which caused use-after-free
    
    also reverts 7099408402dc41f39e32f4afa3e874e968e879bc - not needed anymore

 applets/clock/clock-location-tile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7099408402dc41f39e32f4afa3e874e968e879bc
Author: monsta <monsta@inbox.ru>
Date:   Sat Apr 28 15:38:24 2018 +0300

    clock: fix use-after-free
    
    closes https://github.com/mate-desktop/mate-panel/issues/791

 applets/clock/clock-location-tile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 74ec4df4180490ef487baa7ff9786c9f20046119
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 14:21:46 2012 +0100

    fish: Install fish animations in fish-specific directory

 applets/fish/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f96c4ef58449a8b0f1296b19ee96b89945280b5f
Author: raveit65 <mate@raveit.de>
Date:   Thu Apr 26 23:35:17 2018 +0200

    fish: drop wanda image from gresource

 mate-panel/panel.gresource.xml | 1 -
 1 file changed, 1 deletion(-)

commit d9c147543608a3ce59f6cb56ad0ab4e2c02be493
Author: raveit65 <mate@raveit.de>
Date:   Thu Apr 26 16:49:02 2018 +0200

    release 1.21.0

 NEWS         | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 47 insertions(+), 1 deletion(-)

commit 8135c8645126efd513c2c150a10d46dfa7f142c8
Author: raveit65 <mate@raveit.de>
Date:   Thu Apr 26 16:34:26 2018 +0200

    sync with transifex

 po/LINGUAS        |   20 +-
 po/af.po          | 1293 ++++++++++++++---------
 po/am.po          |  935 +++++++++--------
 po/ar.po          | 1257 +++++++++++++----------
 po/as.po          | 1321 ++++++++++++++----------
 po/ast.po         | 1292 ++++++++++++++---------
 po/az.po          | 1143 ++++++++++++---------
 po/be.po          | 1322 ++++++++++++++----------
 po/bg.po          | 1391 +++++++++++++++----------
 po/bn.po          | 1309 ++++++++++++++----------
 po/bn_IN.po       | 1345 ++++++++++++++----------
 po/br.po          | 1345 ++++++++++++++----------
 po/bs.po          | 1257 +++++++++++++----------
 po/ca.po          | 1443 ++++++++++++++++----------
 po/ca@valencia.po | 1410 ++++++++++++++++----------
 po/cmn.po         | 1015 +++++++++++--------
 po/crh.po         | 1324 ++++++++++++++----------
 po/cs.po          | 1356 +++++++++++++++----------
 po/cy.po          | 1199 +++++++++++++---------
 po/da.po          | 1227 +++++++++++++---------
 po/de.po          | 1438 ++++++++++++++++----------
 po/dz.po          | 1471 +++++++++++++++++----------
 po/el.po          | 1441 ++++++++++++++++----------
 po/en_AU.po       | 1233 +++++++++++++---------
 po/en_CA.po       | 1272 +++++++++++++----------
 po/en_GB.po       | 1254 ++++++++++++++---------
 po/eo.po          | 1320 ++++++++++++++----------
 po/es.po          | 1399 +++++++++++++++----------
 po/es_AR.po       | 2930 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_CL.po       | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_CO.po       |  947 +++++++++--------
 po/es_CR.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_DO.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_EC.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_ES.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_MX.po       |  922 +++++++++--------
 po/es_NI.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_PA.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_PE.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_PR.po       |  891 ++++++++--------
 po/es_SV.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_UY.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_VE.po       | 2928 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/et.po          | 1298 +++++++++++++++---------
 po/eu.po          | 1274 ++++++++++++++---------
 po/fa.po          | 1275 +++++++++++++----------
 po/fi.po          | 1252 ++++++++++++++---------
 po/fr.po          | 1446 ++++++++++++++++----------
 po/fr_CA.po       |  871 ++++++++--------
 po/frp.po         |  909 +++++++++--------
 po/fur.po         | 1177 ++++++++++++---------
 po/fy.po          |  840 ++++++++-------
 po/ga.po          |  929 +++++++++--------
 po/gl.po          | 1411 ++++++++++++++++----------
 po/gu.po          | 1287 +++++++++++++----------
 po/ha.po          | 1254 ++++++++++++++---------
 po/he.po          | 1214 +++++++++++++---------
 po/hi.po          | 1258 ++++++++++++++---------
 po/hr.po          | 1319 ++++++++++++++----------
 po/hu.po          | 1333 +++++++++++++++---------
 po/hy.po          | 1338 ++++++++++++++----------
 po/ia.po          | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/id.po          | 1337 ++++++++++++++----------
 po/ig.po          | 1226 +++++++++++++---------
 po/is.po          | 1261 ++++++++++++++---------
 po/it.po          | 1422 ++++++++++++++++----------
 po/ja.po          | 1076 +++++++++++---------
 po/jv.po          |  871 ++++++++--------
 po/ka.po          | 1253 ++++++++++++++---------
 po/kk.po          |  871 +++++++++-------
 po/km.po          | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/kn.po          | 1317 +++++++++++++++---------
 po/ko.po          | 1102 +++++++++++---------
 po/ks.po          | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ku.po          | 1283 +++++++++++++----------
 po/ku_IQ.po       |  904 +++++++++--------
 po/ky.po          | 1326 ++++++++++++++----------
 po/la.po          |  872 ++++++++--------
 po/li.po          |  927 +++++++++--------
 po/lt.po          | 1303 +++++++++++++++---------
 po/lv.po          | 1248 ++++++++++++++---------
 po/mai.po         | 1226 +++++++++++++---------
 po/mg.po          | 1372 +++++++++++++++----------
 po/mi.po          |  876 ++++++++--------
 po/mk.po          | 1361 +++++++++++++++----------
 po/ml.po          | 1423 ++++++++++++++++----------
 po/mn.po          | 1242 +++++++++++++----------
 po/mr.po          | 1302 ++++++++++++++----------
 po/ms.po          | 1317 +++++++++++++++---------
 po/nb.po          | 1309 +++++++++++++++---------
 po/nds.po         |  850 ++++++++--------
 po/ne.po          | 1325 ++++++++++++++----------
 po/nl.po          | 1425 ++++++++++++++++----------
 po/nn.po          | 1294 ++++++++++++++---------
 po/nso.po         | 1290 +++++++++++++----------
 po/oc.po          | 1046 ++++++++++---------
 po/or.po          | 1219 +++++++++++++---------
 po/pa.po          | 1217 +++++++++++++---------
 po/pl.po          | 1364 +++++++++++++++----------
 po/pms.po         |  875 ++++++++--------
 po/ps.po          |  926 +++++++++--------
 po/pt.po          | 1378 +++++++++++++++----------
 po/pt_BR.po       | 1402 +++++++++++++++----------
 po/ro.po          | 1308 +++++++++++++++---------
 po/ru.po          | 1421 ++++++++++++++++----------
 po/rw.po          |  880 ++++++++--------
 po/sc.po          | 2931 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/si.po          |  953 +++++++++--------
 po/sk.po          | 1326 ++++++++++++++----------
 po/sl.po          | 1291 ++++++++++++++---------
 po/sq.po          | 1377 +++++++++++++++----------
 po/sr.po          | 1325 +++++++++++++++---------
 po/sr@latin.po    | 1308 ++++++++++++++----------
 po/sv.po          | 1323 +++++++++++++++---------
 po/ta.po          | 1321 ++++++++++++++----------
 po/te.po          | 1358 +++++++++++++++----------
 po/th.po          | 1172 ++++++++++++---------
 po/tk.po          | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/tr.po          | 1355 +++++++++++++++----------
 po/tt.po          | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ug.po          | 1249 ++++++++++++++---------
 po/uk.po          | 1338 ++++++++++++++----------
 po/ur.po          |  913 +++++++++--------
 po/uz.po          |  957 +++++++++--------
 po/vi.po          | 1267 ++++++++++++++---------
 po/wa.po          |  919 +++++++++--------
 po/xh.po          | 1308 ++++++++++++++----------
 po/yi.po          |  877 ++++++++--------
 po/yo.po          | 1314 ++++++++++++++----------
 po/zh_CN.po       | 1040 ++++++++++---------
 po/zh_HK.po       | 1008 ++++++++++--------
 po/zh_TW.po       | 1032 ++++++++++---------
 po/zu.po          | 1228 +++++++++++++---------
 133 files changed, 135441 insertions(+), 55539 deletions(-)

commit 38dbd34c9191c9047d7f6151570ad351f85e17eb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Apr 26 00:04:32 2018 -0400

    css: use parsing-error signal to warn on bad css file or image
    
    Thanks to Alberts Muktupāvels for this code

 mate-panel/main.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 217044626cf1aef24ff3090d8d8ce4f380f48658
Author: raveit65 <mate@raveit.de>
Date:   Mon Apr 23 16:46:40 2018 +0200

    css: Convert to GResource

 configure.ac                             |  1 +
 data/Makefile.am                         |  8 +++-----
 data/theme/Makefile.am                   |  8 ++++++++
 data/{ => theme}/mate-panel.css          |  0
 data/{ => theme}/panel-grid-symbolic.svg |  0
 mate-panel/Makefile.am                   |  1 -
 mate-panel/main.c                        | 33 ++++++++++++++++----------------
 mate-panel/panel.gresource.xml           |  4 ++++
 8 files changed, 32 insertions(+), 23 deletions(-)

commit fb3abe3bc1cf858638867a2b92c53c5caf8e060f
Author: raveit65 <mate@raveit.de>
Date:   Sun Apr 22 17:18:54 2018 +0200

    na-tray: Convert to GResource

 applets/notification_area/Makefile.am      | 23 ++++++++++++++++++-----
 applets/notification_area/main.c           |  7 +++----
 applets/notification_area/main.h           |  2 ++
 applets/notification_area/na.gresource.xml |  6 ++++++
 4 files changed, 29 insertions(+), 9 deletions(-)

commit e1db0723dfba93d36d36b3b4e4327e9965aa90d4
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 12:22:04 2012 +0100

    wncklet: Convert to GResource
    
    origin commits:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=9fbca7d
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=695d30c
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=00f9870

 applets/wncklet/Makefile.am           | 34 ++++++++++++++++++++--------------
 applets/wncklet/showdesktop.c         |  7 +++----
 applets/wncklet/window-list.c         | 19 ++++---------------
 applets/wncklet/window-menu.c         |  7 +++----
 applets/wncklet/wncklet.gresource.xml | 11 +++++++++++
 applets/wncklet/wncklet.h             |  2 ++
 applets/wncklet/workspace-switcher.c  | 19 ++++---------------
 7 files changed, 47 insertions(+), 52 deletions(-)

commit 1b7c43adfa25eee678661e4d56dfa37888ff27c0
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 14:54:58 2012 +0100

    panel: Convert to GResource
    
    origin commits:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=9fca67f
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=695d30c
    https://git.gnome.org/browse/gnome-panel/patch/?id=00f9870cb28e6ef657d1

 mate-panel/Makefile.am                      | 50 +++++++++++++++++++++--------
 mate-panel/panel-properties-dialog.c        | 28 ++--------------
 mate-panel/panel-run-dialog.c               | 27 +++-------------
 mate-panel/panel-test-applets.c             | 13 +-------
 mate-panel/panel-test-applets.gresource.xml |  6 ++++
 mate-panel/panel.gresource.xml              |  8 +++++
 6 files changed, 58 insertions(+), 74 deletions(-)

commit ee07e90d14c15dbf45899d6c70614fe2068cd640
Author: Vincent Untz <vuntz@gnome.org>
Date:   Tue Feb 7 10:04:37 2012 +0100

    clock: Use new GdkPixbuf API to load resources
    
    origin commit:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=3c0af36

 applets/clock/clock-map.c | 23 +++++------------------
 configure.ac              |  2 +-
 2 files changed, 6 insertions(+), 19 deletions(-)

commit cfe060300ff10557f8805eee176604095c48cc2d
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 14:04:27 2012 +0100

    clock: Convert to GResource
    
    origin commits:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=aa2895d
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=695d30c
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=00f9870
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=9ade365

 applets/clock/Makefile.am                     |  21 +++++++++-------
 applets/clock/clock-face.c                    |  23 +++++++++++-------
 applets/clock/clock-map.c                     |  33 +++++++++++++++++++-------
 applets/clock/clock-utils.c                   |  22 +++++++++++++----
 applets/clock/clock-utils.h                   |   4 +++-
 applets/clock/clock.c                         |  22 ++++-------------
 applets/clock/clock.gresource.xml             |  17 +++++++++++++
 applets/clock/clock.h                         |   1 +
 applets/clock/pixmaps/Makefile.am             |   6 ++---
 applets/clock/pixmaps/clock-calendar-icon.png | Bin 653 -> 0 bytes
 10 files changed, 95 insertions(+), 54 deletions(-)

commit c61d3711954a959ebc7c957ac4f39c8ca3b783e9
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 12:05:20 2012 +0100

    fish: Convert to GResource
    
    origin commits:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=5478111
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=695d30c
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-4&id=00f9870

 applets/fish/Makefile.am        | 28 ++++++++++++++++++----------
 applets/fish/fish.c             | 18 +++++-------------
 applets/fish/fish.gresource.xml |  7 +++++++
 3 files changed, 30 insertions(+), 23 deletions(-)

commit b6372ca5fab62bcd963ee2a01d82955f93829e01
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 2 09:12:03 2012 +0100

    libpanel-applet: Add panel_applet_setup_menu_from_resource() API
    
    Add API to be able to use the new GResource framework.
    
    origin commit:
    https://git.gnome.org/browse/gnome-panel/commit/?id=182cefd

 configure.ac                             |  1 +
 libmate-panel-applet/mate-panel-applet.c | 40 ++++++++++++++++++++++++++++++++
 libmate-panel-applet/mate-panel-applet.h |  3 +++
 3 files changed, 44 insertions(+)

commit 45b25410cddde852554b3153e81ad59a5e6722ad
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Apr 18 23:50:46 2018 -0400

    Theme: consistant theming for applet drag handles in all themes
    
    * applet drag-handle: use a symbolic image for the default drag handle image
    * Use an .svg image with --gtk-recolor (like a symbolic icon), load it from the same directory as the css file so the css parser can find it, and use the theme fg color on it for good contrast
    * load a css file to use the recolorable image globally for the panel, not for each applet to ensure only one cssprovider is loaded

 data/Makefile.am                                   |   5 +
 data/mate-panel.css                                |  10 ++
 data/panel-grid-symbolic.svg                       | 173 +++++++++++++++++++++
 mate-panel/Makefile.am                             |   1 +
 .../panel-applet-frame-dbus.c                      |  63 --------
 mate-panel/main.c                                  |  20 ++-
 6 files changed, 208 insertions(+), 64 deletions(-)

commit b060d2a6a81ea29efaf59ceafccc462ad7e7d9e2
Author: raveit65 <mate@raveit.de>
Date:   Thu Apr 19 21:00:33 2018 +0200

    Revert "panel-toplevel: Remove pointer boundary check in panel_toplevel_queue_auto_hide()"
    
    This reverts commit 0d29acf6a70090ee771de2793b1af8e1388a430f.
    
    Which causes a regression.
    Fixes https://github.com/mate-desktop/mate-panel/issues/773

 mate-panel/panel-toplevel.c | 1 +
 1 file changed, 1 insertion(+)

commit 86701517e7d7cb3d2c08a40d76af97308f18902c
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Apr 19 12:06:40 2018 +0200

    panel-context-menu.c: avoid deprecated GtkImageMenuItem
    
    avoid deprecated:
    
    gtk_image_menu_item_new_with_mnemonic
    gtk_image_menu_item_set_image

 mate-panel/libpanel-util/panel-gtk.c | 24 +++++++++++++++++++++
 mate-panel/libpanel-util/panel-gtk.h |  3 +++
 mate-panel/menu.c                    |  3 +++
 mate-panel/panel-context-menu.c      | 41 +++++++++++++-----------------------
 4 files changed, 45 insertions(+), 26 deletions(-)

commit 49a3b4a3a5f233d99aa1ee42b0ea3241cc23a038
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Apr 17 00:33:53 2018 +0200

    avoid 'gtk_file_chooser_dialog_new' with stock ids

 mate-panel/libpanel-util/panel-gtk.c          | 58 +++++++++++++++++++++++++++
 mate-panel/libpanel-util/panel-gtk.h          |  6 +++
 mate-panel/libpanel-util/panel-icon-chooser.c | 17 ++++----
 mate-panel/panel-ditem-editor.c               | 15 +++----
 mate-panel/panel-run-dialog.c                 | 12 +++---
 po/POTFILES.in                                |  1 +
 6 files changed, 88 insertions(+), 21 deletions(-)

commit 82486801f650d6c756a9a38fbecc7b0bcdb54406
Author: monsta <monsta@inbox.ru>
Date:   Tue Apr 17 17:21:57 2018 +0300

    update potfile

 mate-panel.pot | 657 +++++++++++++++++++++++++++++++--------------------------
 1 file changed, 354 insertions(+), 303 deletions(-)

commit 15c910f859099899f092d5da7347a60acc57d517
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Apr 15 22:48:14 2018 -0400

    Accessibility: white/black applet handles in GNOME high contrast themes
    
    Special case the GNOME HighContrast and HighContrastInverse themes to give max contrast on tray and window list applet handles. Follow-on to https://github.com/mate-desktop/mate-panel/commit/2e0a74d9458480966f2a87d1d66a58552a873300

 .../panel-applet-frame-dbus.c                      | 87 +++++++++++++++-------
 1 file changed, 60 insertions(+), 27 deletions(-)

commit 50b0f8b27cc1bd90ad26ec7fc6b1f5d971dbb4e6
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Apr 15 02:35:43 2018 +0200

    panel-run-dialog.ui: avoid deprecated:
    
    avoid deprecated:
    
    GtkVBox
    GtkHbox
    GtkImage:stock
    GtkButton:use-stock

 mate-panel/panel-run-dialog.ui | 438 +++++++++++++++++++++++------------------
 1 file changed, 244 insertions(+), 194 deletions(-)

commit 7ebb4948319de1e1615e18b6183388fc0b4a63ef
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Apr 15 01:41:24 2018 +0200

    fish.c: avoid 'gtk_dialog_new_with_buttons' with stock id

 applets/fish/fish.c | 36 ++++++++++++++++++++++++++++++------
 1 file changed, 30 insertions(+), 6 deletions(-)

commit 33e46553a2472ce0b5d5ada65797ee3d2474e77a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Apr 14 20:17:31 2018 -0400

    Revert "panel-run-dialog.ui: avoid deprecated:"
    
    This reverts commit 4d84a7e7881cfd3b02ef36b443661f5f333efbf7.

 mate-panel/panel-run-dialog.ui | 439 ++++++++++++++++++-----------------------
 1 file changed, 195 insertions(+), 244 deletions(-)

commit 67c1cd041925fa598ff2708e2cd9d0ebee439bf3
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Apr 14 20:17:24 2018 -0400

    Revert "Revert "panel-test-applets.ui: avoid deprecated:""
    
    This reverts commit f853512c166566d0978430e28dca23f97110daae.

 mate-panel/panel-test-applets.ui | 307 ++++++++++++++++++++-------------------
 1 file changed, 160 insertions(+), 147 deletions(-)

commit f853512c166566d0978430e28dca23f97110daae
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Apr 14 19:57:43 2018 -0400

    Revert "panel-test-applets.ui: avoid deprecated:"
    
    This reverts commit d1aee5af0f3a7c32a5c040f241fa4305346f1a13.

 mate-panel/panel-test-applets.ui | 309 +++++++++++++++++++--------------------
 1 file changed, 148 insertions(+), 161 deletions(-)

commit d1aee5af0f3a7c32a5c040f241fa4305346f1a13
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Apr 14 00:43:03 2018 +0200

    panel-test-applets.ui: avoid deprecated:
    
    avoid deprecated:
    
    GtkTable
    GtkHSeparator
    GtkButton:use-stock

 mate-panel/panel-test-applets.ui | 307 ++++++++++++++++++++-------------------
 1 file changed, 160 insertions(+), 147 deletions(-)

commit 4d84a7e7881cfd3b02ef36b443661f5f333efbf7
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Apr 14 00:17:06 2018 +0200

    panel-run-dialog.ui: avoid deprecated:
    
    avoid deprecated:
    
    GtkVBox
    GtkHbox
    GtkImage:stock
    GtkButton:use-stock

 mate-panel/panel-run-dialog.ui | 437 +++++++++++++++++++++++------------------
 1 file changed, 243 insertions(+), 194 deletions(-)

commit 4d26d40422ae701d070f5fbdb36ab43d6349ac21
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Apr 14 16:02:57 2018 +0200

    window-list.ui: avoid GtkVBox and GtkButton:use-stock

 applets/wncklet/window-list.ui | 153 ++++++++++++++++++++++++++---------------
 1 file changed, 98 insertions(+), 55 deletions(-)

commit d3aacfe2d4dffe5dd8f454b4d4f6db04de13a29b
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Apr 14 16:16:02 2018 +0200

    workspace-switcher.ui: avoid deprecated GtkButton:use-stock

 applets/wncklet/workspace-switcher.ui | 26 +++++++++++++++++++-------
 1 file changed, 19 insertions(+), 7 deletions(-)

commit 2e0a74d9458480966f2a87d1d66a58552a873300
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Apr 12 18:52:48 2018 -0400

    Theme: show applet handles on non-MATE themes
    
    Fix https://github.com/mate-desktop/mate-panel/issues/758
    Ensure that themes such as GNOME themes (e.g Adwaita) that do not explicitly support MATE show the drag handles for applets such as tray and window-list.

 .../panel-applet-frame-dbus.c                      | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)

commit d3d057d4080e0dba6744a121d7eae5f50b92a278
Author: Pablo Barciela <scow@riseup.net>
Date:   Fri Apr 13 16:55:25 2018 +0200

    panel-properties-dialog.ui: avoid GtkButton:use-stock and GtkImage:stock

 mate-panel/panel-properties-dialog.ui | 54 +++++++++++++++++++++++++++--------
 1 file changed, 42 insertions(+), 12 deletions(-)

commit d7ed6ff1fe2ba72beec69d3e2c6b0e66951e950b
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Apr 12 16:02:36 2018 +0200

    fish.ui: avoid deprecated:
    
    avoid deprecated:
    
    GtkVBox
    GtkHBox
    GtkTable
    GtkLabel:ypad
    GtkButton:use-stock

 applets/fish/fish.ui | 259 ++++++++++++++++++++++++++++++++-------------------
 1 file changed, 161 insertions(+), 98 deletions(-)

commit 55d46b4e87fc9c07f11923af39ef6afc5b114e86
Author: Pablo Barciela <scow@riseup.net>
Date:   Wed Apr 11 15:17:47 2018 +0200

    clock.ui: avoid deprecated:
    
    avoid deprecated:
    
    GtkTable
    GtkVBox
    GtkHBox
    GtkVButtonBox
    GtkHButtonBox
    GtkButton:use-stock
    GtkImage:stock

 applets/clock/clock.ui | 1368 ++++++++++++++++++++++++++----------------------
 1 file changed, 731 insertions(+), 637 deletions(-)

commit a518a93b575372faee1a3da6aaa9f20cf2e10ec1
Author: Pablo Barciela <scow@riseup.net>
Date:   Mon Apr 9 20:47:07 2018 +0200

    avoid gtk_dialog_add_buttons with stock ids

 mate-panel/libpanel-util/panel-gtk.c | 20 ++++++++++++++++++++
 mate-panel/libpanel-util/panel-gtk.h |  5 +++++
 mate-panel/panel-addto.c             | 28 +++++++++++++++++-----------
 mate-panel/panel-applet-frame.c      | 17 ++++++++++-------
 mate-panel/panel-ditem-editor.c      | 36 +++++++++++++++++++++---------------
 mate-panel/panel-force-quit.c        | 15 +++++++++------
 mate-panel/panel-recent.c            | 12 ++++++++----
 mate-panel/panel.c                   | 13 +++++++++----
 8 files changed, 99 insertions(+), 47 deletions(-)

commit 397531135d3510562b7c787eae2ac165dde65ef9
Author: raveit65 <mate@raveit.de>
Date:   Sun Mar 25 21:08:45 2018 +0200

    fix distcheck

 mate-panel/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit fca5e6e075c46a94afdbf9016da11a019e34e5eb
Author: raveit65 <mate@raveit.de>
Date:   Wed Mar 14 17:17:20 2018 +0100

    workspace-switcher: support i3 WM
    
    Fixes https://github.com/mate-desktop/mate-panel/issues/711

 applets/wncklet/workspace-switcher.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit e2ccbfda443984a7382f4bb795509c06e614351b
Author: raveit65 <mate@raveit.de>
Date:   Fri Mar 23 13:31:28 2018 +0100

    tx: update config with branch specific resoures

 .tx/config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6609af3977b154bd9e666ca0884112093654a49a
Author: raveit65 <mate@raveit.de>
Date:   Wed Mar 14 13:41:55 2018 +0100

    workspace-switcher: support metacity WM
    
    Fixes https://github.com/mate-desktop/mate-panel/issues/711

 applets/wncklet/workspace-switcher.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit bc662901072600ac3a7e4f401de122657c7bbbc3
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Mar 21 15:28:43 2018 -0400

    Apply fix for workspace-switcher by vkareh
    
    On some machines the workspace-switcher also was rendering half-height at hidpi when out of process

 applets/wncklet/workspace-switcher.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fb2abbfe0c6386a9821baea7e7027cec921ab67e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Mar 20 19:56:05 2018 -0400

    Fix rendering of out-of-process window list with hidpi
    
    Fix #754

 applets/wncklet/window-list.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 0b15ea1f6d218cc2a850bef3f0cb98d303c63bc3
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Mar 20 22:02:48 2018 -0400

    hidpi: fix tray icon spacing with window-scaling > 1

 applets/notification_area/system-tray/na-tray-child.c | 10 ++++++++++
 applets/notification_area/system-tray/na-tray.c       |  3 ++-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit ff04f332136272a14c588da3f2d582ba0ff01be1
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Fri Mar 2 16:07:04 2018 -0500

    Fix out-of-process applet sizes for HiDPI

 libmate-panel-applet/mate-panel-applet.c | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

commit fa5cde36593be06eabfb2f752f38c26b80ea269c
Author: info-cppsp <info@cppsp.de>
Date:   Sun Feb 18 12:40:08 2018 +0100

    Fix hide buttons make panel bigger
    
    fix #733

 mate-panel/panel-toplevel.c | 123 ++++++++++++++++++++++++++++----------------
 1 file changed, 79 insertions(+), 44 deletions(-)

commit 6bbc333c9fc5d7724f3bc2a2a618096f7bb0aab4
Author: monsta <monsta@inbox.ru>
Date:   Mon Mar 19 17:33:20 2018 +0300

    run dialog: force icon size when loading app icon
    
    avoids jumping of nearby UI controls when icon is bigger than requested

 mate-panel/panel-run-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 61ee8119f902fe729afc114a3f95b78061b30aa6
Author: monsta <monsta@inbox.ru>
Date:   Mon Mar 19 17:17:49 2018 +0300

    run dialog: fix expand of content on window resize

 mate-panel/panel-run-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit f6224f1c09acb8e93718338ea6a6c4cafe20c23c
Author: info-cppsp <info@cppsp.de>
Date:   Sun Mar 18 19:57:54 2018 +0100

    Fix run dialog show-program-list enabling fix
    
    learning signal chaining...

 mate-panel/panel-run-dialog.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

commit 217c79fe5ceeb98018cc6f86185359ce110c20d1
Author: raveit65 <mate@raveit.de>
Date:   Sat Mar 17 14:40:33 2018 +0100

    tx: add makepot and .pot files

 makepot        |    5 +
 mate-panel.pot | 2870 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 2875 insertions(+)

commit 77be765b1726022c2bda6bf578a05f25b8a4714a
Author: info-cppsp <info@cppsp.de>
Date:   Mon Feb 5 15:46:55 2018 +0100

    run-dialog: use F6 to switch between entry field and program list
    
    fix #676

 mate-panel/panel-run-dialog.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

commit 27e2032c99e3a39a15c9c24e016b86420d22afce
Author: raveit65 <mate@raveit.de>
Date:   Sun Mar 11 20:55:05 2018 +0100

    transifex: set minimum_perc and type in config file

 .tx/config | 2 ++
 1 file changed, 2 insertions(+)

commit 73e025b0eab94fe06cdafee61c347fb5fe6f7545
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Tue Feb 27 12:35:19 2018 -0500

    Fix strut sizes for HiDPI multi-monitors

 mate-panel/panel-struts.c | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

commit a00f2c96e94c41cd405709e51bf3f4b23f1f6dd6
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Mon Feb 26 15:41:13 2018 -0500

    Do not down-scale monitor geometries for GDK monitors

 mate-panel/panel-multiscreen.c | 17 ++---------------
 1 file changed, 2 insertions(+), 15 deletions(-)

commit 87a376956154563d72192f74608b46622aaa753a
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Sat Feb 24 11:02:15 2018 -0500

    Scale monitor geometries down to device pixels to support multiple monitors in HiDPI

 mate-panel/panel-multiscreen.c | 33 +++++++++++++++++++++++++++------
 mate-panel/panel-run-dialog.c  |  4 +---
 mate-panel/panel-struts.c      | 15 +++++++++++----
 mate-panel/panel-toplevel.c    | 18 +++++-------------
 4 files changed, 44 insertions(+), 26 deletions(-)

commit b08bc130853b2f737eb47113357513f5e937eb47
Author: info-cppsp <info@cppsp.de>
Date:   Tue Feb 6 16:24:14 2018 +0100

    Drawer cleanup and fix arrow behavior
    
    *Drawer coding style cleanup
    *Drawer code organized
    *Rearranged and labeled code
    *Drawer fix arrows
    *Fixed hide code for drawer in toplevel.
    *fix #528
    *fix #704

 mate-panel/drawer-private.h |  146 ++++++
 mate-panel/drawer.c         | 1081 ++++++++++++++++++++++---------------------
 mate-panel/drawer.h         |   51 +-
 mate-panel/panel-toplevel.c |   18 +-
 4 files changed, 729 insertions(+), 567 deletions(-)

commit 112c3e0b0739f3d7206498d172cb3f34252c019d
Author: raveit65 <mate@raveit.de>
Date:   Tue Feb 6 19:50:46 2018 +0100

    update News again for 1.20

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit 346f20cfbe485828eecb5e27960f9461ada7b749
Author: info-cppsp <info@cppsp.de>
Date:   Mon Feb 5 20:31:56 2018 +0100

    Added gir for mate_panel_applet_set_size_hints()
    
    fix #727

 libmate-panel-applet/mate-panel-applet.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit c11fa2cd4c1fdffa0ece052103bf931b4af0c2a0
Author: raveit65 <mate@raveit.de>
Date:   Tue Feb 6 18:38:30 2018 +0100

    update NEWS for 1.20 release

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit d34c155f7cd35629a8a9356839f4471c188c054c
Author: Pablo Barciela <scow@riseup.net>
Date:   Sat Feb 3 15:43:01 2018 +0100

    panel-stock-icons.c: Fix warnings in ~/.xsession-errors

 mate-panel/panel-stock-icons.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 6af0787b7cf06ae8da8d1c6f2f75b909c3ed3274
Author: raveit65 <mate@raveit.de>
Date:   Fri Feb 2 14:09:55 2018 +0100

    release 1.20

 NEWS         | 50 +++++++++++++++++++++++++++++++-------------------
 configure.ac |  2 +-
 2 files changed, 32 insertions(+), 20 deletions(-)

commit 3dfde0569c97a85e1f687fa053d5889f9da623fe
Author: raveit65 <mate@raveit.de>
Date:   Fri Feb 2 13:59:52 2018 +0100

    sync with transifex

 po/sk.po | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit f20f4b9e45c1ac33e651fdd77ccf8a530c894d73
Author: info-cppsp <info@cppsp.de>
Date:   Wed Jan 31 15:07:20 2018 +0100

    Fix run dialog show-program-list enabling
    
    fix  #296

 mate-panel/panel-run-dialog.c | 27 ++++++++++++++++++++-------
 1 file changed, 20 insertions(+), 7 deletions(-)

commit ab7987701bcea97e4326fecd161c3137080f6077
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 31 09:46:08 2018 +0300

    require GTK+ 3.22 and GLib 2.50

 applets/clock/clock-location-tile.c                |   8 -
 applets/clock/clock-utils.c                        |   6 +-
 applets/clock/clock.c                              |  65 -------
 applets/fish/fish.c                                |  11 +-
 applets/notification_area/main.c                   |  30 ---
 .../status-notifier/sn-dbus-menu.c                 |   4 +-
 .../notification_area/status-notifier/sn-item-v0.c |   2 -
 .../notification_area/status-notifier/sn-item.c    |  77 --------
 applets/notification_area/system-tray/fixedtip.c   |   4 -
 applets/notification_area/testtray.c               |   9 +-
 applets/wncklet/showdesktop.c                      |  28 +--
 applets/wncklet/window-list.c                      |   7 +-
 applets/wncklet/window-menu.c                      |  25 ---
 applets/wncklet/wncklet.c                          |   5 +-
 configure.ac                                       |   8 +-
 libmate-panel-applet/mate-panel-applet.c           | 136 +-------------
 libmate-panel-applet/panel-plug-private.h          |   3 -
 libmate-panel-applet/panel-plug.c                  |   4 -
 mate-panel/applet.c                                |   7 +-
 mate-panel/button-widget.c                         |  18 --
 mate-panel/launcher.c                              |   4 -
 .../panel-applet-frame-dbus.c                      |   2 -
 mate-panel/libpanel-util/panel-show.c              |  11 +-
 mate-panel/menu.c                                  |  33 ----
 mate-panel/panel-addto.c                           |   4 -
 mate-panel/panel-applet-frame.c                    |  34 +---
 mate-panel/panel-ditem-editor.c                    |   4 -
 mate-panel/panel-force-quit.c                      |  25 +--
 mate-panel/panel-frame.c                           |   3 +-
 mate-panel/panel-menu-bar.c                        |  12 --
 mate-panel/panel-multiscreen.c                     |  10 -
 mate-panel/panel-profile.c                         |   9 +-
 mate-panel/panel-separator.c                       |  11 +-
 mate-panel/panel-toplevel.c                        | 134 +-------------
 mate-panel/panel-toplevel.h                        |   5 -
 mate-panel/panel-widget.c                          | 205 +--------------------
 mate-panel/panel-widget.h                          |   2 -
 mate-panel/panel.c                                 |   5 -
 mate-panel/xstuff.c                                |  10 -
 39 files changed, 42 insertions(+), 938 deletions(-)

commit f553591e0562fd7b4bba0fe6a6182bc0b3747a34
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 31 09:45:03 2018 +0300

    panel-run-dialog: fix build warning about incompatible type
    
    introduced in 7f99492c269f541c81e4f36742ecc3f0b4ebac04

 mate-panel/panel-run-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ed089f5ae005664d17a967e29310bdfc3df1c163
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 31 08:55:47 2018 +0300

    remove unneeded nested GTK_CHECK_VERSION block
    
    it's already inside !GTK_CHECK_VERSION one, so it's a no-op

 applets/notification_area/status-notifier/sn-item.c | 11 -----------
 1 file changed, 11 deletions(-)

commit 254617d029aac1ddbff9b4b7d1fb8b3e559ac45c
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 31 08:48:38 2018 +0300

    fix indent a bit

 applets/clock/clock.c                    |  2 +-
 libmate-panel-applet/mate-panel-applet.c | 26 +++++++++++++++-----------
 2 files changed, 16 insertions(+), 12 deletions(-)

commit fb3b661aabd0f001b506842946b7dca5273574c8
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 30 17:22:43 2018 +0300

    workspace-switcher: restore border width and spacing in prefs dialog
    
    some things got lost after https://github.com/mate-desktop/mate-panel/commit/9d69c70a56c6dd5e73ac909862f90c480e1c4532

 applets/wncklet/workspace-switcher.ui | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit a2615b1a2af4222ab0ec8cfde8d3c2c4e4d24a77
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 30 22:08:36 2018 +0300

    context menu: add separator before Reset Panel menu item

 mate-panel/panel-context-menu.c | 2 ++
 1 file changed, 2 insertions(+)

commit 4e2f9b1c421ef94c5912cc294771accc4191ab73
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 30 15:08:23 2018 +0300

    background: reword warning about unsupported background-image value
    
    make it more clear that the problem is in the theme, not the panel

 mate-panel/panel-background.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit c77335f82d8e67c7b6677e45bede241634eb612e
Author: Pablo Barciela <scow@riseup.net>
Date:   Sun Jan 28 16:37:04 2018 +0100

    set the "document-properties" icon in "Edit Menus"

 mate-panel/panel-menu-bar.c    | 2 +-
 mate-panel/panel-menu-button.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 94e0a48cee44a4857dd348266a05441101186b04
Author: Martin Wimpress <martin@mate-desktop.org>
Date:   Fri Jan 26 16:22:25 2018 +0000

    Bump version to 1.19.6

 NEWS         | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 8d8711262f32ed7421d286e02b954af030e1f648
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Fri Jan 26 10:20:10 2018 -0500

    Down-scale out-of-process applets (#713)
    
    Out-of-process applets end up scaled up doubly.
    This divides the preferred width/height by the scale factor to ensure they are back at the correct preferred size.

 libmate-panel-applet/mate-panel-applet.c | 84 +++++++++++++++++++++-----------
 1 file changed, 56 insertions(+), 28 deletions(-)

commit 1f72d441289df987dd7fbb528089f71e719e3c46
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Jan 23 20:55:01 2018 +0100

    avoid deprecated GtkStock

 applets/clock/clock.c                         | 12 ++++++------
 applets/fish/fish.c                           |  8 ++++----
 applets/notification_area/main.c              |  4 ++--
 applets/wncklet/showdesktop.c                 |  4 ++--
 applets/wncklet/window-list.c                 |  6 +++---
 applets/wncklet/window-menu.c                 |  4 ++--
 applets/wncklet/workspace-switcher.c          |  6 +++---
 libmate-panel-applet/mate-panel-applet.c      |  2 +-
 mate-panel/drawer.c                           |  6 +++---
 mate-panel/libpanel-util/panel-icon-chooser.c |  4 ++--
 mate-panel/panel-action-button.c              |  4 ++--
 mate-panel/panel-addto.c                      | 18 ++++++++----------
 mate-panel/panel-applet-frame.c               |  4 ++--
 mate-panel/panel-context-menu.c               |  2 +-
 mate-panel/panel-ditem-editor.c               | 14 +++++++-------
 mate-panel/panel-force-quit.c                 |  2 +-
 mate-panel/panel-menu-bar.c                   |  2 +-
 mate-panel/panel-menu-button.c                |  2 +-
 mate-panel/panel-recent.c                     |  2 +-
 mate-panel/panel-run-dialog.c                 |  4 ++--
 mate-panel/panel-stock-icons.c                |  6 +++---
 mate-panel/panel.c                            |  4 ++--
 22 files changed, 59 insertions(+), 61 deletions(-)

commit 7f99492c269f541c81e4f36742ecc3f0b4ebac04
Author: Victor Kareh <vkareh@vkareh.net>
Date:   Wed Dec 20 14:03:18 2017 -0500

    Support panel auto-scaling for HiDPI displays
    
            *Fix scaling of panel widgets, buttons, and the menu bar
            *Draw grab handles at the ends of the panel
            *Fix size of _almost_ all included applets
            *Fix panel snapping coordinates
            *Down-scale monitor coordinates to support multi-monitors
    
     Author:    Victor Kareh <vkareh@vkareh.net>
     Date:      Wed Dec 20 14:03:18 2017 -0500

 mate-panel/main.c             |  3 ---
 mate-panel/panel-run-dialog.c |  4 +++-
 mate-panel/panel-struts.c     | 11 ++++++-----
 mate-panel/panel-struts.h     |  3 ++-
 mate-panel/panel-toplevel.c   | 41 ++++++++++++++++++++++++++++++++---------
 mate-panel/panel-widget.c     | 18 ++++++++++++------
 6 files changed, 55 insertions(+), 25 deletions(-)

commit e8f52ab153125b06d0de4847274d29dc0ac951a6
Author: raveit65 <mate@raveit.de>
Date:   Wed Jan 24 19:37:51 2018 +0100

    release 1.19.5

 NEWS         | 22 ++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit c191c3e9e903c26f263def599325bed5c4b7d12c
Author: raveit65 <mate@raveit.de>
Date:   Wed Jan 24 19:33:19 2018 +0100

    sync with transifex

 po/af.po          | 148 +++++++++++++++---------------
 po/am.po          | 150 +++++++++++++++----------------
 po/ar.po          | 148 +++++++++++++++---------------
 po/as.po          | 148 +++++++++++++++---------------
 po/ast.po         | 148 +++++++++++++++---------------
 po/az.po          | 148 +++++++++++++++---------------
 po/be.po          | 148 +++++++++++++++---------------
 po/bg.po          | 144 ++++++++++++++---------------
 po/bn.po          | 148 +++++++++++++++---------------
 po/bn_IN.po       | 148 +++++++++++++++---------------
 po/br.po          | 148 +++++++++++++++---------------
 po/bs.po          | 148 +++++++++++++++---------------
 po/ca.po          | 162 ++++++++++++++++-----------------
 po/ca@valencia.po | 152 +++++++++++++++----------------
 po/cmn.po         | 148 +++++++++++++++---------------
 po/crh.po         | 148 +++++++++++++++---------------
 po/cs.po          | 151 +++++++++++++++----------------
 po/cy.po          | 148 +++++++++++++++---------------
 po/da.po          | 164 ++++++++++++++++-----------------
 po/de.po          | 152 +++++++++++++++----------------
 po/dz.po          | 148 +++++++++++++++---------------
 po/el.po          | 164 ++++++++++++++++-----------------
 po/en_AU.po       | 148 +++++++++++++++---------------
 po/en_CA.po       | 148 +++++++++++++++---------------
 po/en_GB.po       | 186 +++++++++++++++++++-------------------
 po/eo.po          | 148 +++++++++++++++---------------
 po/es.po          | 156 ++++++++++++++++----------------
 po/es_CO.po       | 144 ++++++++++++++---------------
 po/es_MX.po       | 144 ++++++++++++++---------------
 po/es_PR.po       | 144 ++++++++++++++---------------
 po/et.po          | 192 +++++++++++++++++++--------------------
 po/eu.po          | 148 +++++++++++++++---------------
 po/fa.po          | 148 +++++++++++++++---------------
 po/fi.po          | 150 +++++++++++++++----------------
 po/fr.po          | 148 +++++++++++++++---------------
 po/fr_CA.po       | 144 ++++++++++++++---------------
 po/frp.po         | 144 ++++++++++++++---------------
 po/fur.po         | 148 +++++++++++++++---------------
 po/fy.po          | 148 +++++++++++++++---------------
 po/ga.po          | 148 +++++++++++++++---------------
 po/gl.po          | 148 +++++++++++++++---------------
 po/gu.po          | 148 +++++++++++++++---------------
 po/ha.po          | 148 +++++++++++++++---------------
 po/he.po          | 148 +++++++++++++++---------------
 po/hi.po          | 148 +++++++++++++++---------------
 po/hr.po          | 148 +++++++++++++++---------------
 po/hu.po          | 161 ++++++++++++++++-----------------
 po/hy.po          | 148 +++++++++++++++---------------
 po/id.po          | 148 +++++++++++++++---------------
 po/ig.po          | 148 +++++++++++++++---------------
 po/is.po          | 148 +++++++++++++++---------------
 po/it.po          | 150 +++++++++++++++----------------
 po/ja.po          | 148 +++++++++++++++---------------
 po/jv.po          | 144 ++++++++++++++---------------
 po/ka.po          | 148 +++++++++++++++---------------
 po/kk.po          | 148 +++++++++++++++---------------
 po/kn.po          | 148 +++++++++++++++---------------
 po/ko.po          | 150 +++++++++++++++----------------
 po/ku.po          | 148 +++++++++++++++---------------
 po/ku_IQ.po       | 144 ++++++++++++++---------------
 po/ky.po          | 146 +++++++++++++++---------------
 po/la.po          | 144 ++++++++++++++---------------
 po/li.po          | 144 ++++++++++++++---------------
 po/lt.po          | 148 +++++++++++++++---------------
 po/lv.po          | 148 +++++++++++++++---------------
 po/mai.po         | 148 +++++++++++++++---------------
 po/mg.po          | 148 +++++++++++++++---------------
 po/mi.po          | 144 ++++++++++++++---------------
 po/mk.po          | 148 +++++++++++++++---------------
 po/ml.po          | 148 +++++++++++++++---------------
 po/mn.po          | 148 +++++++++++++++---------------
 po/mr.po          | 148 +++++++++++++++---------------
 po/ms.po          | 148 +++++++++++++++---------------
 po/nb.po          | 153 +++++++++++++++----------------
 po/nds.po         | 148 +++++++++++++++---------------
 po/ne.po          | 148 +++++++++++++++---------------
 po/nl.po          | 150 +++++++++++++++----------------
 po/nn.po          | 148 +++++++++++++++---------------
 po/nso.po         | 148 +++++++++++++++---------------
 po/oc.po          | 148 +++++++++++++++---------------
 po/or.po          | 148 +++++++++++++++---------------
 po/pa.po          | 148 +++++++++++++++---------------
 po/pl.po          | 152 +++++++++++++++----------------
 po/pms.po         | 144 ++++++++++++++---------------
 po/ps.po          | 148 +++++++++++++++---------------
 po/pt.po          | 148 +++++++++++++++---------------
 po/pt_BR.po       | 152 +++++++++++++++----------------
 po/ro.po          | 148 +++++++++++++++---------------
 po/ru.po          | 157 ++++++++++++++++----------------
 po/rw.po          | 144 ++++++++++++++---------------
 po/si.po          | 148 +++++++++++++++---------------
 po/sk.po          | 152 +++++++++++++++----------------
 po/sl.po          | 148 +++++++++++++++---------------
 po/sq.po          | 148 +++++++++++++++---------------
 po/sr.po          | 148 +++++++++++++++---------------
 po/sr@latin.po    | 148 +++++++++++++++---------------
 po/sv.po          | 265 +++++++++++++++++++++++++++---------------------------
 po/ta.po          | 148 +++++++++++++++---------------
 po/te.po          | 148 +++++++++++++++---------------
 po/th.po          | 148 +++++++++++++++---------------
 po/tr.po          | 148 +++++++++++++++---------------
 po/ug.po          | 148 +++++++++++++++---------------
 po/uk.po          | 148 +++++++++++++++---------------
 po/ur.po          | 148 +++++++++++++++---------------
 po/uz.po          | 148 +++++++++++++++---------------
 po/vi.po          | 148 +++++++++++++++---------------
 po/wa.po          | 144 ++++++++++++++---------------
 po/xh.po          | 148 +++++++++++++++---------------
 po/yi.po          | 144 ++++++++++++++---------------
 po/yo.po          | 148 +++++++++++++++---------------
 po/zh_CN.po       | 150 +++++++++++++++----------------
 po/zh_HK.po       | 148 +++++++++++++++---------------
 po/zh_TW.po       | 150 +++++++++++++++----------------
 po/zu.po          | 148 +++++++++++++++---------------
 114 files changed, 8566 insertions(+), 8561 deletions(-)

commit 66ac0a41b2acd5799476c76f551d51f1f838b4eb
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 22 11:32:06 2018 +0300

    bump minimum required libwnck version to 3.4.6
    
    and drop WNCK_CHECK_VERSION usage

 applets/wncklet/window-list.c | 7 +------
 configure.ac                  | 2 +-
 2 files changed, 2 insertions(+), 7 deletions(-)

commit dfd529dfae32edfb9949e6afb89c2eb631893ea3
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 22 16:14:35 2018 +0300

    status-notifier: don't crash if tooltip has wrong type
    
    fixes the second issue mentioned in https://github.com/mate-desktop/mate-panel/issues/686
    
    ported from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=585c6727a807f0160e79f42a1f17350cc6df0d78

 applets/notification_area/status-notifier/sn-item-v0.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 74c8d775840c806a84784d38560d85ec4d87fc81
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 22 16:13:16 2018 +0300

    status-notifier: don't crash if menu layout has wrong type
    
    fixes https://github.com/mate-desktop/mate-panel/issues/686
    
    ported from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=a08f238147660b3d70e5eebd8d24707711424719

 applets/notification_area/status-notifier/sn-dbus-menu.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit fd12de42dc5614b94ae330eee307fb32a35bd335
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jan 17 16:37:14 2018 -0500

    Fix rendering of radio buttons in status notifier
    
    *Ensure only the actually selected radio button is shown as checked, not all the radio buttons
    *Note that this works so long as each menu created by a single indicator creates no more than one groups of radio buttons, the usual case
    *Also  set ATK_ROLE_RADIO_MENU_ITEM for any radio menu items created by an indicator as this code otherwise would cause Orca to call them check menu items

 applets/notification_area/status-notifier/sn-dbus-menu-item.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 3889e1727159429123f872d4f3a2cf8c7ddbb971
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jan 19 12:49:13 2018 -0500

    panel-run-dialog: fix segfault when program list is enabled
    
    Fix https://github.com/mate-desktop/mate-panel/issues/706
    *patch by https://github.com/muesli4

 mate-panel/panel-run-dialog.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit dd14fcb2857f1376b5bf8f55d62324f7aaa4606f
Author: Pablo Barciela <scow@riseup.net>
Date:   Mon Jan 15 00:49:49 2018 +0100

    get focus when displaying "applet broken" dialog

 mate-panel/panel-applet-frame.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 9d69c70a56c6dd5e73ac909862f90c480e1c4532
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Fri Jan 12 20:17:52 2018 +0100

    Update workspace switcher properties dialog
    
    Removed deprecated ui elements to make it fully compatible with GTK+ 3
    and additionally made the dialog resizeable.

 applets/wncklet/workspace-switcher.ui | 596 ++++++++++++++++++----------------
 1 file changed, 316 insertions(+), 280 deletions(-)

commit 5b1061937c746c70a23d24e9a038465452b18bf8
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 9 22:13:45 2018 +0300

    update copyright year to 2018

 applets/clock/clock.c                | 2 +-
 applets/fish/fish.c                  | 2 +-
 applets/notification_area/main.c     | 2 +-
 applets/wncklet/showdesktop.c        | 2 +-
 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/window-menu.c        | 2 +-
 applets/wncklet/workspace-switcher.c | 2 +-
 mate-panel/panel-context-menu.c      | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

commit 7f711b89d0db04c12db2286b5d18892be45f26a5
Author: monsta <monsta@inbox.ru>
Date:   Fri Jan 5 01:15:53 2018 +0300

    simplify some code

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 180ba4ae21e8f5bc7d67f4902d0cda6ff053f4b2
Author: monsta <monsta@inbox.ru>
Date:   Thu Jan 4 19:20:07 2018 +0300

    rework the process of cancelling the background change operation
    
    don't mess with additional references to a GCancellable, instead
    keep just a const pointer to the internal operation data and use
    it as a key when it's needed to cancel the operation.
    
    fixes https://github.com/mate-desktop/mate-panel/issues/214
    fixes https://github.com/mate-desktop/mate-panel/issues/431

 .../panel-applet-container.c                       | 27 +++++++++++++++++-----
 .../panel-applet-container.h                       |  7 ++++--
 .../panel-applet-frame-dbus.c                      | 26 ++++++++++-----------
 3 files changed, 38 insertions(+), 22 deletions(-)

commit 45a11a76d63de53a556c1f112e7db90e2d8bbf39
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Dec 28 20:22:18 2017 -0500

    status-notifier: properly handle the NULL case for items
    patch by https://github.com/supermaz

 applets/notification_area/status-notifier/sn-host-v0.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit e5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Dec 27 14:09:24 2017 -0500

    status-notifier: handle wrong-size icons called by path
    Ensure icons called by filename and path instead of icon-name get scaled to match other tray icons

 applets/notification_area/status-notifier/sn-item-v0.c | 4 ++++
 1 file changed, 4 insertions(+)

commit a596771e28d67bb83656ee8a1c76341ce03b4640
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Dec 26 14:41:24 2017 -0500

    status-notifier: load icons specified by path
    Fix for https://github.com/mate-desktop/mate-panel/issues/695 and similar failures to load icons when the application calls for a path and not an icon name

 applets/notification_area/status-notifier/sn-item-v0.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 4a4552148355790a35d5e9dd148778bd588d11fd
Author: Pablo Barciela <scow@riseup.net>
Date:   Wed Dec 27 01:26:16 2017 +0100

    Fix build warning: ‘toplevel_configure_event’ defined but not used

 mate-panel/panel-widget.c | 4 ----
 1 file changed, 4 deletions(-)

commit 411d3079fd50b3bca9967364b645e9cd4e0d1451
Author: Pablo Barciela <scow@riseup.net>
Date:   Wed Dec 27 02:28:43 2017 +0100

    Fix build warning: "GLIB_VERSION_MIN_REQUIRED" redefined

 libmate-panel-applet/panel-plug.c | 1 -
 1 file changed, 1 deletion(-)

commit 2d2009c19d0d8b6a4e2eeb3a62144be747e93d94
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Dec 24 20:49:06 2017 -0500

    status-notifier: fix failure to show icon for missing icon
    
    Fix 1px wide invisible icon in cases such as
    https://github.com/mate-desktop/mate-panel/issues/695

 applets/notification_area/status-notifier/sn-item-v0.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit a63f21ae4e7f268fc7c9714829f4a83e1a76a93b
Author: Allan Nordhøy <epost@anotheragency.no>
Date:   Fri Dec 22 10:02:45 2017 +0100

    Spelling: apps, … spaced comma

 mate-panel/panel-context-menu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 28dad31548e550b49b23c52859b9de77370bb83f
Author: raveit65 <mate@raveit.de>
Date:   Sun Dec 24 17:49:03 2017 +0100

    release 1.19.4

 NEWS         | 27 +++++++++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 28 insertions(+), 1 deletion(-)

commit c156e1e385e53d21b2bab52a5ab378b724324e9e
Author: raveit65 <mate@raveit.de>
Date:   Sun Dec 24 17:37:36 2017 +0100

    sync with transifex

 po/LINGUAS        |    1 +
 po/af.po          |  351 ++++---
 po/am.po          |  351 ++++---
 po/ar.po          |  351 ++++---
 po/as.po          |  351 ++++---
 po/ast.po         |  351 ++++---
 po/az.po          |  351 ++++---
 po/be.po          |  351 ++++---
 po/bg.po          |  351 ++++---
 po/bn.po          |  351 ++++---
 po/bn_IN.po       |  351 ++++---
 po/br.po          |  351 ++++---
 po/bs.po          |  351 ++++---
 po/ca.po          |  363 +++----
 po/ca@valencia.po |  450 +++++----
 po/cmn.po         |  351 ++++---
 po/crh.po         |  351 ++++---
 po/cs.po          |  357 ++++---
 po/cy.po          |  351 ++++---
 po/da.po          |  353 ++++---
 po/de.po          |  353 ++++---
 po/dz.po          |  351 ++++---
 po/el.po          |  353 ++++---
 po/en_AU.po       |  351 ++++---
 po/en_CA.po       |  351 ++++---
 po/en_GB.po       |  351 ++++---
 po/eo.po          |  351 ++++---
 po/es.po          |  364 +++----
 po/es_CO.po       |  351 ++++---
 po/es_MX.po       |  351 ++++---
 po/es_PR.po       |  351 ++++---
 po/et.po          |  351 ++++---
 po/eu.po          |  351 ++++---
 po/fa.po          |  351 ++++---
 po/fi.po          |  356 ++++---
 po/fr.po          |  356 ++++---
 po/fr_CA.po       |  351 ++++---
 po/frp.po         |  351 ++++---
 po/fur.po         |  351 ++++---
 po/fy.po          |  351 ++++---
 po/ga.po          |  351 ++++---
 po/gl.po          |  351 ++++---
 po/gu.po          |  351 ++++---
 po/ha.po          |  351 ++++---
 po/he.po          |  351 ++++---
 po/hi.po          |  351 ++++---
 po/hr.po          |  351 ++++---
 po/hu.po          |  355 ++++---
 po/hy.po          |  351 ++++---
 po/id.po          |  351 ++++---
 po/ig.po          |  351 ++++---
 po/is.po          |  351 ++++---
 po/it.po          |  351 ++++---
 po/ja.po          |  351 ++++---
 po/jv.po          |  351 ++++---
 po/ka.po          |  351 ++++---
 po/kk.po          |  353 ++++---
 po/kn.po          |  351 ++++---
 po/ko.po          |  351 ++++---
 po/ku.po          |  351 ++++---
 po/ku_IQ.po       |  351 ++++---
 po/ky.po          |  351 ++++---
 po/la.po          | 2874 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/li.po          |  351 ++++---
 po/lt.po          |  353 ++++---
 po/lv.po          |  351 ++++---
 po/mai.po         |  351 ++++---
 po/mg.po          |  351 ++++---
 po/mi.po          |  351 ++++---
 po/mk.po          |  351 ++++---
 po/ml.po          |  351 ++++---
 po/mn.po          |  351 ++++---
 po/mr.po          |  351 ++++---
 po/ms.po          |  351 ++++---
 po/nb.po          |  351 ++++---
 po/nds.po         |  351 ++++---
 po/ne.po          |  354 ++++---
 po/nl.po          |  353 ++++---
 po/nn.po          |  351 ++++---
 po/nso.po         |  351 ++++---
 po/oc.po          |  351 ++++---
 po/or.po          |  351 ++++---
 po/pa.po          |  351 ++++---
 po/pl.po          |  353 ++++---
 po/pms.po         |  351 ++++---
 po/ps.po          |  351 ++++---
 po/pt.po          |  351 ++++---
 po/pt_BR.po       |  353 ++++---
 po/ro.po          |  351 ++++---
 po/ru.po          |  353 ++++---
 po/rw.po          |  351 ++++---
 po/si.po          |  351 ++++---
 po/sk.po          |  354 ++++---
 po/sl.po          |  351 ++++---
 po/sq.po          |  351 ++++---
 po/sr.po          |  353 ++++---
 po/sr@latin.po    |  351 ++++---
 po/sv.po          |  351 ++++---
 po/ta.po          |  351 ++++---
 po/te.po          |  351 ++++---
 po/th.po          |  351 ++++---
 po/tr.po          |  353 ++++---
 po/ug.po          |  351 ++++---
 po/uk.po          |  353 ++++---
 po/ur.po          |  351 ++++---
 po/uz.po          |  351 ++++---
 po/vi.po          |  351 ++++---
 po/wa.po          |  351 ++++---
 po/xh.po          |  351 ++++---
 po/yi.po          |  351 ++++---
 po/yo.po          |  351 ++++---
 po/zh_CN.po       |  351 ++++---
 po/zh_HK.po       |  351 ++++---
 po/zh_TW.po       |  351 ++++---
 po/zu.po          |  351 ++++---
 115 files changed, 24322 insertions(+), 18390 deletions(-)

commit 10b38211e032738593dfe71176289c275956b476
Author: Pablo Barciela <scow@riseup.net>
Date:   Thu Dec 7 01:37:08 2017 +0100

    WidthOfScreen and HeightOfScreen implementation
    
    This commit reverts:
    
    https://github.com/mate-desktop/mate-panel/commit/7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e
    
    And it applies an alternative to fix the deprecated functions:
    
    gdk_screen_get_width
    gdk_screen_get_height

 applets/clock/clock.c                            |  5 ++---
 applets/fish/fish.c                              |  5 +++--
 applets/notification_area/system-tray/fixedtip.c |  5 +++--
 libmate-panel-applet/mate-panel-applet.c         | 13 ++++---------
 mate-panel/applet.c                              | 13 ++++---------
 mate-panel/panel-addto.c                         |  6 ++----
 mate-panel/panel-force-quit.c                    |  4 ++--
 mate-panel/panel-struts.c                        |  5 +++--
 mate-panel/panel-toplevel.c                      | 10 +++-------
 9 files changed, 26 insertions(+), 40 deletions(-)

commit 54a0b4dcb0b2462eea51cdbcbe8306f25e8e4cea
Author: Björn Weber <bjoern.weber94@t-online.de>
Date:   Wed Nov 29 17:44:13 2017 +0100

    panel-toplevel: Remove pointer boundary check in panel_toplevel_queue_auto_hide()

 mate-panel/panel-toplevel.c | 1 -
 1 file changed, 1 deletion(-)

commit b58f2df5b5b5ff519691491378274329f5ac1f5e
Author: monsta <monsta@inbox.ru>
Date:   Fri Nov 24 14:52:25 2017 +0300

    remove ancient gnome-panel leftovers
    
    should've done it long ago
    
    see https://git.gnome.org/browse/gnome-panel/commit/?id=e57b3afd9255671789ea6c1b6136bbad82573cdc

 mate-panel/panel-enums-gsettings.h | 3 ---
 1 file changed, 3 deletions(-)

commit f95539a051b7a83d5812563d17e50313c7f1f3d2
Author: 张雯 <zhang.wen2@zte.com.cn>
Date:   Thu Nov 23 15:55:30 2017 +0800

    Keep the right icons on bottom still displaying right when the resolution change larger

 mate-panel/panel-toplevel.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit 2b17f4f461cff056ab0f4687a9ac673a16933f7c
Author: monsta <monsta@inbox.ru>
Date:   Tue Nov 14 12:21:23 2017 +0300

    wncklet: disconnect signals by data on destroy
    
    do the same as in 4fbe8e24933d367316441166ca448cdb03c6a35f
    
    this optimizes 9f43dd5c7c37b84960d06a98a4738ee40d8bfd50

 applets/wncklet/window-list.c        | 17 ++---------------
 applets/wncklet/workspace-switcher.c | 14 ++------------
 2 files changed, 4 insertions(+), 27 deletions(-)

commit f751ec74a3184fd60061ecff1bfc9992605f57b4
Author: monsta <monsta@inbox.ru>
Date:   Tue Nov 14 11:26:19 2017 +0300

    clock: disconnect one more signal handler on destroy

 applets/clock/clock.c | 3 +++
 1 file changed, 3 insertions(+)

commit 78d0e5f89c82c42448a1294d32fdd98227caec50
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Nov 11 14:35:12 2017 -0500

    panel-applet-frame-dbus-c: comment out newly unused variable

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit f7f9625da0417471dba802dd465ca1fefdc62c33
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Nov 9 21:45:30 2017 -0500

    Clock: don't check variables that can never be < 0 for < 0
    check them for = 0 instead. Found by cppcheck
    http://man7.org/linux/man-pages/man3/strftime.3.html
    This always returns 0 or a positive number of bytes

 applets/clock/clock-location-tile.c |  2 +-
 applets/clock/clock.c               | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

commit 64cdec0796d325d07ffc9ec4b56110b621b2947b
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Nov 9 21:25:34 2017 -0500

    panel-applet-frame-dbus.c: comment out never used code block
    found by cppcheck

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 2 ++
 1 file changed, 2 insertions(+)

commit 3c93a80aa292f41dca3e358a5ecebb0331ee96f9
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Nov 9 21:20:15 2017 -0500

    panel-toplevel: remove duplicate break statement
    found by cppcheck

 mate-panel/panel-toplevel.c | 1 -
 1 file changed, 1 deletion(-)

commit a31d5fa2a0749d8a94f1be6c1d005a174f3278d8
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Nov 9 21:17:54 2017 -0500

    status-notifier: remove duplicate check found by cppcheck

 applets/notification_area/status-notifier/sn-item.c | 2 --
 1 file changed, 2 deletions(-)

commit 2d29da5baaed6598d30bfc0d8d1c3f3490064004
Author: raveit65 <mate@raveit.de>
Date:   Tue Nov 7 14:10:17 2017 +0100

    sync with transifex

 po/af.po          |  2 +-
 po/am.po          |  2 +-
 po/ar.po          |  2 +-
 po/as.po          |  2 +-
 po/ast.po         |  2 +-
 po/az.po          |  2 +-
 po/be.po          |  2 +-
 po/bg.po          |  2 +-
 po/bn.po          |  2 +-
 po/bn_IN.po       |  2 +-
 po/br.po          |  2 +-
 po/bs.po          | 64 +++++++++++++++++++++++++++----------------------------
 po/ca.po          |  2 +-
 po/ca@valencia.po |  4 ++--
 po/cmn.po         |  2 +-
 po/crh.po         |  2 +-
 po/cs.po          |  2 +-
 po/cy.po          |  2 +-
 po/da.po          |  2 +-
 po/de.po          |  2 +-
 po/dz.po          |  2 +-
 po/el.po          |  2 +-
 po/en_AU.po       |  2 +-
 po/en_CA.po       |  2 +-
 po/en_GB.po       |  2 +-
 po/eo.po          |  2 +-
 po/es.po          |  2 +-
 po/es_CO.po       |  2 +-
 po/es_MX.po       |  2 +-
 po/es_PR.po       |  2 +-
 po/et.po          |  2 +-
 po/eu.po          |  2 +-
 po/fa.po          |  2 +-
 po/fi.po          |  2 +-
 po/fr.po          |  2 +-
 po/fr_CA.po       |  2 +-
 po/frp.po         |  2 +-
 po/fur.po         |  2 +-
 po/fy.po          |  2 +-
 po/ga.po          |  2 +-
 po/gl.po          |  2 +-
 po/gu.po          |  2 +-
 po/ha.po          |  2 +-
 po/he.po          |  2 +-
 po/hi.po          |  2 +-
 po/hr.po          |  2 +-
 po/hu.po          |  2 +-
 po/hy.po          |  2 +-
 po/id.po          |  2 +-
 po/ig.po          |  2 +-
 po/is.po          |  2 +-
 po/it.po          |  4 ++--
 po/ja.po          |  2 +-
 po/jv.po          |  2 +-
 po/ka.po          |  2 +-
 po/kk.po          |  2 +-
 po/kn.po          |  2 +-
 po/ko.po          |  2 +-
 po/ku.po          |  2 +-
 po/ku_IQ.po       |  2 +-
 po/ky.po          |  2 +-
 po/li.po          |  2 +-
 po/lt.po          |  2 +-
 po/lv.po          |  2 +-
 po/mai.po         |  2 +-
 po/mg.po          |  2 +-
 po/mi.po          |  2 +-
 po/mk.po          |  2 +-
 po/ml.po          |  2 +-
 po/mn.po          |  2 +-
 po/mr.po          |  2 +-
 po/ms.po          |  2 +-
 po/nb.po          |  2 +-
 po/nds.po         |  2 +-
 po/ne.po          |  2 +-
 po/nl.po          |  2 +-
 po/nn.po          |  2 +-
 po/nso.po         |  2 +-
 po/oc.po          |  2 +-
 po/or.po          |  2 +-
 po/pa.po          |  2 +-
 po/pl.po          |  9 ++++----
 po/pms.po         |  2 +-
 po/ps.po          |  2 +-
 po/pt.po          |  2 +-
 po/pt_BR.po       |  2 +-
 po/ro.po          |  2 +-
 po/ru.po          |  6 +++---
 po/rw.po          |  2 +-
 po/si.po          |  2 +-
 po/sk.po          | 20 ++++++++---------
 po/sl.po          |  2 +-
 po/sq.po          |  2 +-
 po/sr.po          |  2 +-
 po/sr@latin.po    |  4 ++--
 po/sv.po          |  2 +-
 po/ta.po          |  2 +-
 po/te.po          |  2 +-
 po/th.po          |  2 +-
 po/tr.po          |  2 +-
 po/ug.po          |  2 +-
 po/uk.po          |  4 ++--
 po/ur.po          |  2 +-
 po/uz.po          |  2 +-
 po/vi.po          |  2 +-
 po/wa.po          |  2 +-
 po/xh.po          |  2 +-
 po/yi.po          |  2 +-
 po/yo.po          |  2 +-
 po/zh_CN.po       |  2 +-
 po/zh_HK.po       |  2 +-
 po/zh_TW.po       |  2 +-
 po/zu.po          |  2 +-
 113 files changed, 163 insertions(+), 162 deletions(-)

commit fceb9d3cac0cea6c012803ec701d482602f53170
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Oct 12 01:25:56 2017 -0400

    status-notifier: hide mate-polkit icon if passive
    This needs to be special cased, and requires a change in mate-polkit to work

 applets/notification_area/status-notifier/sn-item-v0.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 6c6b662131c17f6e19835c32151ad17068118f11
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Oct 16 00:08:41 2017 -0400

    Apply position fix on popup to GTK 3.20 and earlier

 applets/notification_area/status-notifier/sn-dbus-menu.c | 6 ++++--
 applets/notification_area/status-notifier/sn-item.c      | 4 ++++
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 42c22dccba296dae429a2bd60adfcba615308932
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Oct 14 00:15:32 2017 -0400

    GTK 3.22 status notifier: reposition menu when size changes
    Also catch a missed instance of needing to reposition. This stops most cases of a bottom panel menu changing size and ending up too low.

 applets/notification_area/status-notifier/sn-dbus-menu.c | 2 ++
 applets/notification_area/status-notifier/sn-item.c      | 2 ++
 2 files changed, 4 insertions(+)

commit ae740f3ffe10aff6505921f8b78a5ff90a94ab33
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Oct 12 21:39:04 2017 -0400

    GTK 3.22/status-notifer Fix menu position if size changed since last shown
    Mostly fixes serious mispositioning of network-manager applet (indicator mode) menus when connections were changed on last showing of menu and applet is on bottom panel and especially bottom right

 applets/notification_area/status-notifier/sn-item.c | 2 ++
 1 file changed, 2 insertions(+)

commit f4e875fe0ee9ae52b78e3c62e1b375615284c0d9
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Oct 5 01:27:36 2017 -0400

    Stop panel collapse left on adding certain out-of-process applets
    
    Stop panel from collapsing left on adding fish, moving window-list(or other wncklet applet) on otherwise empty panel
    Fixes https://github.com/mate-desktop/mate-panel/issues/661

 mate-panel/panel-widget.c | 1 +
 1 file changed, 1 insertion(+)

commit cfb9e30e4137274ff0ae7de154ce543b9f67519c
Author: monsta <monsta@inbox.ru>
Date:   Tue Sep 26 17:51:47 2017 +0300

    make file/folder launchers work again
    
    fixes https://github.com/mate-desktop/mate-panel/issues/590
    
    reverts a part of 7ee450758e4f2bee13aa8ff967a5795a6dcdc91f

 mate-panel/launcher.c                   | 206 +++++++++++++++++++-------------
 mate-panel/launcher.h                   |   5 +-
 mate-panel/libpanel-util/panel-launch.c |  10 +-
 mate-panel/libpanel-util/panel-launch.h |   2 +-
 mate-panel/mate-desktop-item-edit.c     |   9 +-
 mate-panel/panel-ditem-editor.c         |   8 +-
 mate-panel/panel-ditem-editor.h         |   2 +
 7 files changed, 149 insertions(+), 93 deletions(-)

commit c13f02a05b80d240575d6ea58362c539cd9c00c2
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Sep 28 23:18:37 2017 -0400

    panel-context-menu: Add confirmation dialog to panel reset option

 mate-panel/panel-context-menu.c | 51 +++++++++++++++++++++++++++++++++++++++--
 1 file changed, 49 insertions(+), 2 deletions(-)

commit 8a158fe4fba20e89a055e304357db68111a45422
Author: ikem-krueger <ikem.krueger@googlemail.com>
Date:   Tue Sep 5 16:28:53 2017 +0200

    Add option to context menu to reset the panel
    
    It can happen that a panel configuration is so messed up, that only a reset helps.
    
    Only a few users know how to do that.
    
    This patch adds a context menu entry "Reset Panel", which enables a user to do that.
    
    Internally the function behind "mate-panel --reset" is called.

 mate-panel/panel-context-menu.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 2dbcb02ab02f99d423f99aea92f3e234475f3bb0
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Aug 22 23:33:39 2017 -0400

    clock:disconnect signal handlers on destroy
    Don't just check for the clock's existance and return if it has been destroyed, disconnect them entirely when the clock is destroyed

 applets/clock/clock.c | 25 +++----------------------
 1 file changed, 3 insertions(+), 22 deletions(-)

commit 4fbe8e24933d367316441166ca448cdb03c6a35f
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 20 17:35:56 2017 -0400

    Fix crashes on moving/removing applets with glib 2.53.4 or later
    
    *On destroying applet disconnect signals for functions that otherwise segfaults with glib 2.53.4 or later.
    *Fish: it's not always enough for a function to return immediately if applet destroyed anymore
    *panel-action-button: suppress a warning

 applets/fish/fish.c              | 10 ++++------
 mate-panel/applet.c              |  2 ++
 mate-panel/panel-action-button.c |  3 +++
 3 files changed, 9 insertions(+), 6 deletions(-)

commit 57d3c8f702887516504c54c398d40e7343e93138
Author: ZenWalker <scow@riseup.net>
Date:   Mon Aug 14 03:29:29 2017 +0200

    gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:
    
    avoid deprecated:
    
    gdk_screen_get_monitor_geometry
    gdk_screen_get_monitor_at_window
    gdk_screen_get_monitor_at_point

 applets/clock/clock.c                               |  4 ++++
 applets/notification_area/status-notifier/sn-item.c | 11 +++++++++++
 mate-panel/panel-multiscreen.c                      |  4 ++++
 mate-panel/xstuff.c                                 | 12 ++++++++++++
 4 files changed, 31 insertions(+)

commit 4a25da504204639cee268d0fac1516f03d2fe6bb
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Wed Aug 16 02:30:35 2017 +0200

    Add a gsettings key to enable/disable SNI Support (#600)

 applets/notification_area/main.c   | 19 +++++++++++++------
 data/org.mate.panel.gschema.xml.in |  5 +++++
 2 files changed, 18 insertions(+), 6 deletions(-)

commit 5094a9b27c8430079199afdcc2f5a32c96089349
Author: raveit65 <mate@raveit.de>
Date:   Mon Aug 14 09:03:30 2017 +0200

    release 1.19.3

 NEWS | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

commit 71fb13a8656568fd47737c0befc027451eb4ddba
Author: raveit65 <mate@raveit.de>
Date:   Mon Aug 14 08:55:00 2017 +0200

    sync with transifex

 po/es.po |  4 ++--
 po/fi.po | 13 +++++++------
 po/hu.po |  4 ++--
 po/it.po | 14 +++++++-------
 po/sv.po |  2 +-
 5 files changed, 19 insertions(+), 18 deletions(-)

commit 9f43dd5c7c37b84960d06a98a4738ee40d8bfd50
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jul 26 01:56:46 2017 -0400

    wncklet: stop segfaults, warnings on removing in-process switcher, window-list
    Fixes window list, workspace switcher. Window menu and show desktop no warnings or segfaults on removal when built in process

 applets/wncklet/window-list.c        | 39 +++++++++++++++++++++++++++---------
 applets/wncklet/workspace-switcher.c | 32 ++++++++++++++++++++---------
 2 files changed, 51 insertions(+), 20 deletions(-)

commit 4d347a9afca23731a4751f8761b1974e4f1ef16f
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Aug 11 14:46:32 2017 -0400

    fish: fix adding back after removal
    These two "changed" functions get triggered by clearing gsettings values on exit, make them return immediately when this happens. Don't return from dispose on repeat call or applet can't be added back

 applets/fish/fish.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 3394aaf65aca94ed93bba19f5fb4b56a3d33b139
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Aug 11 01:05:06 2017 -0400

    Fish: stop all warnings on removing when built in-process

 applets/fish/fish.c | 3 +++
 1 file changed, 3 insertions(+)

commit a90b7f0e96fbc3e1fdc00dd02d69e00a867836a2
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Aug 4 02:43:59 2017 -0400

    Clock: fix removal warnings when in-process applet removed

 applets/clock/clock.c | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

commit 177273085cda821163bcbfd67693ec0f19f94ff7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jul 26 01:41:23 2017 -0400

    clock: stop segfault on removing applet when built in-process
    
    This works, but does leave part of it in RAM until the panel is restarted.
    No change in out-of-process builds

 applets/clock/clock.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 1e1510a34b23fe876b7081af997b0d7446acde78
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Jul 22 02:02:05 2017 -0400

    libmate-panel-applet: fix typos in id->factory_id rename

 libmate-panel-applet/mate-panel-applet.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5c40325affbbfc73ec4f07f560fe4f8633a4a827
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Jul 22 01:43:19 2017 -0400

    libmate-panel-applet: Only declare _panel_applet_shlib_factory() when needed
    Stops segfault on adding, removing, adding fish again when built in-process.
    Based on https://github.com/GNOME/gnome-panel/commit/66602bab12f55e09b2205b493c7e0e5e9c560911
    "This function only makes sense when PANEL_APPLET_IN_PROCESS_FACTORY is
    used."

 libmate-panel-applet/mate-panel-applet.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 080ac0dad0198ec3be067e5f05300caa48054b51
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Jul 22 01:15:36 2017 -0400

    libmate-panel-applet: fix error in unregistering dbus object
    
    One portion of https://github.com/GNOME/gnome-panel/commit/0c3844c0e5f1bee5885d2c7aeaa49763e6708f6d got left out

 libmate-panel-applet/mate-panel-applet-factory.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 3ff25047ce9cb79655a3fd7831b9bf402dcfa194
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jul 19 17:01:16 2017 -0400

    libmate-panel-applet: fix build warning
    This is a dummy variable used only to accomodate existing applets

 libmate-panel-applet/mate-panel-applet.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit e3ba085d35114af66131222f687fdf654cc71fe7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jul 18 14:59:13 2017 -0400

    libmate-panel-applet: fix introspection

 libmate-panel-applet/mate-panel-applet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9ed5f0a3dc01abff7f14b8a6f70589c555f7a11e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jul 18 14:54:35 2017 -0400

    libmate-panel-applet: unown bus name and unregister dbus object
    Fix for crashes on removing applets similar to
    https://bugzilla.gnome.org/show_bug.cgi?id=692610

 libmate-panel-applet/mate-panel-applet-factory.c | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit da61744ebf10b2517672449e8a8c2eb03e1f3879
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jul 18 02:03:02 2017 -0400

    libmate-panel-applet GTK 3.14/3.16: fix custom bg w alpha
    Draw the background only on out of process applets. This prevents double-draw of bg w alpha value on in-process applets with GTK 3.14/3/16
    Also Fix indent

 libmate-panel-applet/mate-panel-applet-factory.c |  4 ++--
 libmate-panel-applet/mate-panel-applet.c         | 20 ++++++++++++--------
 2 files changed, 14 insertions(+), 10 deletions(-)

commit 94d8d911c873fce175b808e64addc89823252ffb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jul 17 15:45:38 2017 -0400

    libmate-panel-applet: include dummy variable in factory for certian applets
    
    Otherwise, some applets such as disk mounter, hardware monitor, cpufreq won't start.
    * Fixes all but invest, note that cpufreq needs to be rebuilt against this for the menu to work
    
    * Also  fix two new build warnings

 libmate-panel-applet/mate-panel-applet.c | 6 ++++--
 libmate-panel-applet/mate-panel-applet.h | 7 ++++---
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 50adc8501aa740b2bbcde50ce0adc780e79536aa
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jul 17 02:01:56 2017 -0400

    libmate-panel-applet: fix bg rendering for in-process applets
    Note that at least some in-process applets will pick up the MatePanelAppletFrameDBus styling, so drag handles should be themed with the MatePanelAppletFrameDBus>MatePanelAppletFrameDBus selector instead

 libmate-panel-applet/mate-panel-applet.c | 123 +++++++++++++------------------
 1 file changed, 52 insertions(+), 71 deletions(-)

commit d0640b2cfc454020d98a8469621989e48ed56d0e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Jul 15 01:56:02 2017 -0400

    libpanel-applet/panel-applet.h: Rename id to factory_id for factory

 libmate-panel-applet/mate-panel-applet.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 401faa0e87a8769607b979ac464be8c0fc832ff7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 17:18:59 2017 -0400

    limatepanel-applet: add panel-applet-private.h
    
        ... and move private functions from factory to this file. Later
        we will have at least one more private function.
    
    Based on https://github.com/GNOME/gnome-panel/commit/c04da8c76ee6f16af44faca2b247df71e98b0a4b
    plus one more change as it was added out of order

 libmate-panel-applet/Makefile.am                 |  3 +-
 libmate-panel-applet/mate-panel-applet-factory.c |  1 +
 libmate-panel-applet/mate-panel-applet-factory.h |  7 -----
 libmate-panel-applet/mate-panel-applet.c         |  1 +
 libmate-panel-applet/panel-applet-private.h      | 37 ++++++++++++++++++++++++
 5 files changed, 41 insertions(+), 8 deletions(-)

commit 6bcad424c6efaf2b37f1810f52ab9ffd24377cd8
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 15:38:31 2017 -0400

    don't use GtkPlug/GtkSocket for in process applets
    
    1. This will allow panel to exit/stop without crashing when using
    in process applets. It was crashing because of following assert:
    g_assert (widget->priv->verifying_invariants_count > 0);
    
    2. In process applet will not have extra background. Transparency
    should now work as expected. This fixes redrawing of in-process
    applet backgrounds with GTK 3.22
    
    based on   https://github.com/GNOME/gnome-panel/commit/df4ec78272624660e1e01b7382dac3e1f83cfc4a

 libmate-panel-applet/mate-panel-applet.c           | 29 +++++++++++++---
 .../panel-applet-container.c                       | 39 ++++++++++++++++++----
 2 files changed, 57 insertions(+), 11 deletions(-)

commit 2f5fb35954021ba1fbd71aa3c6304394d2d67bdd
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 15:25:37 2017 -0400

    make it possible to get applet widget
    
    We will use this to get applet widget from factory. This will
    allow to bypass GtkPlug/GtkSocket.
    
    Based on https://github.com/GNOME/gnome-panel/commit/408bab094d1fad471b342548dabc58410a3dc327

 libmate-panel-applet/mate-panel-applet.c           |  7 ++++++
 .../panel-applets-manager-dbus.c                   | 29 ++++++++++++++++++++++
 mate-panel/panel-applets-manager.c                 | 20 +++++++++++++++
 mate-panel/panel-applets-manager.h                 |  7 ++++++
 4 files changed, 63 insertions(+)

commit 788cde808151c8b4f06ee343f1e7006341c2d0ee
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 14:44:34 2017 -0400

    libpanel-applet: add panel_applet_factory_get_applet_widget
    This function will be used to get applet widget from factory.
    
    Based on https://github.com/GNOME/gnome-panel/commit/8e1f7ea9f13533ce448cbc485d766fed01029be5

 libmate-panel-applet/mate-panel-applet-factory.c | 19 +++++++++++++++++++
 libmate-panel-applet/mate-panel-applet-factory.h |  2 ++
 2 files changed, 21 insertions(+)

commit 72d3549c4dbbe6e7373d74550a2f6d2b2f0690a9
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 14:38:29 2017 -0400

    libpanel-applet: return process type and applet uid
    
    Return applet process type and generated uid from factory. Process
    type will be needed to know if we should create GtkSocket, but uid
    will be used to get applet widget.

 libmate-panel-applet/mate-panel-applet-factory.c             | 12 ++++++++++--
 .../libmate-panel-applet-private/panel-applet-container.c    | 11 +++++++++--
 2 files changed, 19 insertions(+), 4 deletions(-)

commit b5843971f67347393c7087bb5fd7d5f30d98afb6
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 14:28:07 2017 -0400

    libpanel-applet: store factories in hash table
    
    Based on
    https://github.com/GNOME/gnome-panel/commit/dca3101714da67adc08fc986a6355afada4bde15
    and needed for later commits
    
    libpanel-applet: store applets in hash table
    Based on
    https://github.com/GNOME/gnome-panel/commit/3fe6791d32a415a333bcb7d71d98a6de9929fa27
    and needed for later commits

 libmate-panel-applet/mate-panel-applet-factory.c | 34 ++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

commit 626c42da935aa98d97e1e0e8adf4efe9b97bf821
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 13:55:46 2017 -0400

    libpanel-applet: delay GtkPlug creation
    
    We are going to create GtkPlug only for out of process applets and
    constructor is first place where we will know applet process type
    
    Based on https://github.com/GNOME/gnome-panel/commit/3ed0b1b87ecad205bdaed0ca52e8866bc0666863

 libmate-panel-applet/mate-panel-applet.c | 31 +++++++++++++++++++++++--------
 1 file changed, 23 insertions(+), 8 deletions(-)

commit 109dc78304c309c368b95df17ee9a057fbb72402
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 03:21:51 2017 -0400

    libpanel-applet: add process type to private data
    
    We will need to know this as soon we will create GtkPlug and
    GtkSocket only for out of process applets.
    
    based on https://github.com/GNOME/gnome-panel/commit/dafdc5714a6cfc7ebf26fcbd614b48cfc790b954

 libmate-panel-applet/mate-panel-applet-factory.c |  4 ++++
 libmate-panel-applet/mate-panel-applet-factory.h |  1 +
 libmate-panel-applet/mate-panel-applet.c         | 19 ++++++++++++++++++-
 3 files changed, 23 insertions(+), 1 deletion(-)

commit 025a11fdaa76111afc8e03faf6ac36b17028e585
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 02:57:41 2017 -0400

    libpanel-applet: Remove out_process from panel_applet_factory_main()
    
    This argument makes no sense when introspection is used since, in that
    case, the applet will be out-of-process anyway.
    
    Instead, create a panel_applet_factory_setup_in_process() API that is
    marked as "skip" for introspection, that is used to setup the factory
    for in-process applets.
    
    Based on https://github.com/GNOME/gnome-panel/commit/6ef943dd473ac662dea01645e0ab1f6564361253

 libmate-panel-applet/mate-panel-applet.c | 57 ++++++++++++++++++++++++++------
 libmate-panel-applet/mate-panel-applet.h | 12 +++++--
 2 files changed, 55 insertions(+), 14 deletions(-)

commit 7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e
Author: ZenWalker <scow@riseup.net>
Date:   Mon Aug 7 20:33:08 2017 +0200

    avoid deprecated gdk_screen_get_width/height

 applets/clock/clock.c                            |  5 +++--
 applets/fish/fish.c                              |  4 ++--
 applets/notification_area/system-tray/fixedtip.c |  4 ++--
 libmate-panel-applet/mate-panel-applet.c         | 13 +++++++++----
 mate-panel/applet.c                              | 13 +++++++++----
 mate-panel/panel-addto.c                         |  5 ++++-
 mate-panel/panel-force-quit.c                    |  4 ++--
 mate-panel/panel-struts.c                        |  4 ++--
 mate-panel/panel-toplevel.c                      |  9 +++++++--
 9 files changed, 40 insertions(+), 21 deletions(-)

commit 8a8ca9c24c7b4d9bec8666dd9a17c5541106bd7e
Author: Martin Wimpress <code@flexion.org>
Date:   Sun Aug 13 11:58:03 2017 +0100

    Add missing include. (#642)

 mate-panel/main.c | 1 +
 1 file changed, 1 insertion(+)

commit eb275151c64ee9c528e9f85f27e56e56e45af3ad
Author: ZenWalker <scow@riseup.net>
Date:   Fri Aug 4 00:26:09 2017 +0200

    avoid deprecated gdk_screen_get_n_monitors

 applets/clock/clock.c          | 8 ++++++++
 mate-panel/panel-multiscreen.c | 8 ++++++++
 2 files changed, 16 insertions(+)

commit 7d98669e567f164efbfefc63ac2a94a78ac5798d
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Jul 27 01:24:30 2017 -0400

    fish: fix applet opening as thin line when built in-process
    
    Based on part of https://github.com/GNOME/gnome-panel/commit/f0f91805a1e39543487cfe67dfc47129e45e76f3
    There was an issue where Wanda appeared as a thin line. The reason is
    that calling gtk_widget_set_size_request() in a size_allocate() handler
    doesn't work. So use an idle function for this.
    
    Also, only call gtk_widget_set_size_request() if really needed.

 applets/fish/fish.c | 32 +++++++++++++++++++++-----------
 1 file changed, 21 insertions(+), 11 deletions(-)

commit bdee659c5338a846c941dc716f2df34c01d3c60d
Author: Martin Wimpress <code@flexion.org>
Date:   Tue Jul 18 15:06:03 2017 +0100

    Forces a window scale of 1 for the panel, instead of using the default or user configured scale. Closes #621

 mate-panel/main.c | 3 +++
 1 file changed, 3 insertions(+)

commit e3e2e8775f5509ce2bb60dedb28347b29404fd47
Author: ZenWalker <scow@riseup.net>
Date:   Wed Aug 2 01:01:14 2017 +0200

    avoid deprecated gdk_screen_make_display_name

 applets/fish/fish.c                     | 12 +++++++-----
 mate-panel/libegg/eggdesktopfile.c      |  5 ++---
 mate-panel/libpanel-util/panel-launch.c | 18 ++++++++++--------
 mate-panel/panel-run-dialog.c           |  9 ++++++---
 4 files changed, 25 insertions(+), 19 deletions(-)

commit d5fa1884a1bcd93235f36b06bcc00a4c3646554d
Author: ZenWalker <scow@riseup.net>
Date:   Mon Jul 31 03:35:38 2017 +0200

    avoid deprecated gdk_display_get_screen

 libmate-panel-applet/mate-panel-applet-factory.c |  2 +-
 mate-panel/panel-multiscreen.c                   | 29 +++++++++++-------------
 mate-panel/panel-profile.c                       |  5 ++--
 3 files changed, 16 insertions(+), 20 deletions(-)

commit 33c4bd47a7210cd9e695ea1a2cbf26abbc3b7bed
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 28 23:44:13 2017 -0400

    don't use deprecated gtk_show_uri

 applets/clock/clock-utils.c           |  9 ++++++---
 applets/fish/fish.c                   |  7 +++++--
 applets/notification_area/main.c      |  6 ++++--
 applets/wncklet/wncklet.c             |  6 ++++--
 mate-panel/libpanel-util/panel-show.c | 12 ++++++++----
 mate-panel/libpanel-util/panel-show.h |  3 ++-
 6 files changed, 29 insertions(+), 14 deletions(-)

commit a3129a0b2d0e8e51f423af255f7d12b0bf741369
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 18 15:19:56 2017 +0200

    update issue_template

 .github/issue_template.md | 3 +++
 1 file changed, 3 insertions(+)

commit e9517de3edf94e8e7098f792c6e6d9da8784d6d9
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 18 08:53:09 2017 +0200

    pre-release version bump

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 6042c1232eafc951f5fe864bd64bcef3d8d4844b
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 18 07:55:51 2017 +0200

    release 1.19.2

 NEWS         | 11 +++++++++++
 configure.ac |  2 +-
 2 files changed, 12 insertions(+), 1 deletion(-)

commit 0a8d3045e7e33159773ea1f63f9515d80f9fdc5e
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 18 07:49:04 2017 +0200

    sync with transifex

 po/cs.po    |  23 +--
 po/es_CO.po |   2 +-
 po/lt.po    |  18 +--
 po/nl.po    | 465 ++++++++++++++++++++++++++++++------------------------------
 po/pl.po    |  14 +-
 po/pt_BR.po |  17 +--
 po/ro.po    |  15 +-
 po/ru.po    |  15 +-
 po/sv.po    |   2 +-
 po/tr.po    |   8 +-
 po/uk.po    |   8 +-
 11 files changed, 297 insertions(+), 290 deletions(-)

commit 2735842083f3cca70546d040cd0801a3572f63dc
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jul 17 14:14:18 2017 -0400

    Revert "libmate-panel-applet: Fix another potential source of applet crashes"
    
    This reverts commit cf46fb7f03d6ab0e106fa1cbfbf180fbbb9a5b75.
    *Note that this is because the code added was already present in the same function

 libmate-panel-applet/mate-panel-applet.c | 2 --
 1 file changed, 2 deletions(-)

commit 7bee2f870bcf850f68fdf8d8db4bd2e914ece143
Author: ZenWalker <scow@riseup.net>
Date:   Sun Jul 16 04:18:38 2017 +0200

    avoid deprecated gdk_screen_get_number

 .../system-tray/na-tray-manager.c                  |  4 +--
 applets/notification_area/system-tray/na-tray.c    | 12 ++++----
 applets/notification_area/testtray.c               |  6 ++--
 applets/wncklet/showdesktop.c                      |  2 +-
 applets/wncklet/wncklet.c                          |  3 +-
 mate-panel/libegg/eggdesktopfile.c                 |  8 ++---
 .../panel-applet-container.c                       |  2 +-
 mate-panel/panel-layout.c                          | 35 +++++++++++-----------
 mate-panel/panel-multiscreen.c                     | 14 ++++-----
 mate-panel/panel-profile.c                         | 17 ++++++-----
 mate-panel/panel-struts.c                          | 12 ++++----
 mate-panel/xstuff.c                                | 14 ++++-----
 12 files changed, 66 insertions(+), 63 deletions(-)

commit cf46fb7f03d6ab0e106fa1cbfbf180fbbb9a5b75
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 14 02:36:39 2017 -0400

    libmate-panel-applet: Fix another potential source of applet crashes
    Properly initialize pattern, GNOME found this stopped applet crashes on bg change(though not the same crashes we just fixed)
    
    based on
    https://github.com/GNOME/gnome-panel/commit/88b9beeb8ab69072fe6912af33c620143d17b0a3
    We could return a random value from panel_applet_get_pattern_from_pixmap(), and that was very nasty.

 libmate-panel-applet/mate-panel-applet.c | 2 ++
 1 file changed, 2 insertions(+)

commit df36dcac197e8287ef5626d71556173b942c3f58
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jul 11 15:19:07 2017 -0400

    fix applet crashes on transparent user-set panel bg
    
    Avoid cairo function that seemed to be causing crashes related to setting geometry, use code copied from panel-background.c instead

 libmate-panel-applet/mate-panel-applet.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit ab786fa5282be8169b9c94d258cc57d07944ed13
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Jul 7 00:09:41 2017 -0400

    system tray: fix hidden icons on image/transparent color BG
    Enable the force-redraw code unconditionally so it can function from the idle callback regardless of child->parent_relative_bg = TRUE/FALSE as it seems to now always be needed

 applets/notification_area/system-tray/na-tray-child.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b7d2033dff3f68d6ac67290c8b90203906e6762f
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Jul 6 00:21:09 2017 -0400

    Fix GTK theme image bg support on vertical panel
    
    Themers can use the .vertical and .horizontal style classes to rotate a background on vertical panels the same way scrollbars are themed. Apply these style classes to PanelPlugs too so this can actually be used.

 libmate-panel-applet/mate-panel-applet.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit a1445bc208e22260c27ce67ad4ebce6040ff5a3c
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Jun 28 01:14:26 2017 -0400

    Make panel image background in GTK theme work again
    
    *Support both url(image file) and gradient image panel backgrounds in the GTK theme.
    *Scaling by 1.0/panel dimensions should never have worked, doesn't now. Get the actual image dimensions instead
    *Background: disable in PanelPlug features that don't work on panel toplevel
    *panel-background: catch error on unsupported image such as -gtk-gradient
            An image bg set in the GTK theme needs to be a file or a css gradient as the older -gtk-gradient does not return a valid cairo_pattern_t when read directly
    *GTK 3.14,3.16: fix theme bg image render in plugs
            PanelPlug rendering is handled differently with GTK 3.14 and 3.16 than later versions. Handle this so all supported image backgrounds in GTK themes render properly in all supported GTK versions

 libmate-panel-applet/mate-panel-applet.c | 16 ++++++++++++--
 mate-panel/panel-background.c            | 36 +++++++++++++++++++++++++-------
 2 files changed, 43 insertions(+), 9 deletions(-)

commit 03bf5cecd39646e0e7c19af097d5fc64b05c40d5
Author: raveit65 <mate@raveit.de>
Date:   Sat Jul 1 12:48:08 2017 +0200

    clock: change size_reguest
    
    fixes https://github.com/mate-desktop/mate-panel/issues/594

 applets/clock/calendar-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0d3884f96b01324cb0a3b7be426d20e07642f01b
Author: raveit65 <mate@raveit.de>
Date:   Sat Jul 1 10:24:16 2017 +0200

    clock: set a default width for calendarWindow
    
    fixes https://github.com/mate-desktop/mate-panel/issues/594

 applets/clock/calendar-window.c | 1 +
 1 file changed, 1 insertion(+)

commit 99539628335c5c2e8dac7f4690610e6d153ffc8d
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 29 13:21:44 2017 +0200

    clock: set a margin_start for home icon
    
    fixes https://github.com/mate-desktop/mate-panel/issues/594
    
    Note: min value is 75 in my tests for ukraine language
    
    Reduced the margin, as it seemed to be the direct cause of a theme-independent jump.

 applets/clock/clock-location-tile.c | 1 +
 1 file changed, 1 insertion(+)

commit d43dda4b8dbb9377289c61b715a0a14dc7e2ff8e
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 29 12:00:20 2017 +0200

    clock: set width_chars for time label
    
    fixes https://github.com/mate-desktop/mate-panel/issues/594
    
    Note: in my language setting width_chars to 20 is minimum value to avoid
    a jumping clock UI, if hovering over another location which use another day.
    Maybe we need to increase the chosen value for other languages.

 applets/clock/clock-location-tile.c | 1 +
 1 file changed, 1 insertion(+)

commit 0b60b4bc66c8aae24a255b3bf82e07a59a2a9d07
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Jun 25 00:23:03 2017 -0400

    GTK 3.18+ fix transparent default panel bg
    
    Transparent panel backgrounds set in GTK themes have not worked since the GTK 3.20 PanelPlug work. This was because NULL in gtk_window_set_background_pattern breaks on alpha values. Force this transparent and the GTK background is properly drawn

 libmate-panel-applet/mate-panel-applet.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit e58067434e067af354d1f0f9b98f1c417f034fa3
Author: raveit65 <mate@raveit.de>
Date:   Tue Jun 13 11:13:37 2017 +0200

    release 1.19.1

 NEWS         | 20 ++++++++++++++++++++
 configure.ac |  2 +-
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 39bd268e7199c8dcf145ad0f9feeefe82c2ed183
Author: monsta <monsta@inbox.ru>
Date:   Sun Jun 11 16:52:06 2017 +0300

    sync with Transifex

 po/am.po    |  4 ++--
 po/hu.po    | 16 ++++++++--------
 po/nb.po    |  4 ++--
 po/pl.po    | 25 +++++++++++++------------
 po/tr.po    | 16 ++++++++--------
 po/zh_CN.po | 14 +++++++-------
 6 files changed, 40 insertions(+), 39 deletions(-)

commit b1721122e86a931fc1e6a930450b0517d01690ea
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 8 19:09:15 2017 +0200

    create issue_template.md

 .github/issue_template.md | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 88474cac848891c362360b57cf4bc44d238bc82e
Author: monsta <monsta@inbox.ru>
Date:   Thu Jun 1 14:21:32 2017 +0300

    menu: restore focus after drag-n-dropping menuitem outside

 mate-panel/menu.c | 55 +------------------------------------------------------
 1 file changed, 1 insertion(+), 54 deletions(-)

commit 4c7774639593d2e4793467061ddf10d59f8cc4a1
Author: monsta <monsta@inbox.ru>
Date:   Thu Jun 1 12:20:24 2017 +0300

    menu: restore focus after closing popup menu of a menuitem

 mate-panel/menu.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 71 insertions(+)

commit 812f489f4143421895866766b7f0d79fb0a71d54
Author: ZenWalker <scow@riseup.net>
Date:   Tue Jun 6 01:33:25 2017 +0200

    Fix: menubar/menu-button can't launch mozo
    
    Fixes #586

 mate-panel/panel-menu-bar.c    | 11 +++--------
 mate-panel/panel-menu-button.c | 19 ++++++++-----------
 2 files changed, 11 insertions(+), 19 deletions(-)

commit a94e7d192e39fda1d5bba1921c676fec699ac533
Author: monsta <monsta@inbox.ru>
Date:   Wed May 24 15:02:58 2017 +0300

    menu: remove incorrect code from the popup menu of a menuitem
    
    fixes https://github.com/mate-desktop/mate-panel/issues/305

 mate-panel/menu.c | 70 -------------------------------------------------------
 1 file changed, 70 deletions(-)

commit c27ba68a23fed89c9b9065c7ddd9cbfa3dee5095
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun May 28 23:13:15 2017 -0400

    status notifier: follow same menu theme as rest of panel
    
    Support any menu theme set up for the panel's menus differing from the rest of the Gtk theme using the .mate-panel-menu-bar style class

 applets/notification_area/status-notifier/sn-dbus-menu.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 82cfd0a0827910464429f904a59ba86582ad8bc4
Author: monsta <monsta@inbox.ru>
Date:   Mon May 29 16:36:04 2017 +0300

    fix moving applets between panels
    
    fixes https://github.com/mate-desktop/mate-panel/issues/504
    
    have to repeat my change from 024f89bc7c8074f753120d9c8ec4bd839745984b
    because of fallout from 225702b3c6a609065465c66f0f2739fc1d2184a9

 mate-panel/panel-widget.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 9560d6518ad1aa4e18b35f121ec37e5fc3925ebf
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat May 20 16:06:31 2017 +0200

    Restore Polish translation credits from GNOME

 po/gnome-copyrights.txt | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit 9b2ce3f4376659a7082287eab07032681be65e77
Author: monsta <monsta@inbox.ru>
Date:   Tue May 23 18:34:55 2017 +0300

    menu: fix crash when some .desktop file has empty Icon field
    
    fixes https://github.com/mate-desktop/mate-panel/issues/494

 mate-panel/menu.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit 30a6f5facd7bdb45aaeb77a51ea77f2a7f3504ba
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Mon Nov 3 23:57:44 2014 +0200

    clock: properly handle visibility of edit button
    
    Fixes https://github.com/mate-desktop/mate-panel/issues/570
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=cc99dca

 applets/clock/calendar-window.c | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

commit 4de86661f4a6f67285333c67342c287f99deffeb
Author: raveit65 <mate@raveit.de>
Date:   Sat May 20 14:26:20 2017 +0200

    clock: drop deprecated gtk_size_group_set_ignore_hidden
    
    seems that function doesn't work proper, see
    https://developer.gnome.org/gtk3/stable/GtkSizeGroup.html#gtk-size-group-set-ignore-hidden

 applets/clock/clock-location-tile.c | 2 --
 1 file changed, 2 deletions(-)

commit 69f396b25e993e04fe7efcdb8ff99c687d14d568
Author: raveit65 <mate@raveit.de>
Date:   Fri May 19 17:35:40 2017 -0400

    clock: move GtkButton in another horizontal GtkBox parent
    
    Fixes https://github.com/mate-desktop/mate-panel/issues/520

 applets/clock/clock-location-tile.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 6ae0ea92a925fae699a608b12d2274d52c12695d
Author: raveit65 <mate@raveit.de>
Date:   Sun May 21 18:46:09 2017 +0200

    clock.c: drop deprecated gtk_size_group_set_ignore_hidden
    
    seems that function doesn't work proper, see
    https://developer.gnome.org/gtk3/stable/GtkSizeGroup.html#gtk-size-group-set-ignore-hidden

 applets/clock/clock.c | 1 -
 1 file changed, 1 deletion(-)

commit cf3155349a163f1be2bba99539ff234bf56b6a38
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Tue May 16 00:12:05 2017 +0300

    localized application's name and description
    
    g_desktop_app_info_get_string return unlocalized strings.
    g_app_info_get_name and g_app_info_get_description to get localized application's name and comment(description)

 mate-panel/launcher.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit f659fcb3d4f3a2a1b322f697899774d3f5826b52
Author: monsta <monsta@inbox.ru>
Date:   Wed May 17 17:06:37 2017 +0300

    menu-button: disconnect from GSettings when applet is removed
    
    fixes runtime warning on applet removal

 mate-panel/panel-menu-button.c | 3 +++
 1 file changed, 3 insertions(+)

commit b9747d5c066f09fbc671c7e5c49892b06d9ca82f
Author: monsta <monsta@inbox.ru>
Date:   Wed May 17 14:18:00 2017 +0300

    action-button: disconnect from GSettings when applet is removed
    
    fixes runtime warning on applet removal

 mate-panel/panel-action-button.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 51c4624a46a7f6d7ef85df07b8e5c45d6fec4e26
Author: raveit65 <mate@raveit.de>
Date:   Tue May 16 07:52:57 2017 +0200

    remove a needless glib check

 configure.ac | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit d28eac61b2f8385e4ad54b5c84a21fa6ed291287
Author: raveit65 <mate@raveit.de>
Date:   Thu May 11 18:06:16 2017 +0200

    release 1.19.0

 NEWS | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

commit 801767dc667ed9ad98b595d381d92fc62f138aa9
Author: raveit65 <mate@raveit.de>
Date:   Thu May 11 17:57:24 2017 +0200

    sync with transifex

 po/af.po          |  85 ++++++++++-------
 po/am.po          | 123 +++++++++++++++----------
 po/ar.po          |  87 +++++++++++-------
 po/as.po          |  85 ++++++++++-------
 po/ast.po         |  85 ++++++++++-------
 po/az.po          |  85 ++++++++++-------
 po/be.po          |  87 +++++++++++-------
 po/bg.po          |  87 +++++++++++-------
 po/bn.po          |  85 ++++++++++-------
 po/bn_IN.po       |  85 ++++++++++-------
 po/br.po          |  87 +++++++++++-------
 po/bs.po          |  85 ++++++++++-------
 po/ca.po          |  87 +++++++++++-------
 po/ca@valencia.po |  87 +++++++++++-------
 po/cmn.po         |  87 +++++++++++-------
 po/crh.po         |  85 ++++++++++-------
 po/cs.po          |  89 +++++++++++-------
 po/cy.po          |  85 ++++++++++-------
 po/da.po          |  87 +++++++++++-------
 po/de.po          | 102 +++++++++++++--------
 po/dz.po          |  85 ++++++++++-------
 po/el.po          |  87 +++++++++++-------
 po/en_AU.po       |  87 +++++++++++-------
 po/en_CA.po       |  85 ++++++++++-------
 po/en_GB.po       |  87 +++++++++++-------
 po/eo.po          |  85 ++++++++++-------
 po/es.po          |  89 +++++++++++-------
 po/es_CO.po       |  85 ++++++++++-------
 po/es_MX.po       | 267 +++++++++++++++++++++++++-----------------------------
 po/es_PR.po       | 267 +++++++++++++++++++++++++-----------------------------
 po/et.po          |  87 +++++++++++-------
 po/eu.po          |  85 ++++++++++-------
 po/fa.po          |  85 ++++++++++-------
 po/fi.po          |  85 ++++++++++-------
 po/fr.po          |  90 +++++++++++-------
 po/fr_CA.po       | 267 +++++++++++++++++++++++++-----------------------------
 po/frp.po         | 267 +++++++++++++++++++++++++-----------------------------
 po/fur.po         |  85 ++++++++++-------
 po/fy.po          |  85 ++++++++++-------
 po/ga.po          |  85 ++++++++++-------
 po/gl.po          |  87 +++++++++++-------
 po/gu.po          |  85 ++++++++++-------
 po/ha.po          |  85 ++++++++++-------
 po/he.po          |  87 +++++++++++-------
 po/hi.po          |  85 ++++++++++-------
 po/hr.po          |  85 ++++++++++-------
 po/hu.po          |  92 ++++++++++++-------
 po/hy.po          |  87 +++++++++++-------
 po/id.po          |  91 ++++++++++++-------
 po/ig.po          |  85 ++++++++++-------
 po/is.po          |  85 ++++++++++-------
 po/it.po          |  89 +++++++++++-------
 po/ja.po          |  87 +++++++++++-------
 po/jv.po          | 267 +++++++++++++++++++++++++-----------------------------
 po/ka.po          |  85 ++++++++++-------
 po/kk.po          |  87 +++++++++++-------
 po/kn.po          |  85 ++++++++++-------
 po/ko.po          |  87 +++++++++++-------
 po/ku.po          |  85 ++++++++++-------
 po/ku_IQ.po       |  85 ++++++++++-------
 po/ky.po          |  85 ++++++++++-------
 po/li.po          |  85 ++++++++++-------
 po/lt.po          |  89 +++++++++++-------
 po/lv.po          |  87 +++++++++++-------
 po/mai.po         |  85 ++++++++++-------
 po/mg.po          |  85 ++++++++++-------
 po/mi.po          | 267 +++++++++++++++++++++++++-----------------------------
 po/mk.po          |  85 ++++++++++-------
 po/ml.po          |  85 ++++++++++-------
 po/mn.po          |  85 ++++++++++-------
 po/mr.po          |  87 +++++++++++-------
 po/ms.po          |  87 +++++++++++-------
 po/nb.po          |  97 ++++++++++++--------
 po/nds.po         |  85 ++++++++++-------
 po/ne.po          |  85 ++++++++++-------
 po/nl.po          |  90 +++++++++++-------
 po/nn.po          |  85 ++++++++++-------
 po/nso.po         |  85 ++++++++++-------
 po/oc.po          |  85 ++++++++++-------
 po/or.po          |  85 ++++++++++-------
 po/pa.po          |  85 ++++++++++-------
 po/pl.po          |  96 ++++++++++++--------
 po/pms.po         | 267 +++++++++++++++++++++++++-----------------------------
 po/ps.po          |  85 ++++++++++-------
 po/pt.po          | 102 +++++++++++++--------
 po/pt_BR.po       |  89 +++++++++++-------
 po/ro.po          |  85 ++++++++++-------
 po/ru.po          |  89 +++++++++++-------
 po/rw.po          | 267 +++++++++++++++++++++++++-----------------------------
 po/si.po          |  85 ++++++++++-------
 po/sk.po          |  89 +++++++++++-------
 po/sl.po          | 114 ++++++++++++++---------
 po/sq.po          |  85 ++++++++++-------
 po/sr.po          | 103 +++++++++++++--------
 po/sr@latin.po    |  85 ++++++++++-------
 po/sv.po          |  85 ++++++++++-------
 po/ta.po          |  85 ++++++++++-------
 po/te.po          |  85 ++++++++++-------
 po/th.po          |  87 +++++++++++-------
 po/tr.po          |  89 +++++++++++-------
 po/ug.po          |  85 ++++++++++-------
 po/uk.po          |  88 +++++++++++-------
 po/ur.po          |  87 +++++++++++-------
 po/uz.po          |  85 ++++++++++-------
 po/vi.po          |  85 ++++++++++-------
 po/wa.po          |  85 ++++++++++-------
 po/xh.po          |  85 ++++++++++-------
 po/yi.po          | 267 +++++++++++++++++++++++++-----------------------------
 po/yo.po          |  85 ++++++++++-------
 po/zh_CN.po       |  89 +++++++++++-------
 po/zh_HK.po       |  85 ++++++++++-------
 po/zh_TW.po       |  87 +++++++++++-------
 po/zu.po          |  85 ++++++++++-------
 113 files changed, 6835 insertions(+), 4660 deletions(-)

commit 862607a51aade39bdb65f266cdd7b23b3e0eca89
Author: monsta <monsta@inbox.ru>
Date:   Mon May 8 22:03:21 2017 +0300

    status-notifier: fix crash on unknown signal name
    
    fixes https://github.com/mate-desktop/mate-panel/issues/571
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=f93821cc77892c7b262866d04bd8aa26ddafa154

 applets/notification_area/status-notifier/sn-item-v0.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e04356360b9277fa6001f57df712752b315d1be3
Author: monsta <monsta@inbox.ru>
Date:   Wed Apr 26 12:37:16 2017 +0300

    use GTK+3 bookmarks location for Places menu

 mate-panel/panel-menu-items.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit 0f5e75679006b457d90345be19ffb3bb6230c9b9
Author: monsta <monsta@inbox.ru>
Date:   Wed Apr 19 17:33:03 2017 +0300

    doc: remove some references to nonexistent stuff

 doc/reference/mate-panel-applet/mate-panel-applet-sections.txt | 8 --------
 1 file changed, 8 deletions(-)

commit 05e192158ea0ec58bb4876667c1ec8ddeb324078
Author: monsta <monsta@inbox.ru>
Date:   Wed Apr 19 17:29:33 2017 +0300

    fix build with gcc 4.9.2 (looks like it's in c89 mode by default)

 mate-panel/panel-run-dialog.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit d5ffd663755b88cc95b4b8bcccb06130b9653cf1
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Tue Apr 18 22:23:19 2017 +0200

    Run dialog: Add option to reverse history view
    
    A setting is added to show the run dialog history in reverse.

 data/org.mate.panel.gschema.xml.in |  5 ++++
 mate-panel/panel-run-dialog.c      | 60 ++++++++++++++++++++++++--------------
 2 files changed, 43 insertions(+), 22 deletions(-)

commit 3171e41dcd4e0eea310acdb9c1d18c3a3adbd5fa
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Tue Apr 18 04:52:36 2017 +0200

    Run dialog: Fix wrong history len with max size 1
    
    In a special case where the history size was 1, the actual history saved
    had length 2. In addition history is always written with new entries.
    One could also connect a signal to the max size property to force
    writing history (i.e., to shorten it).

 mate-panel/panel-run-dialog.c | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

commit 5661e088e300173c64331c5350710b69774b4a99
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Wed Apr 12 18:27:06 2017 +0200

    Run dialog: Allow changing history size
    
    A key has been added to the gsettings schema that controls history size.
    The code of the run dialog has been changed to use that key.

 data/org.mate.panel.gschema.xml.in |  7 ++++-
 mate-panel/panel-run-dialog.c      | 55 +++++++++++++++++++++-----------------
 2 files changed, 37 insertions(+), 25 deletions(-)

commit 9c690f07978f2db1a8bd157d78c8dbb330fcedee
Author: monsta <monsta@inbox.ru>
Date:   Tue Apr 18 14:27:21 2017 +0300

    doc: drop ancient MateConf references

 .../mate-panel-applet/mate-panel-applet-docs.sgml    |  2 --
 .../mate-panel-applet/mate-panel-applet-sections.txt | 20 --------------------
 2 files changed, 22 deletions(-)

commit 0d7df5455d544b527ecc8d09bc24f84a555382f8
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Wed Apr 12 17:50:18 2017 +0200

    Run dialog: Fix wrong history order
    
    Initially the org.mate.panel.general.history-mate-run key was saved with
    the most recent command last. In combination with wrong code this led to
    scrambling the history.
    
    This commit changes the history storage in a way that most recent
    elements are stored first. The code adapts to this change by changing
    only one function to prepend instead of append in the list store. (Any
    old histories might therefore be wrong for a short time, but that's
    probably worth it to fix this bug.)

 mate-panel/panel-run-dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 36c54308f7b0e05f24b9b90fb2f79546608667b2
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Apr 12 10:23:41 2017 +0200

    status-notifier: Do not hide passive items
    
    Although the specification states that most hosts will hide those,
    several items report them as Passive all the time and thus never show
    up.  So for now, just show everything.
    
    Fixes #537.

 applets/notification_area/status-notifier/sn-item-v0.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 7da08379b5ca39ae54529391e88634c39b3b843e
Author: Martin Wimpress <martin@mate-desktop.org>
Date:   Wed Apr 5 15:18:08 2017 +0100

    Sync translations.

 po/af.po          | 192 ++++++----------
 po/am.po          | 202 +++++++---------
 po/ar.po          | 192 ++++++----------
 po/as.po          | 192 ++++++----------
 po/ast.po         | 192 ++++++----------
 po/az.po          | 192 ++++++----------
 po/be.po          | 192 ++++++----------
 po/bg.po          | 192 ++++++----------
 po/bn.po          | 192 ++++++----------
 po/bn_IN.po       | 192 ++++++----------
 po/br.po          | 192 ++++++----------
 po/bs.po          | 192 ++++++----------
 po/ca.po          | 192 ++++++----------
 po/ca@valencia.po | 192 ++++++----------
 po/cmn.po         | 192 ++++++----------
 po/crh.po         | 192 ++++++----------
 po/cs.po          | 199 +++++++---------
 po/cy.po          | 192 ++++++----------
 po/da.po          | 192 ++++++----------
 po/de.po          | 196 ++++++----------
 po/dz.po          | 192 ++++++----------
 po/el.po          | 193 ++++++----------
 po/en_AU.po       | 192 ++++++----------
 po/en_CA.po       | 192 ++++++----------
 po/en_GB.po       | 192 ++++++----------
 po/eo.po          | 192 ++++++----------
 po/es.po          | 195 ++++++----------
 po/es_CO.po       | 186 ++++++---------
 po/et.po          | 192 ++++++----------
 po/eu.po          | 192 ++++++----------
 po/fa.po          | 192 ++++++----------
 po/fi.po          | 192 ++++++----------
 po/fr.po          | 195 ++++++----------
 po/fur.po         | 186 ++++++---------
 po/fy.po          | 186 ++++++---------
 po/ga.po          | 192 ++++++----------
 po/gl.po          | 192 ++++++----------
 po/gu.po          | 192 ++++++----------
 po/ha.po          | 192 ++++++----------
 po/he.po          | 192 ++++++----------
 po/hi.po          | 192 ++++++----------
 po/hr.po          | 192 ++++++----------
 po/hu.po          | 195 ++++++----------
 po/hy.po          | 192 ++++++----------
 po/id.po          | 196 ++++++----------
 po/ig.po          | 192 ++++++----------
 po/is.po          | 192 ++++++----------
 po/it.po          | 195 ++++++----------
 po/ja.po          | 192 ++++++----------
 po/ka.po          | 192 ++++++----------
 po/kk.po          | 675 +++++++++++++++++++++++++-----------------------------
 po/kn.po          | 192 ++++++----------
 po/ko.po          | 192 ++++++----------
 po/ku.po          | 192 ++++++----------
 po/ku_IQ.po       | 186 ++++++---------
 po/ky.po          | 186 ++++++---------
 po/li.po          | 186 ++++++---------
 po/lt.po          | 198 ++++++----------
 po/lv.po          | 192 ++++++----------
 po/mai.po         | 192 ++++++----------
 po/mg.po          | 192 ++++++----------
 po/mk.po          | 192 ++++++----------
 po/ml.po          | 192 ++++++----------
 po/mn.po          | 192 ++++++----------
 po/mr.po          | 192 ++++++----------
 po/ms.po          | 192 ++++++----------
 po/nb.po          | 194 ++++++----------
 po/nds.po         | 186 ++++++---------
 po/ne.po          | 192 ++++++----------
 po/nl.po          | 192 ++++++----------
 po/nn.po          | 194 ++++++----------
 po/nso.po         | 192 ++++++----------
 po/oc.po          | 186 ++++++---------
 po/or.po          | 192 ++++++----------
 po/pa.po          | 192 ++++++----------
 po/pl.po          | 196 ++++++----------
 po/ps.po          | 192 ++++++----------
 po/pt.po          | 195 ++++++----------
 po/pt_BR.po       | 195 ++++++----------
 po/ro.po          | 192 ++++++----------
 po/ru.po          | 192 ++++++----------
 po/si.po          | 186 ++++++---------
 po/sk.po          | 192 ++++++----------
 po/sl.po          | 192 ++++++----------
 po/sq.po          | 192 ++++++----------
 po/sr.po          | 194 ++++++----------
 po/sr@latin.po    | 192 ++++++----------
 po/sv.po          | 192 ++++++----------
 po/ta.po          | 192 ++++++----------
 po/te.po          | 192 ++++++----------
 po/th.po          | 192 ++++++----------
 po/tr.po          | 195 ++++++----------
 po/ug.po          | 192 ++++++----------
 po/uk.po          | 219 +++++++-----------
 po/ur.po          | 192 ++++++----------
 po/uz.po          | 186 ++++++---------
 po/vi.po          | 192 ++++++----------
 po/wa.po          | 186 ++++++---------
 po/xh.po          | 192 ++++++----------
 po/yo.po          | 192 ++++++----------
 po/zh_CN.po       | 196 ++++++----------
 po/zh_HK.po       | 192 ++++++----------
 po/zh_TW.po       | 192 ++++++----------
 po/zu.po          | 192 ++++++----------
 104 files changed, 7751 insertions(+), 12728 deletions(-)

commit 0a3b3f1e5068ca749a553be5f2eff621eebc54e9
Author: monsta <monsta@inbox.ru>
Date:   Tue Apr 11 12:51:03 2017 +0300

    update copyright year to 2017

 applets/clock/clock.c                | 2 +-
 applets/fish/fish.c                  | 2 +-
 applets/wncklet/showdesktop.c        | 2 +-
 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/window-menu.c        | 2 +-
 applets/wncklet/workspace-switcher.c | 2 +-
 mate-panel/panel-context-menu.c      | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

commit de0611f1b7d937ce8c316ab8643349875aa80cc5
Author: monsta <monsta@inbox.ru>
Date:   Tue Apr 11 12:06:23 2017 +0300

    panel-menu-bar: fix build warning and some spacing

 mate-panel/panel-menu-bar.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit be71ad60d8b05fe0b4f8ac409122ee905a1a4e28
Author: Konstantin <ria.freelander@gmail.com>
Date:   Mon Apr 3 18:31:31 2017 +0300

    Fixes #549

 mate-panel/panel-menu-bar.c | 3 +++
 1 file changed, 3 insertions(+)

commit 93f73619bbd76dce14c3b2df9756ad59136b8223
Author: monsta <monsta@inbox.ru>
Date:   Mon Apr 10 11:47:44 2017 +0300

    properly fit expanded panel to smaller screen size
    
    when changing panel orientation or rotating the screen itself,
    panel might keep its old size, so some applets might appear
    behind screen edge (until you restart the panel). same thing
    might happen when enabling hide buttons.
    
    fixes https://github.com/mate-desktop/mate-panel/issues/552
    
    upstream commit with detailed problem description:
    https://git.gnome.org/browse/gnome-panel/commit/?id=fc24d8fa623c4cf841eb5168cb1c250b4a84d4da
    
    upstream commit with the actual fix:
    https://git.gnome.org/browse/gnome-panel/commit/?id=4511f4466df0b163906794b4a32196226ccf90f3
    
    yes, it's somewhat messed up there :)

 mate-panel/panel-widget.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

commit 917fcb76d14e69642df38393bc2f6a5b52d0c7ed
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Thu Apr 6 15:48:27 2017 +0200

    system-tray: Properly propagate orientation changes
    
    This fixes menu positioning on some system tray items when the panel
    orientation changed since it was initially started.

 applets/notification_area/na-box.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 6fcc9d8442230648ba75fc0a60d722c7ba4eaa81
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Thu Apr 6 15:18:41 2017 +0200

    notification-area: Fix item orientation
    
    Properly forward orientation to the items.  This especially fixes SNI
    items height in vertical panels, but affects several other details on
    SNI items.

 applets/notification_area/na-box.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 9705869fdcf0f31bc05b8454cd7ec60b7b489234
Author: monsta <monsta@inbox.ru>
Date:   Fri Mar 31 11:54:50 2017 +0300

    workspace switcher: handle GDK_SCROLL_SMOOTH and fix build warning

 applets/wncklet/workspace-switcher.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 9b8f9e8147e27e19eb08a262a140b937051545b9
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Thu Mar 23 21:20:19 2017 +0100

    Reenable workspace switcher wrapping
    
    These changes have been accidentally removed. The previously used
    handler has been added to the code again, which connects to the scroll
    event of the WnckPager widget.

 applets/wncklet/workspace-switcher.c | 110 +++++++++++++++++++++++++++++++++++
 1 file changed, 110 insertions(+)

commit 2c1957f884a5e11f8cd6536b9b4cca3f0ee86b6b
Author: raveit65 <mate@raveit.de>
Date:   Thu Mar 30 18:06:32 2017 +0200

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit a4f21ec70b26aae76a071bdd323e0ea0faf7bf98
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Mar 29 16:07:49 2017 +0200

    status-notifier: Fix handling of icon-padding style property
    
    It should only affect the space between items, not all around, and
    that padding should be part of the item itself, not be outside of it.

 .../notification_area/status-notifier/sn-host-v0.c |  2 +-
 .../notification_area/status-notifier/sn-item-v0.c | 56 ++++++++++++++++++++++
 .../notification_area/status-notifier/sn-item-v0.h |  3 ++
 3 files changed, 60 insertions(+), 1 deletion(-)

commit 2798c330871e830ea13a5c1b035b891143a31166
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Mar 22 10:54:41 2017 +0100

    Simplify panel description shown when switching panels with the WM
    
    Fixes #530.

 mate-panel/panel-toplevel.c | 65 ++++++---------------------------------------
 1 file changed, 8 insertions(+), 57 deletions(-)

commit 98756ee50bf5462f9ede32ff03538e6168eec59c
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Mar 14 16:13:44 2017 +0100

    status-notifier: Plug a memory leak

 applets/notification_area/libstatus-notifier-watcher/gf-sn-watcher-v0.c | 1 +
 1 file changed, 1 insertion(+)

commit d160cf1bc7fd2f73fe9f72d9308bc10967832001
Author: Robert Nagy <robert@openbsd.org>
Date:   Tue Mar 28 17:51:41 2017 +0200

    remove deprecated sys/timeb.h header, as nothing uses it

 applets/clock/clock-map.c | 1 -
 1 file changed, 1 deletion(-)

commit 2f5fb93bb06fd13e60d18b7b0bfcf0a0b13f2a47
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Sat Mar 25 00:00:47 2017 +0100

    status-notifier-watcher: Allow re-registration of registered items (#543)
    
    The SNI specification doesn't explicitly state what should happen when
    trying to register again an already registered item, so it would seem
    only logical to forbid it.  Unfortunately, libappindicator tries
    re-registering pretty often, and even falls back to System Tray if it
    fails.  So in practice we need to be forgiving and pretend it's OK,
    or we get a duplicate System Tray item for this one.
    
    Fixes #539.

 .../libstatus-notifier-watcher/gf-sn-watcher-v0.c          | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 533b880f0d64cde423bc3279a401d9e04f80936e
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Mon Mar 20 13:32:41 2017 +0300

    setup custom icon
    
    restore ability to configure launcher's custom icon which degradated after switching on g_app_info_get_icon
    also update launcher state after saving launcher's properties.

 mate-panel/launcher.c           | 2 ++
 mate-panel/panel-ditem-editor.c | 5 ++++-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 9144f83b9a564a317eaa352b3a1ad5247ec855b7
Author: Scott Balneaves <sbalneav@alburg.net>
Date:   Fri Mar 17 12:27:58 2017 -0500

    Revert "Suppress the shutdown option in the panel if LTSP_CLIENT is set"
    
    This reverts commit 8c25e1bdd328a8712735c0b00cf4aede7993da1d.
    LTSP no longer requires this, and it in fact prevents LTSP machines from
    shutting down.
    
    Closes https://github.com/mate-desktop/mate-panel/issues/535

 mate-panel/panel-menu-items.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f8cb7edfd085e5320c5182cd8bfe113b05c4b98
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Mar 13 18:47:56 2017 +0100

    status-notifier: Plug a memory leak

 applets/notification_area/status-notifier/sn-item-v0.c | 1 +
 1 file changed, 1 insertion(+)

commit 7a06b8bdf03e4d2df2aaa141588c84750ffac10c
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Mar 13 12:24:25 2017 +0100

    notification area: Fix memory leak sorting items

 applets/notification_area/system-tray/na-tray-child.c | 2 ++
 1 file changed, 2 insertions(+)

commit d21ea913d3e294cf74fb13743ad598202301d65d
Author: raveit65 <mate@raveit.de>
Date:   Mon Mar 13 13:03:22 2017 +0100

    release 1.18.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cbcd979cee79551ee60746d9b52e66363615ba87
Author: raveit65 <mate@raveit.de>
Date:   Mon Mar 13 12:56:41 2017 +0100

    sync with transifex

 po/LINGUAS        |    1 +
 po/af.po          |  576 +++++------
 po/am.po          | 1138 ++++++++++-----------
 po/ar.po          |  578 +++++------
 po/as.po          |  576 +++++------
 po/ast.po         |  576 +++++------
 po/az.po          |  576 +++++------
 po/be.po          |  578 +++++------
 po/bg.po          |  578 +++++------
 po/bn.po          |  576 +++++------
 po/bn_IN.po       |  578 +++++------
 po/br.po          |  578 +++++------
 po/bs.po          |  578 +++++------
 po/ca.po          |  594 +++++------
 po/ca@valencia.po |  578 +++++------
 po/cmn.po         |  576 +++++------
 po/crh.po         |  576 +++++------
 po/cs.po          |  578 +++++------
 po/cy.po          |  576 +++++------
 po/da.po          |  584 +++++------
 po/de.po          |  580 +++++------
 po/dz.po          |  576 +++++------
 po/el.po          |  624 +++++-------
 po/en_AU.po       |  578 +++++------
 po/en_CA.po       |  576 +++++------
 po/en_GB.po       |  578 +++++------
 po/eo.po          |  576 +++++------
 po/es.po          |  578 +++++------
 po/es_CO.po       |  576 +++++------
 po/es_MX.po       |  572 +++++------
 po/es_PR.po       | 2873 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/et.po          |  576 +++++------
 po/eu.po          |  576 +++++------
 po/fa.po          |  576 +++++------
 po/fi.po          |  576 +++++------
 po/fr.po          |  578 +++++------
 po/fr_CA.po       |  570 +++++------
 po/frp.po         |  572 +++++------
 po/fur.po         |  576 +++++------
 po/fy.po          |  574 +++++------
 po/ga.po          |  576 +++++------
 po/gl.po          |  576 +++++------
 po/gu.po          |  576 +++++------
 po/ha.po          |  576 +++++------
 po/he.po          |  576 +++++------
 po/hi.po          |  576 +++++------
 po/hr.po          |  578 +++++------
 po/hu.po          |  580 +++++------
 po/hy.po          |  576 +++++------
 po/id.po          |  585 +++++------
 po/ig.po          |  576 +++++------
 po/is.po          |  576 +++++------
 po/it.po          |  583 +++++------
 po/ja.po          |  599 +++++------
 po/jv.po          |  570 +++++------
 po/ka.po          |  576 +++++------
 po/kk.po          |  570 +++++------
 po/kn.po          |  576 +++++------
 po/ko.po          |  578 +++++------
 po/ku.po          |  576 +++++------
 po/ku_IQ.po       |  576 +++++------
 po/ky.po          |  574 +++++------
 po/li.po          |  572 +++++------
 po/lt.po          |  578 +++++------
 po/lv.po          |  576 +++++------
 po/mai.po         |  576 +++++------
 po/mg.po          |  576 +++++------
 po/mi.po          |  619 ++++++------
 po/mk.po          |  576 +++++------
 po/ml.po          |  576 +++++------
 po/mn.po          |  578 +++++------
 po/mr.po          |  576 +++++------
 po/ms.po          |  578 +++++------
 po/nb.po          |  590 +++++------
 po/nds.po         |  574 +++++------
 po/ne.po          |  576 +++++------
 po/nl.po          |  579 +++++------
 po/nn.po          |  583 +++++------
 po/nso.po         |  576 +++++------
 po/oc.po          |  576 +++++------
 po/or.po          |  576 +++++------
 po/pa.po          |  576 +++++------
 po/pl.po          |  581 +++++------
 po/pms.po         |  572 +++++------
 po/ps.po          |  574 +++++------
 po/pt.po          |  611 +++++-------
 po/pt_BR.po       |  580 +++++------
 po/ro.po          |  578 +++++------
 po/ru.po          |  579 +++++------
 po/rw.po          |  570 +++++------
 po/si.po          |  574 +++++------
 po/sk.po          |  578 +++++------
 po/sl.po          |  578 +++++------
 po/sq.po          |  578 +++++------
 po/sr.po          |  577 +++++------
 po/sr@latin.po    |  576 +++++------
 po/sv.po          |  588 +++++------
 po/ta.po          |  576 +++++------
 po/te.po          |  576 +++++------
 po/th.po          |  578 +++++------
 po/tr.po          |  583 +++++------
 po/ug.po          |  576 +++++------
 po/uk.po          |  583 +++++------
 po/ur.po          |  576 +++++------
 po/uz.po          |  578 +++++------
 po/vi.po          |  576 +++++------
 po/wa.po          |  570 +++++------
 po/xh.po          |  576 +++++------
 po/yi.po          |  570 +++++------
 po/yo.po          |  576 +++++------
 po/zh_CN.po       |  581 +++++------
 po/zh_HK.po       |  576 +++++------
 po/zh_TW.po       |  578 +++++------
 po/zu.po          |  576 +++++------
 114 files changed, 31097 insertions(+), 37104 deletions(-)

commit dfd0dbbd45e48b5fbb5ace2d4b0fc7fc8ff22d1a
Author: monsta <monsta@inbox.ru>
Date:   Mon Mar 13 14:42:19 2017 +0300

    update NEWS for 1.18, also add 1.16.1 entries

 NEWS | 61 ++++++++++++++++++++++++-------------------------------------
 1 file changed, 24 insertions(+), 37 deletions(-)

commit 12aee91b2a37ba65ff4d7edfc6936b3c27e3cb73
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Feb 7 17:00:36 2017 +0100

    Don't spam accessible name changes when it is translated
    
    Fix the logic guarding against updating the name and description so
    that it properly checks against strings in the same locale.
    
    This prevents spamming accessibility 'accessible-name' change events,
    avoiding some noise when interacting with the panel.

 mate-panel/panel-toplevel.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 3cc5d973c619704ccfb8bb6927fdacda02f20df2
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Jan 31 11:10:13 2017 +0100

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 0149809d9ea5d8f4d72b8f9a2bed139bfda98730
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Jan 30 10:38:56 2017 +0100

    notification area: Fix system tray icons forced ordering
    
    The order was reversed when porting from the previous sorting method.
    
    Part of #521.

 applets/notification_area/system-tray/na-tray-child.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 2fec9eb820fd44d8397df32aa61346077f301caa
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 30 15:16:21 2017 -0500

    window-list: add GTK 3.20 version check to css forcing zero padding
    
    This version check added to version 1.16 backport, let's use it in master too

 applets/wncklet/window-list.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 88cd57f64f498be7223847540d3bc84e7ac5cd99
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 30 17:44:36 2017 +0300

    clock: fix remaining deprecation for GTK+ >= 3.20

 applets/clock/clock.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 3edb41ee3e632cec5fcda70d34f4a613e24adf52
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Wed Jan 25 20:33:17 2017 +0300

    status-notifier: Prefer not to scale theme icons

 .../notification_area/status-notifier/sn-item-v0.c | 48 +++++++++++++++++++---
 1 file changed, 42 insertions(+), 6 deletions(-)

commit 195c2a8d155cac5bd10d59a481259c161cea6c57
Author: Alexei Sorokin <sor.alexei@meowr.ru>
Date:   Wed Jan 25 20:25:46 2017 +0300

    status-notifier: prefer not to scale advertised pixmaps

 .../notification_area/status-notifier/sn-item-v0.c | 82 +++++++---------------
 1 file changed, 25 insertions(+), 57 deletions(-)

commit 3acef3022881d02e82aa0e743389060ab06321cd
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 25 17:33:55 2017 +0300

    po: remove a file without translatable strings from list
    
    fixes build breakage because of moved file after new tray area changes

 po/POTFILES.in | 1 -
 1 file changed, 1 deletion(-)

commit ad7ab88a26a5323624f0dd68e517bbaa9617b5a9
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jan 24 15:54:24 2017 +0100

    status-notifier: Make SnFlatButton GPLv2+
    
    It never was intended to be v3+ while upstream is v2+, so fix it.

 applets/notification_area/status-notifier/sn-flat-button.c | 2 +-
 applets/notification_area/status-notifier/sn-flat-button.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 34dbe117b0ca67b5c1e80e11b529e9863c9c9758
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Tue Jan 24 15:28:40 2017 +0100

    status-notifier: Fix item icons transparency

 .../notification_area/status-notifier/sn-item-v0.c    | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit 1c7cea2fed9c95bdf3b1831f8287ecdc551152b6
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Jan 23 18:39:18 2017 +0100

    status-notifier: Shut GCC up

 applets/notification_area/status-notifier/sn-item-v0.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 50a7d2dd2516e1c1b2b347a89b70f879ac6811de
Author: Alberts Muktupāvels <alberts.muktupavels@gmail.com>
Date:   Tue Dec 20 18:02:00 2016 +0200

    status-notifier: avoid useless warnings about missing properties

 applets/notification_area/status-notifier/sn-item-v0.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 017323dd4f8337ec91dd18f13955ab2e9df26cff
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Jan 23 18:08:45 2017 +0100

    status-notifier: Remove custom image menu item class
    
    It's only there because GtkImageMenuItem is deprecated, it doesn't
    offer any original features.

 .../notification_area/status-notifier/Makefile.am  |   2 -
 .../status-notifier/sn-dbus-menu-item.c            |  59 +++---
 .../status-notifier/sn-image-menu-item.c           | 220 ---------------------
 .../status-notifier/sn-image-menu-item.h           |  51 -----
 4 files changed, 32 insertions(+), 300 deletions(-)

commit 352600f12126c2f974a2510dfb744ba4f562da3f
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Mon Jan 23 10:18:44 2017 +0100

    status-notifier: Move GTK compatibility code inline

 .../notification_area/status-notifier/Makefile.am  |   3 -
 .../status-notifier/sn-compat-gtk-3.16.h           |  40 --------
 .../status-notifier/sn-compat-gtk-3.22.h           | 102 ---------------------
 .../status-notifier/sn-compat-gtk.h                |  24 -----
 .../status-notifier/sn-image-menu-item.c           |   6 +-
 .../notification_area/status-notifier/sn-item.c    |  67 +++++++++++++-
 6 files changed, 69 insertions(+), 173 deletions(-)

commit 290a5d6fcdeed499cd6220c62d3e55b51c558a43
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 18:08:19 2017 +0100

    status-notifier: Simplify compatibility code for GTK 3.20
    
    Also, that part was quite fragile.

 .../notification_area/status-notifier/Makefile.am  |  1 -
 .../status-notifier/sn-compat-gtk-3.20.h           | 56 ----------------------
 .../status-notifier/sn-compat-gtk.h                |  1 -
 .../notification_area/status-notifier/sn-item.c    | 16 ++++---
 4 files changed, 10 insertions(+), 64 deletions(-)

commit f173f6acf99fc98ac7f10b8bc2bb614581aea518
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 16:54:40 2017 +0100

    system-tray: Restrict the ordering hack to the system-tray module

 applets/notification_area/na-item.h                |  7 ---
 .../notification_area/system-tray/na-tray-child.c  | 69 +++++++++++-----------
 2 files changed, 35 insertions(+), 41 deletions(-)

commit b0b2defd1e037bda6aed9c198b05515cce17caab
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 16:11:20 2017 +0100

    status-notifier: Don't add extra padding around the icons
    
    It makes them look a little blurry at the "proper" sizes (32, 48, etc.)
    where the system-tray ones are perfect.  Without the padding, they get
    blurry at the same sizes system-tray ones do, not making the situation
    worse.

 applets/notification_area/status-notifier/sn-item-v0.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit bd25c5b4c173bb3541f204c60ffb9450a0d010cd
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 15:49:00 2017 +0100

    status-notifier: Fix elements display on GTK < 3.20
    
    On GTK 3.20 onwards, themes are expected to use CSS names rather than
    widget class names, and apparently CSS names are not inherited.  So, a
    derived widget altering its CSS name won't be styled as its parent
    classes.
    
    Thus, SnItem setting the CSS name "sn-item" avoids being styled as a
    "button".  But on older GTK versions, the widget class being used makes
    this change ineffective.
    Fix that by introducing a custom derived button that doesn't draw the
    unwanted parts.

 .../notification_area/status-notifier/Makefile.am  |   2 +
 .../status-notifier/sn-flat-button.c               | 174 +++++++++++++++++++++
 .../status-notifier/sn-flat-button.h               |  60 +++++++
 .../notification_area/status-notifier/sn-item.c    |   2 +-
 .../notification_area/status-notifier/sn-item.h    |   6 +-
 5 files changed, 241 insertions(+), 3 deletions(-)

commit 5349369f93fa6900e5bf2733fd2a56108dffcbb6
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 11:35:20 2017 +0100

    Add compatibility for GTK 3.14

 .../notification_area/status-notifier/Makefile.am  |   4 +
 .../status-notifier/sn-compat-gtk-3.16.h           |  40 ++++++++
 .../status-notifier/sn-compat-gtk-3.20.h           |  56 +++++++++++
 .../status-notifier/sn-compat-gtk-3.22.h           | 102 +++++++++++++++++++++
 .../status-notifier/sn-compat-gtk.h                |  25 +++++
 .../status-notifier/sn-image-menu-item.c           |   2 +
 .../notification_area/status-notifier/sn-item-v0.c |   2 +
 .../notification_area/status-notifier/sn-item.c    |   2 +
 8 files changed, 233 insertions(+)

commit da419c619744efc754e72df2e2101a32adca8a37
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Fri Jan 20 11:03:03 2017 +0100

    Lower GLib dependency

 .../libstatus-notifier-watcher/gf-sn-watcher-v0.h  | 15 +++++++++++---
 .../gf-status-notifier-watcher.h                   | 15 +++++++++++---
 applets/notification_area/na-host.h                | 24 ++++++++++++++--------
 applets/notification_area/na-item.h                | 10 +++++++--
 .../status-notifier/sn-dbus-menu.h                 | 15 ++++++++++++--
 .../notification_area/status-notifier/sn-host-v0.h | 14 +++++++++++--
 .../status-notifier/sn-image-menu-item.h           | 16 ++++++++++++---
 .../notification_area/status-notifier/sn-item-v0.h | 15 ++++++++++++--
 .../notification_area/status-notifier/sn-item.c    | 14 +++++--------
 .../notification_area/status-notifier/sn-item.h    | 20 ++++++++++++++++--
 10 files changed, 121 insertions(+), 37 deletions(-)

commit 7d39b2e82f46777efa67224f078c1cec9e827654
Author: Colomban Wendling <cwendling@hypra.fr>
Date:   Thu Jan 19 18:46:10 2017 +0100

    Add StatusNotifier support to the Notification Area applet
    
    The StatusNotifier part of the implementation is based off
    gnome-panel's status-notifier applet.

 applets/notification_area/Makefile.am              |   43 +-
 .../libstatus-notifier-watcher/Makefile.am         |   45 +
 .../libstatus-notifier-watcher/README              |    2 +
 .../libstatus-notifier-watcher/gf-sn-watcher-v0.c  |  395 ++++++
 .../libstatus-notifier-watcher/gf-sn-watcher-v0.h  |   33 +
 .../gf-status-notifier-watcher.c                   |   64 +
 .../gf-status-notifier-watcher.h                   |   33 +
 .../org.kde.StatusNotifierWatcher.xml              |   42 +
 applets/notification_area/main.c                   |  166 ++-
 applets/notification_area/na-box.c                 |  366 ++++++
 applets/notification_area/na-box.h                 |   56 +
 applets/notification_area/na-host.c                |  105 ++
 applets/notification_area/na-host.h                |   48 +
 applets/notification_area/na-item.c                |   91 ++
 applets/notification_area/na-item.h                |   64 +
 .../notification_area/status-notifier/Makefile.am  |   83 ++
 applets/notification_area/status-notifier/README   |    2 +
 .../status-notifier/com.canonical.dbusmenu.xml     |   74 ++
 .../status-notifier/org.kde.StatusNotifierHost.xml |    8 +
 .../status-notifier/org.kde.StatusNotifierItem.xml |   80 ++
 .../org.kde.StatusNotifierWatcher.xml              |   42 +
 .../status-notifier/sn-dbus-menu-item.c            |  472 +++++++
 .../status-notifier/sn-dbus-menu-item.h            |   64 +
 .../status-notifier/sn-dbus-menu.c                 |  472 +++++++
 .../status-notifier/sn-dbus-menu.h                 |   33 +
 .../notification_area/status-notifier/sn-host-v0.c |  487 +++++++
 .../notification_area/status-notifier/sn-host-v0.h |   33 +
 .../status-notifier/sn-image-menu-item.c           |  216 ++++
 .../status-notifier/sn-image-menu-item.h           |   41 +
 .../notification_area/status-notifier/sn-item-v0.c | 1355 ++++++++++++++++++++
 .../notification_area/status-notifier/sn-item-v0.h |   37 +
 .../notification_area/status-notifier/sn-item.c    |  491 +++++++
 .../notification_area/status-notifier/sn-item.h    |   70 +
 applets/notification_area/system-tray/Makefile.am  |   42 +
 .../notification_area/{ => system-tray}/fixedtip.c |    0
 .../notification_area/{ => system-tray}/fixedtip.h |    0
 .../{ => system-tray}/na-marshal.list              |    0
 .../{ => system-tray}/na-tray-child.c              |  179 ++-
 .../{ => system-tray}/na-tray-child.h              |    2 +
 .../{ => system-tray}/na-tray-manager.c            |    0
 .../{ => system-tray}/na-tray-manager.h            |    0
 .../notification_area/{ => system-tray}/na-tray.c  |  372 ++----
 .../notification_area/{ => system-tray}/na-tray.h  |   17 +-
 applets/notification_area/testtray.c               |   88 +-
 configure.ac                                       |    6 +
 45 files changed, 5952 insertions(+), 367 deletions(-)

commit a506150684ad2e71b1f70190ee70fe9eda7a4ba9
Author: Martin Wimpress <code@flexion.org>
Date:   Fri Jan 20 11:02:52 2017 +0000

    Add (optional) support for menulibre. https://smdavis.us/projects/menulibre/ (#515)
    
    This patch re-purposes the existing fallback support for the now obsolete
    matemenu-simple-editor to add (optional) support for menulibre. The logic is
    simple, if menulibre is installed use it in preference to mozo. If menulibre
    is not available, fallback to mozo.
    
    The rationale is this; if you've installed menulibre you want to use it
    in preference to mozo. Menulibre offers a superset of menu editting
    capabilities compared to mozo and is growing in popularity. This change will
    allow distro maintainers to chose which menu editor they want
    to offer.

 mate-panel/panel-menu-bar.c    |  6 +++---
 mate-panel/panel-menu-button.c | 10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

commit b39014be1238e369d481667cdda787dace91382d
Author: Martin Wimpress <martin@mate-desktop.org>
Date:   Wed Jan 18 19:00:17 2017 +0000

    Bump version to 1.17.1

 NEWS | 58 +++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 45 insertions(+), 13 deletions(-)

commit 7ee450758e4f2bee13aa8ff967a5795a6dcdc91f
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Mon Jan 2 23:29:52 2017 +0300

    support desktop actions

 mate-panel/applet.c                     |  50 +++---
 mate-panel/applet.h                     |   4 +-
 mate-panel/launcher.c                   | 302 ++++++++++++++++++--------------
 mate-panel/launcher.h                   |   9 +-
 mate-panel/libpanel-util/panel-launch.c |  37 ++--
 mate-panel/libpanel-util/panel-launch.h |  10 +-
 mate-panel/libpanel-util/panel-show.c   |  20 ++-
 mate-panel/mate-desktop-item-edit.c     |   9 +-
 mate-panel/panel-ditem-editor.c         |  11 +-
 mate-panel/panel-ditem-editor.h         |   2 -
 mate-panel/panel-util.c                 |  10 +-
 mate-panel/panel-util.h                 |   2 +-
 mate-panel/xstuff.c                     |   3 -
 13 files changed, 256 insertions(+), 213 deletions(-)

commit a27e6eaffa7e3bf72381b63dc9cfecc06125fce2
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri Jan 13 18:42:21 2017 +0100

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 1dd29732f03f96ab579823f1326e9405331ebceb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jan 10 13:02:49 2017 -0500

    window-list.c: Fix indent

 applets/wncklet/window-list.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

commit d06d561dfca50f269c6113bf72fd10e063713942
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 9 23:16:46 2017 -0500

    GTK 3.20/3.22: fix warnings from show-desktop button
    Force zero padding, margin, border to stop underallocation warnings.
    
    *Note: few themes deliberately use a border here, some (notably Adwaita) inherit it from generic buttons

 applets/wncklet/showdesktop.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 5bdda73212808452a1355906b4b47615a2cb7024
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 9 23:04:46 2017 -0500

    GTK 3.20/22: fix warnings from tasklist buttons
    Force padding and margins to zero. Borders don't seem to throw warnings here

 applets/wncklet/window-list.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 72c14cd7309e2b54798e547c240aefe224a11eff
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 9 21:42:46 2017 -0500

    Remove unused variable

 applets/clock/clock.c | 1 -
 1 file changed, 1 deletion(-)

commit 07b3132af934bd61629be064206d7d12e59baa88
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 9 19:50:44 2017 -0500

    GTK 3.20/22 Clock button: force zero padding and margin
    Stops negative allocation warnings unless theme sets a border

 applets/clock/clock.c | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)

commit 02b7511302cef8b527cbc45c1ac674ab28f2dc01
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Mon Jan 9 19:20:21 2017 -0500

    Clock: remove non-working signal, fix warning
    Comment out size-request signal for label, this no longer works if it ever did. Then comment out function this leaves unused.

 applets/clock/clock.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 0802dc27cae8b42766704e8e848f7fc035c66019
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Sun Jan 8 21:20:22 2017 +0300

    Gtk-WARNING: Allocating size to GtkAlignment..

 mate-panel/button-widget.c | 2 --
 1 file changed, 2 deletions(-)

commit 02cd174ef19bb1ea82a3312682a8817ef9aea684
Author: monsta <monsta@inbox.ru>
Date:   Thu Jan 5 02:05:12 2017 +0300

    build: don't require canberra, it's not used

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fbd0f1d8a815347beea1b2c5df5804c88aa406c6
Author: monsta <monsta@inbox.ru>
Date:   Thu Jan 5 01:36:19 2017 +0300

    remove ancient code leftovers
    
    once it was some easter egg, now it's just a non-working garbage

 icons/Makefile.am                      |    7 -
 icons/mate-gegl2-2.png                 |  Bin 10394 -> 0 bytes
 icons/mate-gegl2.png                   |  Bin 8359 -> 0 bytes
 mate-panel/Makefile.am                 |    2 -
 mate-panel/libpanel-util/panel-error.c |    6 -
 mate-panel/main.c                      |    2 -
 mate-panel/nothing.cP                  | 1572 --------------------------------
 mate-panel/nothing.h                   |   25 -
 mate-panel/panel-context-menu.c        |   26 -
 mate-panel/panel-properties-dialog.c   |    8 -
 mate-panel/panel-run-dialog.c          |   19 -
 mate-panel/panel-util.c                |    1 -
 po/POTFILES.in                         |    1 -
 13 files changed, 1669 deletions(-)

commit 064c41256b25b35f1ac5167863ca99708c60755b
Author: monsta <monsta@inbox.ru>
Date:   Thu Jan 5 00:09:33 2017 +0300

    xstuff: remove unused code

 mate-panel/xstuff.c | 314 ----------------------------------------------------
 mate-panel/xstuff.h |  22 ----
 2 files changed, 336 deletions(-)

commit 0f07e13e7b988b0e6b272484f2f235c244e2fb15
Author: monsta <monsta@inbox.ru>
Date:   Sat Dec 24 01:15:40 2016 +0300

    build: require libmateweather >= 1.17.0 (GTK+3 only)

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 515c20e85cfdc5beff9b4b8a072876114bc73e76
Author: ZenWalker <scow@riseup.net>
Date:   Tue Nov 29 23:22:17 2016 +0100

    Fix: the panel does not display the icon on the mouse with dnd
    
    Fixes #457

 mate-panel/applet.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit e0bef379c5ee30aaf369a6a493ba7ef94d376fcb
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Nov 22 12:47:28 2016 +0100

    release 1.17.0

 NEWS | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit f15d05129dcbd91eac036dbf997659082ddbd6bf
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Nov 22 12:40:21 2016 +0100

    sync with transiflex

 po/bg.po          | 117 ++++++++-------
 po/br.po          |   7 +-
 po/ca@valencia.po | 441 +++++++++++++++++++++++++++---------------------------
 po/hu.po          |   2 +-
 po/ku_IQ.po       | 104 ++++++-------
 po/mn.po          |  70 ++++-----
 po/nb.po          |  80 +++++-----
 po/ro.po          |  10 +-
 po/sl.po          |  13 +-
 po/sv.po          |   9 +-
 po/zh_CN.po       |   2 +-
 11 files changed, 430 insertions(+), 425 deletions(-)

commit b06a89bf26788cbcbcd12757cf9f59226f16b7dc
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 21:17:55 2016 +0300

    rename .ui file of panel properties dialog to the original name
    
    no need to mention GTK+3 anymore

 mate-panel/Makefile.am                                                | 2 +-
 mate-panel/panel-properties-dialog.c                                  | 4 ++--
 .../{panel-properties-dialog-gtk3.ui => panel-properties-dialog.ui}   | 0
 po/POTFILES.in                                                        | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

commit d0ddaedffa7d417a699cafce73c1e418515c4a28
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 21:14:26 2016 +0300

    move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build option
    
    and require libmate-desktop >= 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.

 Makefile.am                                        |   3 +-
 NEWS                                               |   2 +
 applets/clock/calendar-window.c                    |  25 -
 applets/clock/clock-face.c                         | 113 ---
 applets/clock/clock-location-tile.c                |  53 --
 applets/clock/clock-location-tile.h                |   8 -
 applets/clock/clock-map.c                          |  80 ---
 applets/clock/clock-utils.c                        | 167 -----
 applets/clock/clock.c                              |  99 ---
 applets/fish/fish.c                                |  99 ---
 applets/notification_area/fixedtip.c               |  29 -
 applets/notification_area/main.c                   |  46 +-
 applets/notification_area/na-tray-child.c          | 116 ----
 applets/notification_area/na-tray-child.h          |   3 -
 applets/notification_area/na-tray-manager.c        | 130 ----
 applets/notification_area/na-tray-manager.h        |  17 -
 applets/notification_area/na-tray.c                |  94 ---
 applets/notification_area/na-tray.h                |   7 -
 applets/notification_area/testtray.c               |  21 -
 applets/wncklet/showdesktop.c                      |  36 -
 applets/wncklet/window-list.c                      |  20 -
 applets/wncklet/window-menu.c                      |  57 --
 applets/wncklet/workspace-switcher.c               | 175 +----
 configure.ac                                       |  50 +-
 libmate-panel-applet/Makefile.am                   |   2 +-
 .../libmatepanelapplet-4.0-uninstalled.pc.in       |   2 +-
 libmate-panel-applet/libmatepanelapplet-4.0.pc.in  |   2 +-
 libmate-panel-applet/mate-panel-applet.c           | 371 +---------
 libmate-panel-applet/mate-panel-applet.h           |  11 +-
 libmate-panel-applet/panel-plug-private.h          |   2 +-
 libmate-panel-applet/panel-plug.c                  |   2 +-
 libmate-panel-applet/test-dbus-applet.c            |  17 -
 mate-panel/Makefile.am                             |   1 -
 mate-panel/applet.c                                |  17 +-
 mate-panel/button-widget.c                         | 252 -------
 mate-panel/libegg/eggsmclient-private.h            |   3 -
 mate-panel/libegg/eggsmclient-xsmp.c               |  19 -
 .../panel-applet-container.c                       |   2 -
 mate-panel/libpanel-util/panel-color.c             |   5 -
 mate-panel/libpanel-util/panel-color.h             |   4 +-
 mate-panel/libpanel-util/panel-icon-chooser.c      |   4 -
 mate-panel/libpanel-util/panel-launch.c            |   4 -
 mate-panel/libpanel-util/panel-show.h              |   2 +-
 mate-panel/libpanel-util/panel-xdg.c               |   1 +
 mate-panel/libpanel-util/panel-xdg.h               |   2 +-
 mate-panel/menu.c                                  |  62 +-
 mate-panel/menu.h                                  |   1 -
 mate-panel/nothing.cP                              |   7 +-
 mate-panel/nothing.h                               |   3 +-
 mate-panel/panel-action-button.c                   |   9 -
 mate-panel/panel-action-protocol.c                 |   9 -
 mate-panel/panel-addto.c                           |   8 -
 mate-panel/panel-addto.h                           |   3 +
 mate-panel/panel-applet-frame.c                    | 118 +---
 mate-panel/panel-background-monitor.c              | 117 ----
 mate-panel/panel-background-monitor.h              |   5 +-
 mate-panel/panel-background.c                      | 490 +------------
 mate-panel/panel-background.h                      |  44 +-
 mate-panel/panel-context-menu.c                    |   4 +-
 mate-panel/panel-ditem-editor.c                    | 105 ---
 mate-panel/panel-force-quit.c                      |  41 --
 mate-panel/panel-frame.c                           | 160 -----
 mate-panel/panel-frame.h                           |   2 -
 mate-panel/panel-menu-bar.c                        |  55 +-
 mate-panel/panel-menu-button.c                     |   4 -
 mate-panel/panel-menu-button.h                     |   1 -
 mate-panel/panel-menu-items.c                      |   3 +-
 mate-panel/panel-multiscreen.c                     |  27 -
 mate-panel/panel-profile.c                         | 148 ----
 mate-panel/panel-profile.h                         |  15 -
 mate-panel/panel-properties-dialog.c               |  93 +--
 mate-panel/panel-properties-dialog.ui              | 767 ---------------------
 mate-panel/panel-reset.c                           |   2 +-
 mate-panel/panel-reset.h                           |   2 -
 mate-panel/panel-run-dialog.c                      |  29 +-
 mate-panel/panel-run-dialog.h                      |   2 +-
 mate-panel/panel-separator.c                       |  75 +-
 mate-panel/panel-session.c                         |   6 -
 mate-panel/panel-toplevel.c                        | 453 +-----------
 mate-panel/panel-types.h                           |  10 -
 mate-panel/panel-util.c                            |   8 -
 mate-panel/panel-widget.c                          | 192 +-----
 mate-panel/panel-xutils.c                          |   9 -
 mate-panel/panel.c                                 |  17 -
 mate-panel/xstuff.c                                |  47 --
 po/POTFILES.in                                     |   1 -
 86 files changed, 108 insertions(+), 5221 deletions(-)

commit 7dfeb78328039cf92a9f45d64c9b3662d967a1fe
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 20:02:50 2016 +0300

    build: require libmateweather 1.16.0

 configure.ac | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

commit b585e6b32a0afa36e1c5c698dd9ab79c2816b691
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 19:59:09 2016 +0300

    build: require dconf >= 0.13.4
    
    not sure if we need it though - we use dconf functions from
    libmate-desktop, not from libdconf directly

 configure.ac | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

commit 615eda9a394167fbc5e4f6bf4f3668e2c8aff080
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:56:46 2016 +0300

    libmate-panel-applet: remove redundant GLib version check in panel-plug

 libmate-panel-applet/panel-plug-private.h | 6 +++++-
 libmate-panel-applet/panel-plug.c         | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 762dd7e1eb33dc408c5fae091d0284ba71e4d0a0
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:44:23 2016 +0300

    panel-widget: panel_widget_unrealize is used only with GTK+ < 3.18

 mate-panel/panel-widget.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 084aa57d1c64b5961363c66446afc8a6ba993315
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:43:29 2016 +0300

    libmate-panel-applet: add missing brackets

 libmate-panel-applet/mate-panel-applet-gsettings.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 68af2ff04bddee08398843f9be36630e4cc9e7bb
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:41:19 2016 +0300

    build: require libmate-menu 1.10

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cd7c4c546fa230e78608c206502e9758eef22c54
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:41:01 2016 +0300

    check for stable release of GTK+3, not for development one

 applets/clock/clock.c                                          |  8 ++++----
 applets/notification_area/main.c                               |  6 +++---
 applets/wncklet/showdesktop.c                                  | 10 +++++-----
 applets/wncklet/window-menu.c                                  |  4 ++--
 libmate-panel-applet/mate-panel-applet.c                       |  2 +-
 libmate-panel-applet/panel-plug.c                              |  2 +-
 mate-panel/button-widget.c                                     |  6 +++---
 .../libmate-panel-applet-private/panel-applet-frame-dbus.c     |  2 +-
 mate-panel/panel-frame.c                                       |  2 +-
 mate-panel/panel-separator.c                                   |  2 +-
 mate-panel/panel-toplevel.c                                    |  8 ++++----
 mate-panel/panel-widget.c                                      |  2 +-
 12 files changed, 27 insertions(+), 27 deletions(-)

commit 9e5c593552795c283aec5fc61478794e6b2b4ae7
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:34:53 2016 +0300

    libegg: remove win32 & quartz leftovers

 mate-panel/libegg/eggsmclient-private.h | 8 +-------
 mate-panel/libegg/eggsmclient.c         | 6 ------
 2 files changed, 1 insertion(+), 13 deletions(-)

commit dd2394ed246b94870fed979cf4435c586ddc6d9f
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 21 18:33:04 2016 +0300

    fix indent a bit

 applets/clock/clock.c                   | 6 +++---
 libmate-panel-applet/panel-plug.c       | 2 +-
 mate-panel/button-widget.c              | 2 +-
 mate-panel/libegg/eggsmclient-private.h | 7 +++----
 mate-panel/libegg/eggsmclient.c         | 6 +++---
 mate-panel/panel-widget.c               | 1 +
 6 files changed, 12 insertions(+), 12 deletions(-)

commit 4501110b3bf0d817b455549223bba64b301453ee
Author: monsta <monsta@inbox.ru>
Date:   Wed Nov 9 12:43:25 2016 +0300

    clock: fix indent somewhat

 applets/clock/clock-location-tile.c |  538 ++++-----
 applets/clock/clock-location-tile.h |    6 +-
 applets/clock/clock-location.c      |  438 +++----
 applets/clock/clock-location.h      |   20 +-
 applets/clock/clock.c               | 2250 +++++++++++++++++------------------
 5 files changed, 1626 insertions(+), 1626 deletions(-)

commit aa5cbe39c5ee4d71ec2459bb24ad42ecdbaaebb6
Author: monsta <monsta@inbox.ru>
Date:   Tue Nov 8 12:13:47 2016 +0300

    clock: remove unused #include

 applets/clock/clock.c | 1 -
 1 file changed, 1 deletion(-)

commit 299fd12061be8eec8cdb97b7b0afb0307ef86944
Author: Błażej Szczygieł <spaz16@wp.pl>
Date:   Mon Mar 28 18:20:19 2016 +0200

    clock: update tooltip only when new text is different
    
    This can prevent problems with OpenGL on some drivers (see #397)

 applets/clock/clock.c | 25 ++++++++++++++++---------
 1 file changed, 16 insertions(+), 9 deletions(-)

commit 83cb1da7086ec9f901d5cc7eea2d9e2c569f8266
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Wed Oct 19 16:44:28 2016 -0400

    GTK+-3 Calendar Window: force minimum size
    
    Force minimum width for calendar window to stop jumping (on locations open/close) in themes that don't enlarge calendar from the rather small default. Set the minimum height smaller than any theme would set it as it otherwise just puts blank space under the last row rather than spacing out the numbers.
    
    Apparently GTK2 behaves differently here. Note that the GTK3 only selectors will have to come back out for the dev-gtk3-migration branch

 applets/clock/calendar-window.c | 3 +++
 1 file changed, 3 insertions(+)

commit d9802b17f8a6bb8a93ac80bf59613a696af07c59
Merge: 90e6948e 36a278a7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Sep 29 23:21:57 2016 -0400

    Merge pull request #483 from Safari77/markcurrentday
    
    clock-applet: mark current day

commit 36a278a769bd96677de471dfbccdd3816a49674d
Author: Sami Farin <hvtaifwkbgefbaei@gmail.com>
Date:   Thu Sep 29 00:09:33 2016 +0300

    clock-applet: mark current day

 applets/clock/calendar-window.c | 43 +++++++++++++++++++++++++++++++++++------
 1 file changed, 37 insertions(+), 6 deletions(-)

commit 90e6948e95401da51dc5558b2428cd058a8df260
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Sep 19 07:00:30 2016 +0200

    release 1.16.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 09e747e4309c74de816a43048d8bae8dce6ebfaa
Author: monsta <monsta@inbox.ru>
Date:   Sun Sep 18 17:40:55 2016 +0300

    update NEWS for 1.16

 NEWS | 54 ++++++++++++------------------------------------------
 1 file changed, 12 insertions(+), 42 deletions(-)

commit ed397fdb4417494d74452e727954b7787447fc96
Author: monsta <monsta@inbox.ru>
Date:   Sun Sep 18 17:40:46 2016 +0300

    sync with Transifex

 po/hr.po    | 38 +++++++++++++++++++-------------------
 po/ku_IQ.po | 27 ++++++++++++++-------------
 po/lt.po    |  6 +++---
 3 files changed, 36 insertions(+), 35 deletions(-)

commit 349c4302358d5584f14310c290be64cc31c388f9
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Aug 8 00:16:05 2016 +0200

    GTK+-3.20 panel-widget: use GtkSeat instead of deprecated device pointer

 mate-panel/panel-widget.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 57476a87183ca22766b2b263fffee70d40f1b4b6
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Aug 8 00:15:41 2016 +0200

    GTK+-3.20 top-level: use GtkSeat instead of deprecated device pointer

 mate-panel/panel-toplevel.c | 28 ++++++++++++++++++++--------
 1 file changed, 20 insertions(+), 8 deletions(-)

commit 7024dfb18176ef0b429d0dc2768b1053546c76db
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Aug 8 00:15:05 2016 +0200

    GTK+-3.20 force quit: use GtkSeat instead of deprecated device pointer

 mate-panel/panel-force-quit.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit f0baa2d6410eee7469dffce61fc66a2c505178fe
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Aug 8 00:14:36 2016 +0200

    GTK+-3.20 panel-frame: use GtkSeat instead of deprecated device pointer

 mate-panel/panel-applet-frame.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 547cf089c1593156c8e5c0f767cf7a553039701e
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon Aug 8 00:12:45 2016 +0200

    GTK+-3.20 panel-applet: use GtkSeat instead of deprecated device pointer

 libmate-panel-applet/mate-panel-applet.c | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

commit 8cbf2ce21fa9ed77c428186990469b4b9c73d181
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Sep 1 21:05:52 2016 +0200

    release 1.15.1

 NEWS | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

commit a36c672ec6982c0d86de3a01e7af393400fac070
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Sep 1 20:57:49 2016 +0200

    sync with transiflex

 po/af.po          | 353 +++++++++++++++--------------
 po/am.po          | 353 +++++++++++++++--------------
 po/ar.po          | 370 ++++++++++++++++---------------
 po/as.po          | 353 +++++++++++++++--------------
 po/ast.po         | 353 +++++++++++++++--------------
 po/az.po          | 353 +++++++++++++++--------------
 po/be.po          | 353 +++++++++++++++--------------
 po/bg.po          | 353 +++++++++++++++--------------
 po/bn.po          | 353 +++++++++++++++--------------
 po/bn_IN.po       | 353 +++++++++++++++--------------
 po/br.po          | 353 +++++++++++++++--------------
 po/bs.po          | 416 +++++++++++++++++++----------------
 po/ca.po          | 646 ++++++++++++++++++++++++++++--------------------------
 po/ca@valencia.po | 353 +++++++++++++++--------------
 po/cmn.po         | 353 +++++++++++++++--------------
 po/crh.po         | 353 +++++++++++++++--------------
 po/cs.po          | 353 +++++++++++++++--------------
 po/cy.po          | 353 +++++++++++++++--------------
 po/da.po          | 353 +++++++++++++++--------------
 po/de.po          | 353 +++++++++++++++--------------
 po/dz.po          | 353 +++++++++++++++--------------
 po/el.po          | 353 +++++++++++++++--------------
 po/en_AU.po       | 355 ++++++++++++++++--------------
 po/en_CA.po       | 353 +++++++++++++++--------------
 po/en_GB.po       | 353 +++++++++++++++--------------
 po/eo.po          | 353 +++++++++++++++--------------
 po/es.po          | 357 ++++++++++++++++--------------
 po/es_CO.po       | 360 ++++++++++++++++--------------
 po/es_MX.po       | 353 +++++++++++++++--------------
 po/et.po          | 353 +++++++++++++++--------------
 po/eu.po          | 353 +++++++++++++++--------------
 po/fa.po          | 353 +++++++++++++++--------------
 po/fi.po          | 353 +++++++++++++++--------------
 po/fr.po          | 353 +++++++++++++++--------------
 po/fr_CA.po       | 353 +++++++++++++++--------------
 po/frp.po         | 353 +++++++++++++++--------------
 po/fur.po         | 353 +++++++++++++++--------------
 po/fy.po          | 353 +++++++++++++++--------------
 po/ga.po          | 353 +++++++++++++++--------------
 po/gl.po          | 353 +++++++++++++++--------------
 po/gu.po          | 353 +++++++++++++++--------------
 po/ha.po          | 353 +++++++++++++++--------------
 po/he.po          | 353 +++++++++++++++--------------
 po/hi.po          | 353 +++++++++++++++--------------
 po/hr.po          | 353 +++++++++++++++--------------
 po/hu.po          | 353 +++++++++++++++--------------
 po/hy.po          | 353 +++++++++++++++--------------
 po/id.po          | 358 ++++++++++++++++--------------
 po/ig.po          | 353 +++++++++++++++--------------
 po/is.po          | 353 +++++++++++++++--------------
 po/it.po          | 353 +++++++++++++++--------------
 po/ja.po          | 390 +++++++++++++++++---------------
 po/jv.po          | 353 +++++++++++++++--------------
 po/ka.po          | 353 +++++++++++++++--------------
 po/kk.po          | 353 +++++++++++++++--------------
 po/kn.po          | 353 +++++++++++++++--------------
 po/ko.po          | 353 +++++++++++++++--------------
 po/ku.po          | 353 +++++++++++++++--------------
 po/ku_IQ.po       | 353 +++++++++++++++--------------
 po/ky.po          | 353 +++++++++++++++--------------
 po/li.po          | 353 +++++++++++++++--------------
 po/lt.po          | 409 ++++++++++++++++++----------------
 po/lv.po          | 353 +++++++++++++++--------------
 po/mai.po         | 353 +++++++++++++++--------------
 po/mg.po          | 353 +++++++++++++++--------------
 po/mk.po          | 353 +++++++++++++++--------------
 po/ml.po          | 353 +++++++++++++++--------------
 po/mn.po          | 353 +++++++++++++++--------------
 po/mr.po          | 353 +++++++++++++++--------------
 po/ms.po          | 353 +++++++++++++++--------------
 po/nb.po          | 353 +++++++++++++++--------------
 po/nds.po         | 353 +++++++++++++++--------------
 po/ne.po          | 353 +++++++++++++++--------------
 po/nl.po          | 353 +++++++++++++++--------------
 po/nn.po          | 353 +++++++++++++++--------------
 po/nso.po         | 353 +++++++++++++++--------------
 po/oc.po          | 353 +++++++++++++++--------------
 po/or.po          | 353 +++++++++++++++--------------
 po/pa.po          | 353 +++++++++++++++--------------
 po/pl.po          | 353 +++++++++++++++--------------
 po/pms.po         | 353 +++++++++++++++--------------
 po/ps.po          | 353 +++++++++++++++--------------
 po/pt.po          | 353 +++++++++++++++--------------
 po/pt_BR.po       | 355 ++++++++++++++++--------------
 po/ro.po          | 353 +++++++++++++++--------------
 po/ru.po          | 353 +++++++++++++++--------------
 po/rw.po          | 353 +++++++++++++++--------------
 po/si.po          | 353 +++++++++++++++--------------
 po/sk.po          | 353 +++++++++++++++--------------
 po/sl.po          | 353 +++++++++++++++--------------
 po/sq.po          | 353 +++++++++++++++--------------
 po/sr.po          | 353 +++++++++++++++--------------
 po/sr@latin.po    | 353 +++++++++++++++--------------
 po/sv.po          | 353 +++++++++++++++--------------
 po/ta.po          | 353 +++++++++++++++--------------
 po/te.po          | 353 +++++++++++++++--------------
 po/th.po          | 405 ++++++++++++++++++----------------
 po/tr.po          | 353 +++++++++++++++--------------
 po/ug.po          | 353 +++++++++++++++--------------
 po/uk.po          | 353 +++++++++++++++--------------
 po/ur.po          | 353 +++++++++++++++--------------
 po/uz.po          | 353 +++++++++++++++--------------
 po/vi.po          | 353 +++++++++++++++--------------
 po/wa.po          | 353 +++++++++++++++--------------
 po/xh.po          | 353 +++++++++++++++--------------
 po/yi.po          | 353 +++++++++++++++--------------
 po/yo.po          | 353 +++++++++++++++--------------
 po/zh_CN.po       | 355 ++++++++++++++++--------------
 po/zh_HK.po       | 353 +++++++++++++++--------------
 po/zh_TW.po       | 353 +++++++++++++++--------------
 po/zu.po          | 353 +++++++++++++++--------------
 111 files changed, 21363 insertions(+), 18360 deletions(-)

commit 3a0f5c2fb9a270c7f987626f2973d12794dfe89c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Aug 4 13:54:48 2016 +0200

    Gtk+-2 properties-dialog: use Mate-ColorButton for gtk2 build

 mate-panel/panel-properties-dialog.c  | 14 +++++++++-----
 mate-panel/panel-properties-dialog.ui |  2 +-
 2 files changed, 10 insertions(+), 6 deletions(-)

commit 70e2fc7377121a7b905bb444634f9226a79e649b
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Aug 3 01:18:44 2016 +0200

    GTK+-3 properties-dialog: port to GtkColorChooser

 mate-panel/panel-properties-dialog-gtk3.ui |  2 +-
 mate-panel/panel-properties-dialog.c       | 14 +++++++++-----
 2 files changed, 10 insertions(+), 6 deletions(-)

commit d45dd88c9028fa69e543ded6909cd1da1a7ae842
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Aug 3 00:48:07 2016 +0200

    properties-dialog: drop usage of MateColorButton
    
    Use GtkColorButton instead

 mate-panel/panel-properties-dialog.c  | 20 +++++++++-----------
 mate-panel/panel-properties-dialog.ui |  2 +-
 2 files changed, 10 insertions(+), 12 deletions(-)

commit fedde22f81f466a2a558f59706fec7fe97f5493c
Author: Matt Spaulding <mspaulding06@gmail.com>
Date:   Sun Aug 7 13:05:43 2016 -0700

    Fix FTBFS with Gtk 3.18

 mate-panel/panel-toplevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 83edec3e9fcdcd843e99cdf0e5a40fb615e5a9e8
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 20:28:32 2016 +0200

    Gtk+3 UI: add panel-properties-dialog-gtk3.ui
    
    which is cleaned from deprecated widgets for >= gtk+-3.14

 configure.ac                               |   1 +
 mate-panel/Makefile.am                     |   1 +
 mate-panel/panel-properties-dialog-gtk3.ui | 834 +++++++++++++++++++++++++++++
 mate-panel/panel-properties-dialog.c       |  10 +
 po/POTFILES.in                             |   1 +
 5 files changed, 847 insertions(+)

commit 51342af82a752eaa1e036424766ee5950261cc3e
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 17:12:31 2016 +0200

    GTK+-3.0 panel-properties: port to GtkGrid

 mate-panel/panel-properties-dialog.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 9ae231e5c19852ef17710d98b07e39b8453073b3
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 16:10:23 2016 +0200

    GTK+-3 panel: don't set panel's initial size to G_MAXINT
    
    Replacing GtkTable with GtkGrid introduced new bug. Warning is -
    'Native children wider or taller than 65535 pixels are not supported'.
    This is caused by setting panels initial size to G_MAXINT. Changing
    initial size to 0 fixes this new bug.
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=02ce072

 mate-panel/panel-widget.c | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit ecf1736ccbc673a1d808d667b4516ecb5edffefe
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 14:52:41 2016 +0200

    GTK+-3 panel-toplevel: port to GtkGrid
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=281f4d5

 mate-panel/panel-toplevel.c | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

commit 1630aae8163fa2778ed556c36ab00cd76080394e
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sun Jul 24 18:12:14 2016 +0200

    GTK+-3 panel-ditem-editor: replace gtktable with gtkgrid
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=d254806

 mate-panel/panel-ditem-editor.c | 66 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)

commit 8459bf047b6e3dc2d62d8b6b8430c4d95f280f9e
Author: kajzer <kajzersoze72@gmail.com>
Date:   Sun Jul 31 02:25:16 2016 +0200

    clock: remove useless duplication

 applets/clock/clock.c | 2 --
 1 file changed, 2 deletions(-)

commit 0636d9f08e4e0bade1700784ecbc22950d9ac281
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:39:06 2016 +0200

    panel-context-menu: use GtkAbout and update copyright

 mate-panel/panel-context-menu.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit e2769ec922b622ca9362eb93271949aa42eecc44
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:34:28 2016 +0200

    clock: use GtkAbout and update copyright

 applets/clock/clock.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 0a852ea485c6b0b99a3337942d61a44b95572083
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:31:42 2016 +0200

    window-list: use GtkAbout and update copyright

 applets/wncklet/window-list.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 4e6fffb0f36f4ca2f17069fc3e3587918059733c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:29:07 2016 +0200

    show-desktop: use GtkAbout and update copyright

 applets/wncklet/showdesktop.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 8f77556a7ce4b75c695f4fb0f6d86e19637bd686
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:27:00 2016 +0200

    workspace-switcher: use GtkAbout and update copyright

 applets/wncklet/workspace-switcher.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 74e843e0888e6436381931e33bc9717334fc742f
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:14:53 2016 +0200

    window-menu applet: use GtkAbout and update copyright

 applets/wncklet/window-menu.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit d150d25bd7d9f7efb8f08a14c30929dd8bec0386
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 11:09:03 2016 +0200

    na: : use GtkAbout and update copyright

 applets/notification_area/main.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit b1711b5535c030f948100a088199e8a6fb8aed06
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 10:53:32 2016 +0200

    fish: use GtkAbout and update copyright

 applets/fish/fish.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 072bc3d2c849194278d64657430e16fdd579f510
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu Jul 28 21:47:38 2016 +0200

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit e74f74a69fcc3f21409331bc59035048faed4f4d
Author: monsta <monsta@inbox.ru>
Date:   Tue Jul 26 12:10:26 2016 +0300

    multiscreen: drop unused function
    
    from
    https://git.gnome.org/browse/gnome-panel/commit/?id=f89661d8489a75d1c356925c6e53e8ccc9d7fbb9

 configure.ac                   |  3 ---
 mate-panel/panel-multiscreen.c | 42 ------------------------------------------
 mate-panel/panel-multiscreen.h |  2 --
 3 files changed, 47 deletions(-)

commit aaec0efff920ab8968776ea92e7688dbf67f1dca
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri Jul 15 21:29:47 2016 +0200

    distcheck: explicitly use currently selected GTK+ version

 Makefile.am | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 74aa6b823bdbe90fd6469c7afb3421992e679018
Merge: 29a2534c 85adb914
Author: Martin Wimpress <code@flexion.org>
Date:   Mon Jul 11 07:04:54 2016 +0100

    Merge pull request #456 from chrstphrchvz/patch-1
    
    fix typo

commit 85adb914ab8b10c696ee60dc14d0d3d007fa5a10
Author: Christopher Chavez <chrischavez@gmx.us>
Date:   Sun Jul 10 23:28:57 2016 -0600

    fix typo

 HACKING | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 29a2534c7f5de5a8dc06d48b2e7c52d7416d6a6e
Author: monsta <monsta@inbox.ru>
Date:   Thu Jun 30 14:39:23 2016 +0300

    clock: fix UI issues introduced in 882f8f4

 applets/clock/calendar-window.c     | 19 ++++++++++++++-----
 applets/clock/clock-location-tile.c | 20 ++++++++++----------
 2 files changed, 24 insertions(+), 15 deletions(-)

commit 882f8f4d9959b6b27f08d2ddb525c7347df1797c
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Fri Jun 24 23:33:04 2016 +0300

    use gtk_box_new instead of gtk_{h,v}box_new properly

 applets/clock/calendar-window.c      | 12 ++++++------
 applets/clock/clock-location-tile.c  | 12 +++++-------
 applets/clock/clock-location.c       |  5 -----
 applets/clock/clock.c                | 12 ++++++++----
 applets/notification_area/na-tray.c  |  5 -----
 applets/notification_area/testtray.c | 13 ++++++++-----
 mate-panel/nothing.cP                |  7 ++++---
 mate-panel/panel-addto.c             | 13 ++++++++-----
 mate-panel/panel-ditem-editor.c      |  8 ++++----
 mate-panel/panel-force-quit.c        |  8 ++++----
 10 files changed, 47 insertions(+), 48 deletions(-)

commit 8acec6d1ae0e50f0eee68ce6153d04a3beb5d52a
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Thu Jun 16 19:52:21 2016 +0300

    fixes for opensuse.layout

 data/opensuse.layout | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit 225702b3c6a609065465c66f0f2739fc1d2184a9
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Thu Jun 16 18:09:25 2016 +0300

    fix some warnings and deprecations

 applets/wncklet/window-list.c            | 17 +---------
 libmate-panel-applet/mate-panel-applet.c |  7 ++--
 mate-panel/applet.c                      | 11 +++---
 mate-panel/menu.c                        |  9 +++++
 mate-panel/panel-applet-frame.c          | 11 +++++-
 mate-panel/panel-context-menu.c          | 18 +++++-----
 mate-panel/panel-force-quit.c            | 24 ++++++++++++--
 mate-panel/panel-toplevel.c              | 47 +++++++++++++++++++-------
 mate-panel/panel-widget.c                | 57 ++++++++++++++++++++++++++------
 9 files changed, 143 insertions(+), 58 deletions(-)

commit de1be3467a6ff1b350fc286025364650c8d51d1e
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Wed Jun 15 18:10:58 2016 +0300

    Gtk3: rename panel_widget_size_request() to panel_widget_get_preferred_size()

 mate-panel/panel-widget.c | 152 ++++++++++++++++++++++++++++++++--------------
 1 file changed, 105 insertions(+), 47 deletions(-)

commit 27a3911679cc4d2b6e40de51e94f4c78a41c8364
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Wed Jun 15 17:48:31 2016 +0300

    Gtk3: fix no explicit return value type for set_background_region()

 mate-panel/panel-toplevel.c | 1 +
 1 file changed, 1 insertion(+)

commit 9b918701c8642d4b878a314fd25b54f51eec725d
Author: monsta <monsta@inbox.ru>
Date:   Tue Jun 28 12:35:40 2016 +0300

    po: drop languages not present on Transifex
    
    la (Latin) is present though, but it's empty, so no use for us

 po/LINGUAS        |    6 -
 po/be@latin.po    | 3531 -----------------------------------------------------
 po/en@shaw.po     | 3277 -------------------------------------------------
 po/gv.po          | 3395 --------------------------------------------------
 po/la.po          | 3014 ---------------------------------------------
 po/sr@ije.po      | 3331 --------------------------------------------------
 po/uz@cyrillic.po | 2948 --------------------------------------------
 7 files changed, 19502 deletions(-)

commit 92baa95d59f8d522a539b2b67ceef58c73c49e69
Author: monsta <monsta@inbox.ru>
Date:   Tue Jun 28 12:27:08 2016 +0300

    po: actually add new language from Transifex

 po/LINGUAS | 1 +
 1 file changed, 1 insertion(+)

commit b0f323eda1828b28cec45335d875b90a8c29a964
Author: monsta <monsta@inbox.ru>
Date:   Tue Jun 21 16:25:59 2016 +0300

    panel-test-applets: fix typo
    
    fixes https://github.com/mate-desktop/mate-panel/issues/439

 mate-panel/panel-test-applets.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 16e50b6a8181a70f2eb673ac9fa3aea2166dbd9c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Jun 8 17:36:10 2016 +0200

    release 1.15.0

 NEWS         | 15 +++++++++++++++
 configure.ac |  2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

commit 89d6bbf95cad443206e3850f75aef89f90c1ff81
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Jun 8 10:47:37 2016 +0200

    sync with Transiflex

 po/ca.po    |   14 +-
 po/cs.po    |    9 +-
 po/de.po    |    4 +-
 po/el.po    |   10 +-
 po/en_GB.po |    8 +-
 po/es.po    |    6 +-
 po/frp.po   |   28 +-
 po/hr.po    |   34 +-
 po/hu.po    |   11 +-
 po/it.po    |   17 +-
 po/ko.po    |    4 +-
 po/nb.po    |   12 +-
 po/pms.po   | 2926 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sq.po    |    8 +-
 po/sv.po    |   15 +-
 po/uz.po    |  291 +++---
 16 files changed, 3164 insertions(+), 233 deletions(-)

commit f18ef408e34afca9e41b239f4f91857a5016f543
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Jun 7 10:34:42 2016 +0200

    fix missing focus for panel widgets
    
    credits and thanks to Joanmarie from orca project
    
    fixes
    partially https://github.com/mate-desktop/mate-panel/issues/441
    https://github.com/mate-desktop/mate-panel/issues/440
    https://github.com/mate-desktop/mate-panel/issues/444

 mate-panel/panel-widget.c | 1 +
 1 file changed, 1 insertion(+)

commit bdeccee2a86224d2ff19d95e542a7ad48776a0e3
Author: monsta <monsta@inbox.ru>
Date:   Tue Jun 7 14:14:17 2016 +0300

    panel-widget: add missing function declaration for GTK+ >= 3.18
    
    fixes a build warning

 mate-panel/panel-widget.h | 3 +++
 1 file changed, 3 insertions(+)

commit 3f220ec6a5359d22cab098a0a019ed4fc008b6ca
Author: monsta <monsta@inbox.ru>
Date:   Thu May 5 17:16:16 2016 +0300

    added missing variable initialization

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 1 +
 1 file changed, 1 insertion(+)

commit d5a2a5d5bc36c3cd910bdeec8ed35a01e405022b
Author: monsta <monsta@inbox.ru>
Date:   Thu May 5 16:41:14 2016 +0300

    restore correct applet finalizing code
    
    Revert "Cancel background settings upon MatePanelAppletFrameDBus destruction. This is an attempt to fix https://github.com/mate-desktop/mate-panel/issues/214"
    
    This reverts commit e6a14da0f7946f77e4316a05e051527b54ec1c99.

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4decf2d9cab73997acf90e4131dd4f1cbb201dcd
Author: monsta <monsta@inbox.ru>
Date:   Thu May 5 16:35:35 2016 +0300

    revert old change that accidentally got here
    
    https://github.com/mate-desktop/mate-panel/commit/c5cd7ee4a663d862a5893fb48cbfb087540978cc

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 80171cb1deefad3e689c52d63051fe429d97b852
Author: raveit65 <chat-to-me@raveit.de>
Date:   Mon May 30 17:53:06 2016 +0200

    na-try-child: add missing include for GTK_Version_Check

 applets/notification_area/na-tray-child.c | 1 +
 1 file changed, 1 insertion(+)

commit ba36b95b7abefa122017ce391cba8a9374126846
Author: monsta <monsta@inbox.ru>
Date:   Wed Apr 13 16:55:59 2016 +0300

    configure: remove unused python-related directive

 configure.ac | 1 -
 1 file changed, 1 deletion(-)

commit e640b150dadd4cf9b42eef7001a3f36479562e60
Author: monsta <monsta@inbox.ru>
Date:   Thu Apr 7 15:57:55 2016 +0300

     po: add missing languages to LINGUAS + fix sorting a bit

 po/LINGUAS | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit f0c28e5e6dfb81965762001c9dba874b6272461c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Apr 6 22:35:06 2016 +0200

    release 1.14.0

 NEWS         | 1 +
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 4129a7516508666d1b3c6b505e764aee1b14732c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Apr 6 22:33:44 2016 +0200

    add new languages and sync with transiflex

 po/LINGUAS        |    3 +
 po/af.po          |   94 +-
 po/am.po          |   94 +-
 po/ar.po          |   94 +-
 po/as.po          |   94 +-
 po/ast.po         |   94 +-
 po/az.po          |   94 +-
 po/be.po          |   94 +-
 po/bg.po          |   94 +-
 po/bn.po          |   94 +-
 po/bn_IN.po       |   94 +-
 po/br.po          |   94 +-
 po/bs.po          |   94 +-
 po/ca.po          |   94 +-
 po/ca@valencia.po |   94 +-
 po/cmn.po         |   94 +-
 po/crh.po         |   94 +-
 po/cs.po          |   96 +-
 po/cy.po          |   94 +-
 po/da.po          |   94 +-
 po/de.po          |   94 +-
 po/dz.po          |   94 +-
 po/el.po          |   94 +-
 po/en_AU.po       |   94 +-
 po/en_CA.po       |   94 +-
 po/en_GB.po       |   94 +-
 po/eo.po          |   94 +-
 po/es.po          |  103 +-
 po/es_CO.po       | 2926 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_MX.po       | 2926 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/et.po          |   94 +-
 po/eu.po          |   94 +-
 po/fa.po          |   94 +-
 po/fi.po          |   94 +-
 po/fr.po          |   94 +-
 po/fr_CA.po       |   94 +-
 po/frp.po         | 2926 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/fur.po         |   94 +-
 po/fy.po          |   94 +-
 po/ga.po          |   94 +-
 po/gl.po          |   94 +-
 po/gu.po          |   94 +-
 po/ha.po          |   94 +-
 po/he.po          |   94 +-
 po/hi.po          |   94 +-
 po/hr.po          |   98 +-
 po/hu.po          |   94 +-
 po/hy.po          |   94 +-
 po/id.po          |   96 +-
 po/ig.po          |   94 +-
 po/is.po          |   94 +-
 po/it.po          |   94 +-
 po/ja.po          |   94 +-
 po/jv.po          |   94 +-
 po/ka.po          |   94 +-
 po/kk.po          |   94 +-
 po/kn.po          |   94 +-
 po/ko.po          |  102 +-
 po/ku.po          |   94 +-
 po/ku_IQ.po       |   94 +-
 po/ky.po          |   94 +-
 po/li.po          |   94 +-
 po/lt.po          |   94 +-
 po/lv.po          |   94 +-
 po/mai.po         |   94 +-
 po/mg.po          |   94 +-
 po/mk.po          |   94 +-
 po/ml.po          |   94 +-
 po/mn.po          |   94 +-
 po/mr.po          |   94 +-
 po/ms.po          |  102 +-
 po/nb.po          |   94 +-
 po/nds.po         |   94 +-
 po/ne.po          |   94 +-
 po/nl.po          |  102 +-
 po/nn.po          |   94 +-
 po/nso.po         |   94 +-
 po/oc.po          |   94 +-
 po/or.po          |   94 +-
 po/pa.po          |   94 +-
 po/pl.po          |   94 +-
 po/ps.po          |   94 +-
 po/pt.po          |   94 +-
 po/pt_BR.po       |  103 +-
 po/ro.po          |   94 +-
 po/ru.po          |   96 +-
 po/rw.po          |   94 +-
 po/si.po          |   94 +-
 po/sk.po          |  102 +-
 po/sl.po          |   94 +-
 po/sq.po          |   94 +-
 po/sr.po          |   94 +-
 po/sr@latin.po    |   94 +-
 po/sv.po          |   94 +-
 po/ta.po          |   94 +-
 po/te.po          |   94 +-
 po/th.po          |   94 +-
 po/tr.po          |   94 +-
 po/ug.po          |   94 +-
 po/uk.po          |  202 ++--
 po/ur.po          |   94 +-
 po/uz.po          |  116 +--
 po/vi.po          |   94 +-
 po/wa.po          |   94 +-
 po/xh.po          |   94 +-
 po/yi.po          |   94 +-
 po/yo.po          |   94 +-
 po/zh_CN.po       |   98 +-
 po/zh_HK.po       |   94 +-
 po/zh_TW.po       |   94 +-
 po/zu.po          |   94 +-
 111 files changed, 13908 insertions(+), 5125 deletions(-)

commit 9b153d43d0c393b64fc40761da20a32d9aaf5512
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Apr 6 22:28:15 2016 +0200

    Revert "add new languages and sync with transiflex"
    
    This reverts commit c57aa66fc8ddcc9baa21446e87c9332f11e0abed.

 applets/notification_area/na-tray.c |  229 +--
 po/LINGUAS                          |    3 -
 po/af.po                            |   94 +-
 po/am.po                            |   94 +-
 po/ar.po                            |   94 +-
 po/as.po                            |   94 +-
 po/ast.po                           |   94 +-
 po/az.po                            |   94 +-
 po/be.po                            |   94 +-
 po/bg.po                            |   94 +-
 po/bn.po                            |   94 +-
 po/bn_IN.po                         |   94 +-
 po/br.po                            |   94 +-
 po/bs.po                            |   94 +-
 po/ca.po                            |   94 +-
 po/ca@valencia.po                   |   94 +-
 po/cmn.po                           |   94 +-
 po/crh.po                           |   94 +-
 po/cs.po                            |   96 +-
 po/cy.po                            |   94 +-
 po/da.po                            |   94 +-
 po/de.po                            |   94 +-
 po/dz.po                            |   94 +-
 po/el.po                            |   94 +-
 po/en_AU.po                         |   94 +-
 po/en_CA.po                         |   94 +-
 po/en_GB.po                         |   94 +-
 po/eo.po                            |   94 +-
 po/es.po                            |  103 +-
 po/es_CO.po                         | 2926 -----------------------------------
 po/es_MX.po                         | 2926 -----------------------------------
 po/et.po                            |   94 +-
 po/eu.po                            |   94 +-
 po/fa.po                            |   94 +-
 po/fi.po                            |   94 +-
 po/fr.po                            |   94 +-
 po/fr_CA.po                         |   94 +-
 po/frp.po                           | 2926 -----------------------------------
 po/fur.po                           |   94 +-
 po/fy.po                            |   94 +-
 po/ga.po                            |   94 +-
 po/gl.po                            |   94 +-
 po/gu.po                            |   94 +-
 po/ha.po                            |   94 +-
 po/he.po                            |   94 +-
 po/hi.po                            |   94 +-
 po/hr.po                            |   98 +-
 po/hu.po                            |   94 +-
 po/hy.po                            |   94 +-
 po/id.po                            |   96 +-
 po/ig.po                            |   94 +-
 po/is.po                            |   94 +-
 po/it.po                            |   94 +-
 po/ja.po                            |   94 +-
 po/jv.po                            |   94 +-
 po/ka.po                            |   94 +-
 po/kk.po                            |   94 +-
 po/kn.po                            |   94 +-
 po/ko.po                            |  102 +-
 po/ku.po                            |   94 +-
 po/ku_IQ.po                         |   94 +-
 po/ky.po                            |   94 +-
 po/li.po                            |   94 +-
 po/lt.po                            |   94 +-
 po/lv.po                            |   94 +-
 po/mai.po                           |   94 +-
 po/mg.po                            |   94 +-
 po/mk.po                            |   94 +-
 po/ml.po                            |   94 +-
 po/mn.po                            |   94 +-
 po/mr.po                            |   94 +-
 po/ms.po                            |  102 +-
 po/nb.po                            |   94 +-
 po/nds.po                           |   94 +-
 po/ne.po                            |   94 +-
 po/nl.po                            |  102 +-
 po/nn.po                            |   94 +-
 po/nso.po                           |   94 +-
 po/oc.po                            |   94 +-
 po/or.po                            |   94 +-
 po/pa.po                            |   94 +-
 po/pl.po                            |   94 +-
 po/ps.po                            |   94 +-
 po/pt.po                            |   94 +-
 po/pt_BR.po                         |  103 +-
 po/ro.po                            |   94 +-
 po/ru.po                            |   96 +-
 po/rw.po                            |   94 +-
 po/si.po                            |   94 +-
 po/sk.po                            |  102 +-
 po/sl.po                            |   94 +-
 po/sq.po                            |   94 +-
 po/sr.po                            |   94 +-
 po/sr@latin.po                      |   94 +-
 po/sv.po                            |   94 +-
 po/ta.po                            |   94 +-
 po/te.po                            |   94 +-
 po/th.po                            |   94 +-
 po/tr.po                            |   94 +-
 po/ug.po                            |   94 +-
 po/uk.po                            |  202 +--
 po/ur.po                            |   94 +-
 po/uz.po                            |  116 +-
 po/vi.po                            |   94 +-
 po/wa.po                            |   94 +-
 po/xh.po                            |   94 +-
 po/yi.po                            |   94 +-
 po/yo.po                            |   94 +-
 po/zh_CN.po                         |   98 +-
 po/zh_HK.po                         |   94 +-
 po/zh_TW.po                         |   94 +-
 po/zu.po                            |   94 +-
 112 files changed, 5160 insertions(+), 14102 deletions(-)

commit d7a6434cd7f3dcbfc09386053bd9e212aae5284c
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Apr 6 22:01:53 2016 +0200

    Add Changelog generation

 Makefile.am | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit c57aa66fc8ddcc9baa21446e87c9332f11e0abed
Author: raveit65 <chat-to-me@raveit.de>
Date:   Wed Apr 6 21:57:41 2016 +0200

    add new languages and sync with transiflex

 applets/notification_area/na-tray.c |  229 ++-
 po/LINGUAS                          |    3 +
 po/af.po                            |   94 +-
 po/am.po                            |   94 +-
 po/ar.po                            |   94 +-
 po/as.po                            |   94 +-
 po/ast.po                           |   94 +-
 po/az.po                            |   94 +-
 po/be.po                            |   94 +-
 po/bg.po                            |   94 +-
 po/bn.po                            |   94 +-
 po/bn_IN.po                         |   94 +-
 po/br.po                            |   94 +-
 po/bs.po                            |   94 +-
 po/ca.po                            |   94 +-
 po/ca@valencia.po                   |   94 +-
 po/cmn.po                           |   94 +-
 po/crh.po                           |   94 +-
 po/cs.po                            |   96 +-
 po/cy.po                            |   94 +-
 po/da.po                            |   94 +-
 po/de.po                            |   94 +-
 po/dz.po                            |   94 +-
 po/el.po                            |   94 +-
 po/en_AU.po                         |   94 +-
 po/en_CA.po                         |   94 +-
 po/en_GB.po                         |   94 +-
 po/eo.po                            |   94 +-
 po/es.po                            |  103 +-
 po/es_CO.po                         | 2926 +++++++++++++++++++++++++++++++++++
 po/es_MX.po                         | 2926 +++++++++++++++++++++++++++++++++++
 po/et.po                            |   94 +-
 po/eu.po                            |   94 +-
 po/fa.po                            |   94 +-
 po/fi.po                            |   94 +-
 po/fr.po                            |   94 +-
 po/fr_CA.po                         |   94 +-
 po/frp.po                           | 2926 +++++++++++++++++++++++++++++++++++
 po/fur.po                           |   94 +-
 po/fy.po                            |   94 +-
 po/ga.po                            |   94 +-
 po/gl.po                            |   94 +-
 po/gu.po                            |   94 +-
 po/ha.po                            |   94 +-
 po/he.po                            |   94 +-
 po/hi.po                            |   94 +-
 po/hr.po                            |   98 +-
 po/hu.po                            |   94 +-
 po/hy.po                            |   94 +-
 po/id.po                            |   96 +-
 po/ig.po                            |   94 +-
 po/is.po                            |   94 +-
 po/it.po                            |   94 +-
 po/ja.po                            |   94 +-
 po/jv.po                            |   94 +-
 po/ka.po                            |   94 +-
 po/kk.po                            |   94 +-
 po/kn.po                            |   94 +-
 po/ko.po                            |  102 +-
 po/ku.po                            |   94 +-
 po/ku_IQ.po                         |   94 +-
 po/ky.po                            |   94 +-
 po/li.po                            |   94 +-
 po/lt.po                            |   94 +-
 po/lv.po                            |   94 +-
 po/mai.po                           |   94 +-
 po/mg.po                            |   94 +-
 po/mk.po                            |   94 +-
 po/ml.po                            |   94 +-
 po/mn.po                            |   94 +-
 po/mr.po                            |   94 +-
 po/ms.po                            |  102 +-
 po/nb.po                            |   94 +-
 po/nds.po                           |   94 +-
 po/ne.po                            |   94 +-
 po/nl.po                            |  102 +-
 po/nn.po                            |   94 +-
 po/nso.po                           |   94 +-
 po/oc.po                            |   94 +-
 po/or.po                            |   94 +-
 po/pa.po                            |   94 +-
 po/pl.po                            |   94 +-
 po/ps.po                            |   94 +-
 po/pt.po                            |   94 +-
 po/pt_BR.po                         |  103 +-
 po/ro.po                            |   94 +-
 po/ru.po                            |   96 +-
 po/rw.po                            |   94 +-
 po/si.po                            |   94 +-
 po/sk.po                            |  102 +-
 po/sl.po                            |   94 +-
 po/sq.po                            |   94 +-
 po/sr.po                            |   94 +-
 po/sr@latin.po                      |   94 +-
 po/sv.po                            |   94 +-
 po/ta.po                            |   94 +-
 po/te.po                            |   94 +-
 po/th.po                            |   94 +-
 po/tr.po                            |   94 +-
 po/ug.po                            |   94 +-
 po/uk.po                            |  202 +--
 po/ur.po                            |   94 +-
 po/uz.po                            |  116 +-
 po/vi.po                            |   94 +-
 po/wa.po                            |   94 +-
 po/xh.po                            |   94 +-
 po/yi.po                            |   94 +-
 po/yo.po                            |   94 +-
 po/zh_CN.po                         |   98 +-
 po/zh_HK.po                         |   94 +-
 po/zh_TW.po                         |   94 +-
 po/zu.po                            |   94 +-
 112 files changed, 14102 insertions(+), 5160 deletions(-)

commit 18f15671a36be7057110b261d2960da00038a3ab
Author: monsta <monsta@inbox.ru>
Date:   Wed Apr 6 16:58:43 2016 +0300

    update NEWS and pack 1.13.x changes into single 1.14.0 entry

 NEWS | 49 +++++++++++++++++--------------------------------
 1 file changed, 17 insertions(+), 32 deletions(-)

commit 7c1939a2c24ada430dd26190d4405d17c9dda741
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sun Mar 27 10:54:29 2016 +0200

    release 1.13.2

 NEWS | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 1d1852a9a803995506c6c0d22e578b85847e6eec
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sat Mar 26 21:27:17 2016 +0100

    sync with transiflex

 po/af.po          | 376 +++++++++++++++++++++------------------
 po/am.po          | 436 +++++++++++++++++++++++++---------------------
 po/ar.po          | 376 +++++++++++++++++++++------------------
 po/as.po          | 376 +++++++++++++++++++++------------------
 po/ast.po         | 376 +++++++++++++++++++++------------------
 po/az.po          | 376 +++++++++++++++++++++------------------
 po/be.po          | 376 +++++++++++++++++++++------------------
 po/bg.po          | 384 +++++++++++++++++++++-------------------
 po/bn.po          | 376 +++++++++++++++++++++------------------
 po/bn_IN.po       | 376 +++++++++++++++++++++------------------
 po/br.po          | 376 +++++++++++++++++++++------------------
 po/bs.po          | 376 +++++++++++++++++++++------------------
 po/ca.po          | 386 +++++++++++++++++++++-------------------
 po/ca@valencia.po | 376 +++++++++++++++++++++------------------
 po/cmn.po         | 376 +++++++++++++++++++++------------------
 po/crh.po         | 376 +++++++++++++++++++++------------------
 po/cs.po          | 377 ++++++++++++++++++++++------------------
 po/cy.po          | 376 +++++++++++++++++++++------------------
 po/da.po          | 443 ++++++++++++++++++++++++----------------------
 po/de.po          | 376 +++++++++++++++++++++------------------
 po/dz.po          | 376 +++++++++++++++++++++------------------
 po/el.po          | 376 +++++++++++++++++++++------------------
 po/en_AU.po       | 376 +++++++++++++++++++++------------------
 po/en_CA.po       | 376 +++++++++++++++++++++------------------
 po/en_GB.po       | 378 +++++++++++++++++++++-------------------
 po/eo.po          | 376 +++++++++++++++++++++------------------
 po/es.po          | 379 +++++++++++++++++++++-------------------
 po/et.po          | 378 ++++++++++++++++++++++------------------
 po/eu.po          | 376 +++++++++++++++++++++------------------
 po/fa.po          | 378 ++++++++++++++++++++++------------------
 po/fi.po          | 378 ++++++++++++++++++++++------------------
 po/fr.po          | 379 +++++++++++++++++++++-------------------
 po/fr_CA.po       | 376 +++++++++++++++++++++------------------
 po/fur.po         | 376 +++++++++++++++++++++------------------
 po/fy.po          | 376 +++++++++++++++++++++------------------
 po/ga.po          | 376 +++++++++++++++++++++------------------
 po/gl.po          | 376 +++++++++++++++++++++------------------
 po/gu.po          | 376 +++++++++++++++++++++------------------
 po/ha.po          | 376 +++++++++++++++++++++------------------
 po/he.po          | 376 +++++++++++++++++++++------------------
 po/hi.po          | 376 +++++++++++++++++++++------------------
 po/hr.po          | 376 +++++++++++++++++++++------------------
 po/hu.po          | 378 +++++++++++++++++++++-------------------
 po/hy.po          | 376 +++++++++++++++++++++------------------
 po/id.po          | 415 +++++++++++++++++++++++--------------------
 po/ig.po          | 376 +++++++++++++++++++++------------------
 po/is.po          | 376 +++++++++++++++++++++------------------
 po/it.po          | 376 +++++++++++++++++++++------------------
 po/ja.po          | 376 +++++++++++++++++++++------------------
 po/jv.po          | 376 +++++++++++++++++++++------------------
 po/ka.po          | 376 +++++++++++++++++++++------------------
 po/kk.po          | 380 ++++++++++++++++++++++------------------
 po/kn.po          | 376 +++++++++++++++++++++------------------
 po/ko.po          | 379 +++++++++++++++++++++-------------------
 po/ku.po          | 376 +++++++++++++++++++++------------------
 po/ku_IQ.po       | 376 +++++++++++++++++++++------------------
 po/ky.po          | 376 +++++++++++++++++++++------------------
 po/li.po          | 376 +++++++++++++++++++++------------------
 po/lt.po          | 430 ++++++++++++++++++++++++---------------------
 po/lv.po          | 376 +++++++++++++++++++++------------------
 po/mai.po         | 376 +++++++++++++++++++++------------------
 po/mg.po          | 376 +++++++++++++++++++++------------------
 po/mk.po          | 376 +++++++++++++++++++++------------------
 po/ml.po          | 376 +++++++++++++++++++++------------------
 po/mn.po          | 376 +++++++++++++++++++++------------------
 po/mr.po          | 376 +++++++++++++++++++++------------------
 po/ms.po          | 378 +++++++++++++++++++++-------------------
 po/nb.po          | 512 +++++++++++++++++++++++++++++-------------------------
 po/nds.po         | 376 +++++++++++++++++++++------------------
 po/ne.po          | 376 +++++++++++++++++++++------------------
 po/nl.po          | 376 +++++++++++++++++++++------------------
 po/nn.po          | 376 +++++++++++++++++++++------------------
 po/nso.po         | 376 +++++++++++++++++++++------------------
 po/oc.po          | 421 ++++++++++++++++++++++++--------------------
 po/or.po          | 376 +++++++++++++++++++++------------------
 po/pa.po          | 376 +++++++++++++++++++++------------------
 po/pl.po          | 377 ++++++++++++++++++++++------------------
 po/ps.po          | 376 +++++++++++++++++++++------------------
 po/pt.po          | 381 ++++++++++++++++++++++------------------
 po/pt_BR.po       | 379 +++++++++++++++++++++-------------------
 po/ro.po          | 408 +++++++++++++++++++++++--------------------
 po/ru.po          | 381 +++++++++++++++++++++-------------------
 po/rw.po          | 376 +++++++++++++++++++++------------------
 po/si.po          | 376 +++++++++++++++++++++------------------
 po/sk.po          | 378 +++++++++++++++++++++-------------------
 po/sl.po          | 376 +++++++++++++++++++++------------------
 po/sq.po          | 376 +++++++++++++++++++++------------------
 po/sr.po          | 376 +++++++++++++++++++++------------------
 po/sr@latin.po    | 376 +++++++++++++++++++++------------------
 po/sv.po          | 376 +++++++++++++++++++++------------------
 po/ta.po          | 376 +++++++++++++++++++++------------------
 po/te.po          | 376 +++++++++++++++++++++------------------
 po/th.po          | 417 ++++++++++++++++++++++++--------------------
 po/tr.po          | 376 +++++++++++++++++++++------------------
 po/ug.po          | 376 +++++++++++++++++++++------------------
 po/uk.po          | 380 +++++++++++++++++++++-------------------
 po/ur.po          | 376 +++++++++++++++++++++------------------
 po/uz.po          | 392 ++++++++++++++++++++++-------------------
 po/vi.po          | 376 +++++++++++++++++++++------------------
 po/wa.po          | 376 +++++++++++++++++++++------------------
 po/xh.po          | 376 +++++++++++++++++++++------------------
 po/yi.po          | 376 +++++++++++++++++++++------------------
 po/yo.po          | 376 +++++++++++++++++++++------------------
 po/zh_CN.po       | 378 ++++++++++++++++++++++------------------
 po/zh_HK.po       | 376 +++++++++++++++++++++------------------
 po/zh_TW.po       | 376 +++++++++++++++++++++------------------
 po/zu.po          | 376 +++++++++++++++++++++------------------
 107 files changed, 22221 insertions(+), 18567 deletions(-)

commit c14023e3713eb8d53a2426124e3d7907479d3ecb
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:56:22 2016 -0400

    GTK 3.18:Apply panelplug rework
    
    panel-plug.c Changing the panel background handling (from gnome-panel) for GTK 3.18 requires that the panelplug changes from gnome-panel also be applied or applets can mismatch the panel toplevel when an alpha value is present

 libmate-panel-applet/panel-plug.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0ac60dc13d55944c363eab68d5a34dcba326704a
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:55:08 2016 -0400

    GTK 3.18:Apply panelplug rework
    
    panel-plug-private.h  Changing the panel background handling (from gnome-panel) for GTK 3.18 requires that the panelplug changes from gnome-panel also be applied or applets can mismatch the panel toplevel when an alpha value is present

 libmate-panel-applet/panel-plug-private.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7cc67fd58e249109937ab876e852099d4be6b6e8
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:53:47 2016 -0400

    GTK 3.18:Apply panelplug rework
    
    mate-panel-applet.c Changing the panel background handling (from gnome-panel) for GTK 3.18 requires that the panelplug changes from gnome-panel also be applied or applets can mismatch the panel toplevel when an alpha value is present.

 libmate-panel-applet/mate-panel-applet.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit 9bf088cdca91e1feed8276fc55d2d47a460b983b
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:49:28 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-widget.c move background handling to the panel toplevel in GTK 3.18 and GTK 3.20 builds only, seems to fix the applet crashes on theme changes with a custom background loaded, and in GTK 3.20 also preserves custom backgrounds when GTK themes are changed

 mate-panel/panel-widget.c | 62 +++++++++++++++++++++++++++++------------------
 1 file changed, 38 insertions(+), 24 deletions(-)

commit 566242b000341de4b424fe215da6cff7b5ce6ad1
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:47:35 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-toplevel.h  move background handling to the panel toplevel in GTK 3.18 and GTK 3.20 builds only, seems to fix the applet crashes on theme changes with a custom background loaded, and in GTK 3.20 also preserves custom backgrounds when GTK themes are changed

 mate-panel/panel-toplevel.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 3fd59e58fe9119023bb177da6cf945d501f8804e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:45:32 2016 -0400

     Gtk3.18/3.20-move background handling toplevel
    
    panel-toplevel.c  move background handling to the panel toplevel in GTK 3.18 and GTK 3.20 builds only, seems to fix the applet crashes on theme changes with a custom background loaded, and in GTK 3.20 also preserves custom backgrounds when GTK themes are changed

 mate-panel/panel-toplevel.c | 188 ++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 180 insertions(+), 8 deletions(-)

commit 78790736f054ac2539e090ceea0e2f324dac075e
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:42:05 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-separator.c

 mate-panel/panel-separator.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit da9c05196c082312c18cb74fd21e1a4534d56f53
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:40:26 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-profile.c

 mate-panel/panel-profile.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit 40bb634d564dbf752fcc3420d3d92cef94eea592
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:38:33 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-menu-bar.c

 mate-panel/panel-menu-bar.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 448750ef63b8806323a4f4a9ed79e126cab206d6
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:36:34 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel-applet-frame.c

 mate-panel/panel-applet-frame.c | 26 +++++++++++++++++++++-----
 1 file changed, 21 insertions(+), 5 deletions(-)

commit 17a0277ecbc5156e5900efaffab4dcd88062ba98
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:33:48 2016 -0400

    Gtk3.18/3.20-move background handling toplevel
    
    panel.c

 mate-panel/panel.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 18cd1f0c30c8a6bd5c25a4a5942d199afaf0cf6f
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 24 23:22:09 2016 -0400

     GTK3.18-revert hack not needed with moved bg code
    
    Revert a technically incorrect hack previously needed for GTk 3.18 but no longer needed after moving the background handling to the panel toplevel. Moving the BG is  GTK 3.18 and later only it seems

 mate-panel/panel-background.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit f1ad9e27d125359efe2984e21b166bab3d392e81
Author: György Balló <ballogyor@gmail.com>
Date:   Mon Mar 21 05:33:09 2016 +0100

    GTK+3.20: adjust CSS classes for WnckPager
    
    This allows to use class names consistently. The old WnckPager CSS selector will not work with GTK+ 3.20.

 applets/wncklet/workspace-switcher.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit f9221b85ca81f34dc6eb258c6b160bf88ef0d7ea
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Mar 22 20:15:12 2016 +0100

    use gtk+-3.20 custom bg fixixes only for > gtk+-3.18 and > glib-2.42
    
    This fixes also distcheck

 configure.ac                              |  1 -
 libmate-panel-applet/Makefile.am          | 12 +-----------
 libmate-panel-applet/panel-plug-private.h |  4 ++++
 libmate-panel-applet/panel-plug.c         |  3 +++
 4 files changed, 8 insertions(+), 12 deletions(-)

commit b6684bd302bd6794771eb2569b2b7b1539f8be09
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 10 17:48:34 2016 -0500

    GTK 3.20-Prevent transparent panel on BG change
    
    The mate-custom-panel-background style class persists on the panel widget when resetting the panel BG to the system theme. It will overrride the panel system theme and turn the panel transparent with the new applet changes for some reason, so don't run panel_background_apply_css on GTK 3.20 builds. It's not needed to override t.he theme background for a custom background with the new code and GTK 3.20, and mate-panel-menu-bar is already present

 mate-panel/panel-widget.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit d7fda0e930816abe3696d86d88fd539e43125e9d
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 10 17:40:52 2016 -0500

    gtk3.20-fix custom BG change on applets
    
    Update makefile and configure.ac to build the new files needed for GTK 3.19 and later builds.

 configure.ac                     |  2 +-
 libmate-panel-applet/Makefile.am | 14 +++++++++++++-
 2 files changed, 14 insertions(+), 2 deletions(-)

commit ea38ff3e660049756adb98eb34ad1ab41aa08ee6
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 10 17:39:21 2016 -0500

    gtk3.20-fix custom BG change on applets
    
    file panel-plug-private.h used intact from github.com/GNOME/gnome-panel/commit/3115f77b536a7c79c7d43ded0591e2b8f45219c4 "restore custom background on applets
    
    Only included from mate-panel-applet.c when built against GTK 3.19 or later

 libmate-panel-applet/panel-plug-private.h | 32 +++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

commit 3ce73cc9a7e6f98454f52d3a746a731094a44ae9
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 10 17:36:46 2016 -0500

    gtk3.20-fix custom BG change on applets
    
    New file panel-plug.c used intact from
    github.com/GNOME/gnome-panel/commit/3115f77b536a7c79c7d43ded0591e2b8f45219c4 "restore custom background on applets)
    Used only in gtk 3.20 builds, though not sure if whole file built but not used when it's header file is not included in anything due to build time
    conditionals.

 libmate-panel-applet/panel-plug.c | 100 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 100 insertions(+)

commit a4d5480a2f4f7524fe2b5599dd99842465d4eeb3
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Mar 10 17:33:07 2016 -0500

    gtk3.20-fix custom BG change on applets
    
    mate-panel-applet.c
    based on
    github.com/GNOME/gnome-panel/commit/3115f77b536a7c79c7d43ded0591e2b8f45219c4 "restore custom background on applets)
    Reverts and replaces use of gtk_window_ensure_native on applets, uses the panel-plug-private files from gnome panel intact. This way the system theme returns when custom background is deselected w/o having to restart the panel.
    
    These changes kept behind gtk3.20 only build time conditionals. requires if-elif-endif three-way conditionals due to the extent to GTK differences. Doing it this way keeps panel applets from being twice as dark as the panel when an alpha color background is selected

 libmate-panel-applet/mate-panel-applet.c | 157 ++++++++++++++++++++++++-------
 1 file changed, 123 insertions(+), 34 deletions(-)

commit db46e948f57ad16170afeaf72d418c508ef63d1e
Author: monsta <monsta@inbox.ru>
Date:   Sun Mar 13 18:39:49 2016 +0300

    menubar: some corrections for new max-items-or-submenu key
    
    - remove check for menubar schema as it's already installed along with panel itself
    - properly unref menubar_settings object
    - make key type unsigned
    - drop obsolete MAX_ITEMS_OR_SUBMENU define

 data/org.mate.panel.menubar.gschema.xml.in |  2 +-
 mate-panel/panel-menu-items.c              | 26 ++++++++++++--------------
 2 files changed, 13 insertions(+), 15 deletions(-)

commit ef8676dad5facfc57a815e07588cd607fb8821a7
Author: Julian Rüger <jr98@gmx.net>
Date:   Fri Mar 11 13:50:27 2016 +0100

    Make MAX_ITEMS_OR_SUBMENU configurable.

 data/org.mate.panel.menubar.gschema.xml.in |  5 +++++
 mate-panel/panel-menu-items.c              | 23 +++++++++++++++++------
 mate-panel/panel-schemas.h                 |  1 +
 3 files changed, 23 insertions(+), 6 deletions(-)

commit 979e5aacd36f44b095426cd07e50eb77e85b50f2
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Feb 27 02:02:14 2016 -0500

    GTK3.20: preserve default background
    
    Add back the default background for themes such as Adwaita that do not explicitly support MATE. Tested with custom and system themes in Adwaita and all themes I have. System themes work perfectly, custom themes require restarting panel after any theme change, still need to restart panel after returning to the system theme from a custom theme as well.

 mate-panel/panel-widget.c | 3 +++
 1 file changed, 3 insertions(+)

commit 0fef6a917e9f60c52d0e4fb5b0d5ef9f8371a5f7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Feb 27 01:21:26 2016 -0500

    GTK 3.20 force custom BG drawing on applets
    
    Use gdk_window_ensure_native to applets when and only when a custom background is selected.
    Doing so when the system bg is selected will turn applets clear,
    so will not doing so when a custom background is selected.
    Keep all this behind if # GTK_CHECK_VERSION (3, 19, 0) so as not to screw up anything
    in older GTK versions.

 libmate-panel-applet/mate-panel-applet.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit b21ae316e9c500db40129870abb1bd9e0013e950
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sat Feb 27 00:05:34 2016 -0500

    gtk3.20: custom background work on main panel
    
    This makes custom backgrounds show on the panel, the menu, the launcher applets
    but not yet the tray, the clock button, the trash, or most applets from mate-applets.
    Sometimes panel BG not drawn after theme change until panel restarted.
    Still, this is a clue-will keep working.
    Adding gdk_window_ensure_native (window) was taken from gnome-panel but caused the
    default background not to show if the system BG is selected and does not explicitly
    set the theme. Also using this brings back the requirement to restart the panel to
    fully apply a system BG but progress is being made here.

 mate-panel/panel-widget.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit ed5e2577673901fc32a5b1e434be10299a64d2c4
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sat Feb 27 12:07:44 2016 +0100

    pre-bump version

 NEWS         | 4 +++-
 configure.ac | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 4007919a3cb51e7c46608bb768d683fbcf6b3a53
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 21 12:49:26 2016 +0100

    release 1.13.1

 NEWS | 9 +++++++++
 1 file changed, 9 insertions(+)

commit bd3d7bc04d864d37e054b9e51fb48cbabb7e18f7
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Sat Feb 20 18:39:53 2016 +0300

    add gschema key for setting menu icon sizes

 data/org.mate.panel.menubar.gschema.xml.in | 20 ++++++++++++++++++
 mate-panel/panel-stock-icons.c             | 33 ++++++++++++++++++++++++------
 2 files changed, 47 insertions(+), 6 deletions(-)

commit c29a88ff648af2e07a7cd657c027f1e5bf665ed6
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Feb 16 21:25:36 2016 +0300

    change default menu bar icon size to 22px
    
    with 24px panel 24px menu bar icon is too big: touches borders

 mate-panel/panel-stock-icons.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 22c04b86a42678e8099d1af00cb156c227ea669d
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Feb 16 18:58:16 2016 +0300

    panel-menu-bar.c: force icon size
    
    adapted from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=eefb31f

 mate-panel/panel-menu-bar.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

commit a0a59122dab148294f199aeb8e9a85901793c435
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Feb 16 03:09:46 2016 +0300

    fix some warnings

 applets/clock/clock-location.c  | 5 +++--
 applets/clock/system-timezone.c | 7 +++----
 mate-panel/panel-layout.c       | 2 +-
 mate-panel/panel-profile.c      | 4 ++--
 mate-panel/panel-widget.c       | 4 ++++
 mate-panel/panel.c              | 4 ++++
 6 files changed, 17 insertions(+), 9 deletions(-)

commit 44a6c2f7e478fce00cc987bb76ac519704c13da2
Author: Sorokin Alexei <sor.alexei@meowr.ru>
Date:   Tue Feb 16 02:09:29 2016 +0300

    merge panel_load_menu_image_deferred() into setup_menuitem_with_icon()
    
    also rename setup_menu_item_with_icon() to setup_menuitem_with_icon(),
    and drop GtkStock support from it

 mate-panel/menu.c             | 123 +++++++++++++++---------------------------
 mate-panel/menu.h             |  11 ++--
 mate-panel/panel-menu-items.c |  58 ++++++++++----------
 mate-panel/panel-recent.c     |  14 ++---
 4 files changed, 83 insertions(+), 123 deletions(-)

commit 25e25157410ff41965dd38f426538fed6c934913
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sat Feb 20 15:55:38 2016 +0100

    GTK+3: add style class wnck-pager

 applets/wncklet/workspace-switcher.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 4dcdb716ca1f9952243865e23e4b00bc2e0e465c
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Fri Feb 19 21:48:00 2016 +0100

    GTK+-3.20: add more css names
    
    - MatePanelAppletFrameDBus
    - PanelSeparator
    - PanelToplevel

 mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 5 +++++
 mate-panel/panel-separator.c                                      | 6 +++++-
 mate-panel/panel-toplevel.c                                       | 4 ++++
 3 files changed, 14 insertions(+), 1 deletion(-)

commit 0c90cb2bf84376e9fa10186bf3b19cee0681ea69
Author: Martin Wimpress <code@flexion.org>
Date:   Fri Feb 19 14:20:57 2016 +0000

    Sync with Transifex

 po/be.po    |  69 ++++----
 po/br.po    |  30 ++--
 po/ca.po    | 513 ++++++++++++++++++++++++++++++------------------------------
 po/cs.po    |  36 +++--
 po/cy.po    | 196 ++++++++++++-----------
 po/da.po    | 166 ++++++++++----------
 po/de.po    |  32 ++--
 po/el.po    |  30 ++--
 po/en_AU.po |  33 ++--
 po/en_GB.po |  34 ++--
 po/es.po    |  28 ++--
 po/fr.po    |  33 ++--
 po/he.po    |  36 +++--
 po/hu.po    |  36 +++--
 po/hy.po    |  78 ++++-----
 po/is.po    |  98 ++++++------
 po/it.po    |  68 ++++----
 po/ja.po    |  28 ++--
 po/ko.po    |  34 ++--
 po/lt.po    |  54 ++++---
 po/ms.po    |  32 ++--
 po/nb.po    |  32 ++--
 po/ne.po    |  79 +++++-----
 po/nl.po    |  33 ++--
 po/pl.po    |  33 ++--
 po/pt_BR.po |  32 ++--
 po/ro.po    |  60 +++----
 po/ru.po    |  28 ++--
 po/sk.po    | 109 +++++++------
 po/sr.po    |  32 ++--
 po/sv.po    |  39 +++--
 po/th.po    |  36 +++--
 po/tr.po    |  69 ++++----
 po/uk.po    | 139 ++++++++--------
 po/zh_CN.po |  35 +++--
 po/zh_TW.po |  32 ++--
 36 files changed, 1342 insertions(+), 1110 deletions(-)

commit 0be1bd917ac00a4553bc6d3ace836aed44cd99a4
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 14 11:22:11 2016 +0100

    GTK+-3.0 workspace-switcher: Remove switching workspace on scroll events
    
    This is now done by WnckPager itself.
    And it fixes a build warning.
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=8a8c60f

 applets/wncklet/workspace-switcher.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 22516191381198c85e4e480c7603e5827ac17349
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 15 11:34:31 2016 +0300

    panel-profile: less #if's again

 mate-panel/panel-profile.c | 76 +++++++++++++++++++++-------------------------
 1 file changed, 34 insertions(+), 42 deletions(-)

commit 22f9464fd696c35fd31d6ba6311438c9303f32f6
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 15 11:25:00 2016 +0300

    panel-profile: less #if's

 mate-panel/panel-profile.c | 67 ++++++++++++++++++++++++++++------------------
 1 file changed, 41 insertions(+), 26 deletions(-)

commit 1757855fbe6180a12eb6b552533c8492f7f1e5a7
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 15 11:17:46 2016 +0300

    panel-profile: remove leftover that makes no sense
    
    must be some issue during the last merge

 mate-panel/panel-profile.c | 4 ----
 1 file changed, 4 deletions(-)

commit 71dc5b44d61b23d74e61a19bef99191aae7c09b0
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 15 11:01:32 2016 +0300

    icon chooser: use proper icon name for missing icon

 mate-panel/libpanel-util/panel-icon-chooser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e2871b1e2c05bd8452c4b373ab804598464fe4ac
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 15 11:01:18 2016 +0300

    icon chooser: fix typo

 mate-panel/libpanel-util/panel-icon-chooser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dc1033310a53712ec4d778aee468f8e490018126
Author: monsta <monsta@inbox.ru>
Date:   Thu Feb 11 15:41:16 2016 +0300

    [GTK+3] fix one more use of deprecated gdk_display_get_n_screens

 mate-panel/panel-profile.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

commit aeeed190c86aae741de41feb08ccd80427196224
Author: monsta <monsta@inbox.ru>
Date:   Thu Feb 11 15:41:16 2016 +0300

    [GTK+3] fix one more use of deprecated gdk_display_get_n_screens

 mate-panel/panel-profile.c | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

commit 1b7d949fd82fa646d9705b7a04e7090d4f5b9366
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 10:37:19 2016 +0100

    GTK+3 na-tray-child: fix a Wunused-but-set-variable build warning

 applets/notification_area/na-tray-child.c | 2 ++
 1 file changed, 2 insertions(+)

commit b0add1200ab5e61c88a5eb158c92faebef7debfd
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 10:26:28 2016 +0100

    GTK+3 fish: fix a Wunused-but-set-variable build warning

 applets/fish/fish.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bf419c1b16707d4fb7beb30fb08f284cb39c5292
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:10:33 2016 +0100

    GTK+3 panel-frame: fix a Wunused build warning

 mate-panel/panel-frame.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit efa22493824093113ca4dd8616f15b1ce4d5bb23
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:04:05 2016 +0100

    Gtk+-3.20 window-menu: remove deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=080b953

 applets/wncklet/window-menu.c | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit 0aa05dc52ee3c1988c6a33b529bdee3275693e2d
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:03:12 2016 +0100

    GTK+-3.20 clock: remove deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=c5549ba

 applets/clock/clock.c | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

commit aecc9d08b373a102defc235dba5dccd55c4ae4b3
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:02:04 2016 +0100

    GTK+-3.20 showdesktop: remove deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=080b953

 applets/wncklet/showdesktop.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 089e08b37e96805ce79c8a32f24bb9a071952852
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:01:01 2016 +0100

    GTK+-3.20 clock: don't use deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=e67ac2a

 applets/clock/clock.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit aed7b90e3db34bb57eb3abfc28b15eed13d8655f
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 08:00:01 2016 +0100

    GTK+-3.20 showdesktop: don't use deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=4139922

 applets/wncklet/showdesktop.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 01f743e5ac7c95b4fc80cd11d73657dc3176eaf0
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:58:56 2016 +0100

    GTK+-3.20 panel-toplevel: don't use deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=e56b20d

 mate-panel/panel-toplevel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 7f194a381308ec2fb1ab23c90892e0f056692521
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:57:39 2016 +0100

    GTK+-3.20 button-widget: don't use deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=8b554ba

 mate-panel/button-widget.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit be4afeb0b859d0e219735140f7f59addb4e8d8ba
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:56:32 2016 +0100

    GTK+3 menu: don't use deprecated gtk_menu_get_tearoff_state
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=d907a6e

 mate-panel/menu.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 163c4941bbe525fee986854844c54c67b8c85a19
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:55:31 2016 +0100

    GTK+3 fish: Removed unused and deprecated variables/functions
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-0&id=06ba8ba

 applets/fish/fish.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 4e0bd62bccc09606144bfe35b6c8ff9240a55bb2
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:54:00 2016 +0100

    GTK+-3.20 panel-applet: don't use deprecated style properties
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=f697764

 libmate-panel-applet/mate-panel-applet.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit bec6d56c8f03481ababf60ab7ed948e8ec79ff04
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:52:43 2016 +0100

    GTK+-3 libmate-panel-applet: add missing 'static' to avoid a build warning

 libmate-panel-applet/mate-panel-applet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 561aa7d2aedc8fb653d2d892430fe5bb72aad99e
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:51:12 2016 +0100

    GTK+3 notification-area: use correct style context state
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=bcff4d1

 applets/notification_area/main.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 764b55c2f19cf4d4d27c7c0ade6c3cfb67292188
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:49:33 2016 +0100

    GTK+-3.20 notification-area: remove deprecated style properties
    
    Those properties don't work anymore in themes and spam only the logs.
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=e55b759

 applets/notification_area/main.c | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

commit 4932ed52b70b540bd58e6405550ea2e758c1d003
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:47:44 2016 +0100

    GTK+3 notification-area: set minimum size for icon
    
    Fix for following warning from GtkStatusIcon:
    gtk_widget_size_allocate(): attempt to allocate widget with width -3 and height 26.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=755129
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=e2bd90e

 applets/notification_area/na-tray-child.c | 38 +++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

commit 7637a037898508dc5bec48b93b1d89edb6609588
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:46:29 2016 +0100

    Gtk+3 notification-area: don't use deprecated GtkAlignment
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=4367578

 applets/notification_area/na-tray.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 9081a2ee5cb1e173bfbd191e9630b11be299d081
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:45:16 2016 +0100

    GTK+3 notification-area: don't use deprecated GdkColor
    
    Taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=d1dd54e

 applets/notification_area/main.c            | 37 +++++----------------
 applets/notification_area/na-tray-manager.c | 51 +++++++++++++++++++++++++++++
 applets/notification_area/na-tray-manager.h | 14 ++++++++
 applets/notification_area/na-tray.c         |  7 ++++
 applets/notification_area/na-tray.h         |  7 ++++
 5 files changed, 87 insertions(+), 29 deletions(-)

commit 9fbaadf2b1d3cbc1a3c752f099e10fde1e086b02
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:44:06 2016 +0100

    GTK+3 clock: clock: don't use deprecated GtkAlignment
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=5580bf9

 applets/clock/calendar-window.c     | 12 ++++++++++--
 applets/clock/clock-location-tile.c | 39 ++++++++++++++++++++++++++++++++++++-
 applets/clock/clock.c               | 27 ++++++++++++++++++-------
 3 files changed, 68 insertions(+), 10 deletions(-)

commit 2ce33ca53bc8b56f4cab9160197df44cc36082d4
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:42:40 2016 +0100

    GTK+-3 clock: don't subclass deprecated GtkAlignment
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=c7ea765

 applets/clock/clock-location-tile.c | 4 ++++
 applets/clock/clock-location-tile.h | 8 ++++++++
 2 files changed, 12 insertions(+)

commit efd39dff439de0d4d1c112f994f0d80d9de541f4
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:40:40 2016 +0100

    GTK+3 panel-frame: don't use deprecated GtkSymbolicColor
    
    Code for color shading copied from mutter:
    https://git.gnome.org/browse/mutter/tree/src/ui/theme.c
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=5b19b4b

 mate-panel/libpanel-util/Makefile.am   |   2 +
 mate-panel/libpanel-util/panel-color.c | 203 +++++++++++++++++++++++++++++++++
 mate-panel/libpanel-util/panel-color.h |  15 +++
 mate-panel/panel-frame.c               |  16 +--
 4 files changed, 223 insertions(+), 13 deletions(-)

commit ab9944b4b5cc40468302894be22c091248754a5e
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:39:07 2016 +0100

    GTK+3 workspace-switcher: fix deprecated warnings
    
    gtk_window_reshow_with_initial_size replaced with suggestion from
    this commit:
    https://git.gnome.org/browse/gtk+/commit/?id=01f7ed1
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=ce5b1fb

 applets/wncklet/workspace-switcher.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 14850f26540c21672a9bf22a16bbb78e47eb73d1
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:37:20 2016 +0100

    GTK+3 workspace-switcher: do not use rc_style

 applets/wncklet/workspace-switcher.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit 9357915cd8152da3945be48cf01f5b8499153003
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:36:06 2016 +0100

    GTK+3 panel-frame: do not use deprecated get_background_color
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=3cb7bc

 mate-panel/panel-frame.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 34e7aab28c26aae136be2cbf1df6b48ea24e9bcc
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:34:31 2016 +0100

    Gtk+-3 panel-widget: don't use deprecated get_background_color
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=539ecc4

 mate-panel/panel-widget.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

commit a14d2b7ddde3bc2713b31e692331f74f0b5ceb68
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Thu Feb 11 07:31:27 2016 +0100

    GTK+3: do not use deprecated n_screens
    
    since gtk+-3.10 screen is always 1
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=be976a0
    https://git.gnome.org/browse/gnome-panel/commit/?id=272f680

 applets/notification_area/na-tray.c   |  4 ++++
 applets/notification_area/testtray.c  | 11 ++++++++++-
 mate-panel/panel-background-monitor.c | 17 +++++++++++++++++
 mate-panel/panel-multiscreen.c        | 14 ++++++++++++++
 4 files changed, 45 insertions(+), 1 deletion(-)

commit 217ce17fff3e4eb3670a03c3d48771a03bf3f9d9
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 17:56:28 2016 +0100

    do not use deprecated gdk_cursor_new, use
    
    gdk_cursor_new_for_display for both GTK versions

 mate-panel/menu.c             | 3 ++-
 mate-panel/panel-force-quit.c | 4 ++--
 mate-panel/panel-toplevel.c   | 8 +++++---
 mate-panel/panel-util.c       | 4 +++-
 mate-panel/panel-widget.c     | 8 +++++---
 5 files changed, 17 insertions(+), 10 deletions(-)

commit f96389e674b83aa89e9ed943120fe5c0390626b7
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Wed Feb 10 07:36:18 2016 +0100

    GTK+3 showdesktop: do not use GtkStock for 'image-missing' for both gtk+ versions

 applets/wncklet/showdesktop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8d0f59956ec42446947cd8ab91d005cfa4fe021d
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Tue Feb 9 17:24:14 2016 +0100

    pre-bump version

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit dd01952a786b929ecabb3a6ffd5e588449098580
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 7 04:17:12 2016 +0100

    panel-frame: set css name

 mate-panel/panel-frame.c | 3 +++
 1 file changed, 3 insertions(+)

commit b33d48365cba55990d5d195b8546d7bfc5e32bcf
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 7 00:59:18 2016 +0100

    notification-area: set css name
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=e8dfa4b

 applets/notification_area/main.c | 4 ++++
 1 file changed, 4 insertions(+)

commit cf64555dbb649d2c88a1dd529344586e00533e4a
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 7 00:57:27 2016 +0100

    clock: set css name
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=33e8c06

 applets/clock/clock.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 9b4ccd5323d3c745b8fcfc67a662b022814d887a
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 7 00:56:01 2016 +0100

    panel-widget: set css name
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=201f16b

 mate-panel/panel-widget.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 06c76ba1c353da2c0495dfa0d755ee4956621397
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sun Feb 7 00:54:23 2016 +0100

    libpanel-applet: set css name
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=a773c2ef

 libmate-panel-applet/mate-panel-applet.c | 4 ++++
 1 file changed, 4 insertions(+)

commit a67e8a07a43794bee27e9708b19cbadab31ccb02
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Tue Feb 9 14:12:12 2016 +0100

    GTK+3 panel-toplevel: do not use deprecated gtk_widget_get_requisition
    
    taken from:
    
    https://git.gnome.org/browse/gnome-panel/commit/?id=e14b9ac

 mate-panel/panel-toplevel.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 975c05e2933bede47cc825b013c626324f0a1133
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Tue Feb 9 13:09:37 2016 +0100

    Kill ubuntu counterhack

 configure.ac                | 17 -----------------
 mate-panel/panel-toplevel.c |  8 --------
 2 files changed, 25 deletions(-)

commit 8e66d410cc4b2305eb2f72257dda23811b5d167f
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Tue Feb 9 11:40:46 2016 +0100

    GTK+3 panel-toplevel: fix a build warning

 mate-panel/panel-toplevel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2da7a89cc5f53a2805519ac500b1e800b1b75b11
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 23:05:08 2016 +0100

    GTK+3 windows-list: fix a build warning

 applets/wncklet/window-list.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 445902bc13eaf9332da9096becc81e7ec2b909df
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 18:30:15 2016 +0100

    GTK+3 panel-applet-frame: fix deprecated gdk_pointer_ungrab

 mate-panel/panel-applet-frame.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 3fc26e94bacf14b60b8092756414b5093ff4c18c
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 16:47:36 2016 +0100

    Gtk+3: Replace deprecated gtk_{v,h}box_new

 applets/clock/clock-location-tile.c  | 5 +++++
 applets/notification_area/testtray.c | 5 +++++
 2 files changed, 10 insertions(+)

commit f8c239b61ef61d8cb2a125d1cf8742919b84c723
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 14:02:29 2016 +0100

    GTK3: don't use deprecated gdk_threads_{enter/leave}

 mate-panel/libegg/eggsmclient-xsmp.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 912286f8a198c6aab7f3a79ae1348b80d84f8ce5
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 09:04:56 2016 +0100

    remove deprecated librsvg/rsvg-cairo.h include
    
    Direct include of librsvg/rsvg-cairo.h has been deprecated from
    2.36.2 version. Removed it and added required version for librsvg.
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=d306ad3

 applets/clock/clock-utils.c | 1 -
 configure.ac                | 3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 16b849a8c136130f11805c04bddb7ee1e7da73e4
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 08:44:02 2016 +0100

    button-widget: do not use deprecated GTK_STOCK_MISSING_IMAGE

 mate-panel/button-widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ed4ebdb93f3256ba758c0f26ab9fdbea151d162c
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Feb 8 23:14:54 2016 +0100

    Fix ButtonWidget appearing as a thin line on creation
    
    It makes no sense to use the size of the icon to tell GTK+ about our
    preferred width/height: what we really care about is the size of our
    parent, since we're filling it anyway.
    
    taken from:
    https://git.gnome.org/browse/gnome-panel/commit/?h=gnome-3-0&id=e870aaa

 mate-panel/button-widget.c | 32 +++++++++++++++++++++-----------
 1 file changed, 21 insertions(+), 11 deletions(-)

commit 8755736f8c83df00f20037a8db1d63662f37c1ac
Author: monsta <monsta@inbox.ru>
Date:   Mon Feb 1 14:22:53 2016 +0300

    fix a couple of build warnings

 applets/clock/clock-utils.c   | 2 +-
 applets/wncklet/window-list.c | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

commit cde7442e4c83688866b14d2dfc6ec4062f6e607e
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Mon Jan 25 23:29:09 2016 +0100

    release 1.13.0

 NEWS | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 2e0a38734b6082fc9adf69e037cc21ac1fe6d23c
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 25 14:35:20 2016 +0300

    add 1.12.2 NEWS

 NEWS | 8 ++++++++
 1 file changed, 8 insertions(+)

commit e4d45d7212088f9ff5845135c83d21ef3042dda7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Tue Jan 19 16:57:33 2016 -0500

    GTK3:  More panel BG rendering bugfixes
    
    Keep the .mate-panel-menu-bar and .gnome-panel-menu-bar style classes on the panel toplevel unconditionally. GTK Inspector showed that the toplevel was actually being themed by PanelWidget and not by PanelToplevel, causing multiple issues. This was why it was not possible to set an image or an alpha background in the GTK theme. The .mate-custom-panel-background style class was being applied to the toplevel, but not mate-panel-menu-bar and .gnome-panel-menu-bar . This was also why resetting the panel from a custom to a system background required restarting the panel.
    
    I found all of this because of a bug or changed feature (not sure which) in GTK 3.19.7 which prevented the panel from being themed at all. Fixing this right also fixes all the bugs mentioned above. First restart after setting a custom theme will sometimes but not reliably crash an applet, not sure if that is a pre-existing bug though. At any rate, setting ANY custom background was just broken by gtk3.19.7. don't know if they will fix that or we will have to. That one can wait.

 mate-panel/panel-toplevel.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 067dbe7b68fa625ea87ef6e259539fff2baaeaf7
Author: Roy Zhang <pudh4418@gmail.com>
Date:   Mon Jan 4 14:05:03 2016 +0800

    Gtk3: Don't use deprecated gtk_misc_set_alignment

 applets/clock/clock-location-tile.c  | 15 +++++++++++++++
 applets/fish/fish.c                  |  5 +++++
 applets/notification_area/fixedtip.c |  5 +++++
 applets/notification_area/testtray.c | 10 ++++++++++
 mate-panel/menu.c                    |  5 +++++
 mate-panel/panel-addto.c             |  5 +++++
 mate-panel/panel-ditem-editor.c      |  5 +++++
 mate-panel/panel-force-quit.c        |  5 +++++
 mate-panel/panel-menu-bar.c          |  5 +++++
 9 files changed, 60 insertions(+)

commit 0f7314ea3db7411ae7827ec9bb89a2b485227f1a
Author: monsta <monsta@inbox.ru>
Date:   Sun Jan 10 19:13:01 2016 +0300

    background: reduce number of #if's once more

 mate-panel/panel-background.c | 31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

commit d06b2095e4fd8d3ecc231ce523a76a60b34a77db
Author: monsta <monsta@inbox.ru>
Date:   Wed Jan 6 00:02:50 2016 +0300

    background: reduce number of #if's again

 mate-panel/panel-background.c | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

commit 53f35b2242e75401ac667923a7b1d684d6edeb2b
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 23:40:36 2016 +0300

    background: reduce number of #if's

 mate-panel/panel-background.c | 36 ++++++++++++++++++++----------------
 1 file changed, 20 insertions(+), 16 deletions(-)

commit fda0c79ef72e0ca4ea9b4dcd4761592eb8a0c302
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 21:20:27 2016 +0300

    background: use convenience function to compare colors

 mate-panel/panel-background.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit ef9fc6fad88088ee3b0b769b188aaead9d8f6aeb
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 21:03:45 2016 +0300

    profile: simplify a couple of functions

 mate-panel/panel-profile.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 77a5983ee656a638e688ae42c7efc7aeddf0e262
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 20:52:56 2016 +0300

    profile: fix indent & spacing a bit

 mate-panel/panel-profile.c | 42 ++++++++++++++++++++++--------------------
 1 file changed, 22 insertions(+), 20 deletions(-)

commit 20b45d18e1bdf2d86c406159fce5b39b55e55305
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 20:41:54 2016 +0300

    profile: rename get/set rgba functions for consistency

 mate-panel/panel-profile.c           | 8 ++++----
 mate-panel/panel-profile.h           | 4 ++--
 mate-panel/panel-properties-dialog.c | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

commit c0ee3dae38adf305b4e31a0c8c2d1da532f1a4e5
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 20:25:05 2016 +0300

    properties dialog: use convenience function to compare colors

 mate-panel/panel-properties-dialog.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 79c1b475c32aa7d243199176df3556ea25b51da9
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 20:21:57 2016 +0300

    properties dialog: less #if's

 mate-panel/panel-properties-dialog.c | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

commit 873cedbc95777e7b74960a66883c48945fcecd4c
Author: monsta <monsta@inbox.ru>
Date:   Tue Jan 5 17:38:52 2016 +0300

    rename mate-panel-*.{c|h} -> panel-*.{c|h} for consistency
    
    (libmate-panel-applet files are left alone since there are public
    header files used by all panel applets)

 mate-panel/Makefile.am                             | 16 ++++++++--------
 mate-panel/applet.c                                |  2 +-
 .../libmate-panel-applet-private/Makefile.am       | 22 +++++++++++-----------
 ...applet-container.c => panel-applet-container.c} |  4 ++--
 ...applet-container.h => panel-applet-container.h} |  8 ++++----
 ...plet-frame-dbus.c => panel-applet-frame-dbus.c} | 11 +++++------
 ...plet-frame-dbus.h => panel-applet-frame-dbus.h} | 10 +++++-----
 ...ate-panel-applet-mini.c => panel-applet-mini.c} |  0
 ...manager-dbus.c => panel-applets-manager-dbus.c} |  9 ++++-----
 ...manager-dbus.h => panel-applets-manager-dbus.h} | 10 +++++-----
 mate-panel/panel-addto.c                           |  4 ++--
 ...e-panel-applet-frame.c => panel-applet-frame.c} |  6 +++---
 ...e-panel-applet-frame.h => panel-applet-frame.h} |  8 ++++----
 ...ate-panel-applet-info.c => panel-applet-info.c} |  4 ++--
 ...ate-panel-applet-info.h => panel-applet-info.h} |  8 ++++----
 ...l-applets-manager.c => panel-applets-manager.c} |  4 ++--
 ...l-applets-manager.h => panel-applets-manager.h} | 12 ++++++------
 mate-panel/panel-modules.c                         |  6 ++----
 mate-panel/panel-test-applets.c                    |  4 ++--
 mate-panel/panel-widget.c                          |  2 +-
 mate-panel/panel.c                                 |  2 +-
 po/POTFILES.in                                     |  2 +-
 22 files changed, 75 insertions(+), 79 deletions(-)

commit fbbc44144f21bcd332f4950bc19e8c73c8145f98
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Tue Jan 5 02:34:25 2016 +0100

    pre-bump version to 1.13.0

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 00820481daac956267b5a736315eee5db440ecc0
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 23:52:08 2016 +0300

    xutils: remove unused variables

 mate-panel/panel-xutils.c | 3 ---
 1 file changed, 3 deletions(-)

commit 9c044556b7f69ab2cf1af074752d981372dcc7a6
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 23:29:46 2016 +0300

    applet-frame: fix indent a bit

 mate-panel/mate-panel-applet-frame.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 68b422f1f61367e067375bb081082e8ce28cc4bd
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 23:21:26 2016 +0300

    separator: less #if's

 mate-panel/panel-separator.c | 63 ++++++++++++++++++++------------------------
 1 file changed, 29 insertions(+), 34 deletions(-)

commit 52e8b9ea675d596926c460de4b39e3f9c470661d
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 21:53:25 2016 +0300

    background: nested GTK_CHECK_VERSION's make no sense

 mate-panel/panel-background.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit b7439ed573d6617729e9006248456ef6844b225e
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 21:51:42 2016 +0300

    background: even less #if's

 mate-panel/panel-background.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit 041af0b217f2fb7493a03ff3831747a1927d777f
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 21:29:23 2016 +0300

    background: oops... fix build breakage from last commit (GTK+2 only)

 mate-panel/panel-background.c | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

commit 4c44f5043c32cfc9025e1439fd2efd59c92716cc
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 21:08:32 2016 +0300

    background: group some more local functions, drop some #if's

 mate-panel/panel-background.c | 36 ++++++++++++++++--------------------
 1 file changed, 16 insertions(+), 20 deletions(-)

commit c5fbc1a292d3b865eea9f577f848b2cb13454bc5
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 21:01:52 2016 +0300

    background: drop unused local function from GTK+3 build

 mate-panel/panel-background.c | 42 ++----------------------------------------
 1 file changed, 2 insertions(+), 40 deletions(-)

commit f8a4152a3aa73bd36ff1359acd7f4c896891437f
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 20:50:34 2016 +0300

    background: group some local functions by GTK+ version

 mate-panel/panel-widget.c | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

commit 073e20094ef5ca4ef88785066ae62a475df34aaa
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 20:44:33 2016 +0300

    background: even less #if's

 mate-panel/panel-widget.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit c792f2a96b1383e37616733a0ed1454da008fa33
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 20:37:38 2016 +0300

    background: less #if's

 mate-panel/panel-widget.c | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

commit 73f1dbc41f35cc3729d8ac8727e654e8e3e20ac5
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 20:32:45 2016 +0300

    background: all functions should have PanelBackground as 1st argument

 mate-panel/mate-panel-applet-frame.c | 2 +-
 mate-panel/panel-background.c        | 4 ++--
 mate-panel/panel-background.h        | 2 +-
 mate-panel/panel-menu-bar.c          | 2 +-
 mate-panel/panel-separator.c         | 2 +-
 mate-panel/panel-widget.c            | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

commit 98576d25e966aded1c3f67c41c146e15e4827ced
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 20:27:23 2016 +0300

    background: normalize usage of GTK_CHECK_VERSION

 mate-panel/panel-background.c | 3 ---
 mate-panel/panel-background.h | 7 +++----
 2 files changed, 3 insertions(+), 7 deletions(-)

commit 49326e0842e21504170957b07debde3bd2906b0c
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 19:58:02 2016 +0300

    background: drop variable that's only assigned but never checked

 mate-panel/panel-background.c | 4 ----
 mate-panel/panel-background.h | 1 -
 2 files changed, 5 deletions(-)

commit 67b6012f3111afb3d90a5e9bb60bc0f3e0e6c520
Author: monsta <monsta@inbox.ru>
Date:   Mon Jan 4 19:54:34 2016 +0300

    background: explicitly check for CAIRO_STATUS_SUCCESS return value

 mate-panel/panel-background.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit aaa96763f657b988aaf03233fc1bbb725752a719
Author: Monsta <monsta@inbox.ru>
Date:   Sat Jan 2 23:58:44 2016 +0300

    drop MateConf migration script

 data/Makefile.am        |  4 ----
 data/mate-panel.convert | 13 -------------
 2 files changed, 17 deletions(-)

commit 410de37dad6f46c6d28a3ebaf832efa1f31e3141
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Thu Dec 24 20:59:01 2015 -0500

    Fix rendering of user backgrounds in gtk3.18+
    
    User set panel backgrounds other than colors with an alpha value fail on restarting the panel using gtk3.18 or 3.19. This makes picture and fully opaque color backgrounds set by the user work again and for some reason does not break transparent color backgrounds either. Tested with gtk3.19.5, should work with gtk3.18 as this bug was exactly the same but needs testing with it.

 mate-panel/panel-background.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit e785bb69b37d7cb63a1828c2aa324adde6a164bc
Author: Monsta <monsta@inbox.ru>
Date:   Thu Dec 24 14:25:56 2015 +0300

    libmate-panel-applet: move trap push/pop closer to X function call

 libmate-panel-applet/mate-panel-applet.c | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

commit b1206765a76fcc18980d53a6cf0d111eab48ce25
Author: Monsta <monsta@inbox.ru>
Date:   Thu Dec 24 14:16:25 2015 +0300

    remove dead code

 libmate-panel-applet/mate-panel-applet.c | 12 ------------
 1 file changed, 12 deletions(-)

commit fad30bcc5e0534d4ed7283dae68727fe271dd1a8
Author: Monsta <monsta@inbox.ru>
Date:   Thu Dec 24 14:15:58 2015 +0300

    fix indent a bit

 libmate-panel-applet/mate-panel-applet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b13a477fcd63efb11264bbd2f78bf59c600da11a
Author: Monsta <monsta@inbox.ru>
Date:   Thu Dec 24 13:58:27 2015 +0300

    remove unused variable

 libmate-panel-applet/mate-panel-applet.c | 1 -
 1 file changed, 1 deletion(-)

commit bdfdeaeabf8f5bd233126a826d59e5ddd3a1cc1e
Author: monsta <monsta@inbox.ru>
Date:   Wed Dec 23 15:08:29 2015 +0300

    never agree to expand an attached toplevel (drawer's panel)

 mate-panel/panel-toplevel.c | 5 +++++
 1 file changed, 5 insertions(+)

commit cdcd6f27775b9e328927bb9d1bde29a94f70d35a
Author: monsta <monsta@inbox.ru>
Date:   Tue Dec 22 11:42:25 2015 +0300

    clock: remove useless include

 applets/clock/calendar-window.c | 3 ---
 1 file changed, 3 deletions(-)

commit 456656ed83383c6d41def089ea29716e977f44a5
Author: monsta <monsta@inbox.ru>
Date:   Tue Dec 22 11:35:25 2015 +0300

    wncklet: remove dead code

 applets/wncklet/window-list.c | 27 ---------------------------
 1 file changed, 27 deletions(-)

commit 1765105d9c4edf62fbd5406a618fffcf3d3c09c9
Author: monsta <monsta@inbox.ru>
Date:   Tue Dec 22 11:21:33 2015 +0300

    wncklet: mate_gdk_spawn_command_line_on_screen can be used with any GTK+

 applets/wncklet/window-list.c | 17 ++---------------
 1 file changed, 2 insertions(+), 15 deletions(-)

commit 08a0832a7ad68b708727f6bb1288888dfa4cb1a9
Author: monsta <monsta@inbox.ru>
Date:   Mon Dec 21 15:45:18 2015 +0300

    panel-widget: drop unused variables (assigned but never read after)

 mate-panel/panel-widget.c | 10 ----------
 mate-panel/panel-widget.h |  6 ------
 2 files changed, 16 deletions(-)

commit 93750e6432351d2584ea1dbeb73579f030523f4d
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 15:19:32 2015 +0300

    drawer: don't try to set NULL tooltip

 mate-panel/drawer.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit fe8847c1ac00ee0767316610d436d799808859e8
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 11:53:40 2015 +0300

    drawer: some fixes

 mate-panel/drawer.c | 53 +++++++++++++++++++++--------------------------------
 1 file changed, 21 insertions(+), 32 deletions(-)

commit 51edda9fc670c38c57fa3739280086dc310c6df7
Author: monsta <monsta@inbox.ru>
Date:   Mon Dec 21 12:00:38 2015 +0300

    panel-profile: simplify some code

 mate-panel/panel-profile.c | 81 +++++++++++++++++-----------------------------
 1 file changed, 30 insertions(+), 51 deletions(-)

commit 4a7024467bac39606513e71e3f098c6dea74efab
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 16:38:29 2015 +0300

    panel-profile: fix indent a bit

 mate-panel/panel-profile.c | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit 3f9ddf5a720706560f43523b289247a016b25d33
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 15:34:20 2015 +0300

    toplevel: remove unused variable in GTK+3 build

 mate-panel/panel-toplevel.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 0c24156241e5c9f17ff3660f93e3ac99dc7dceb6
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 15:29:21 2015 +0300

    toplevel: define set_arrow_type function only for GTK+ 3.14

 mate-panel/panel-toplevel.c | 2 ++
 1 file changed, 2 insertions(+)

commit c44f3d28a5fc97aa143e97f726769712b0070328
Author: Monsta <monsta@inbox.ru>
Date:   Fri Dec 18 14:34:10 2015 +0300

    button-widget: avoid build warnings about unused variables

 mate-panel/button-widget.c | 23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

commit 38b4b98ce3993a1dadb4f84d9f981ed9c4e5340a
Author: Monsta <monsta@inbox.ru>
Date:   Fri Dec 18 14:25:46 2015 +0300

    button-widget: properly init a variable in GTK+3 build

 mate-panel/button-widget.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 3d3d84530f6e7e581eadd2ef11e97dd325879b11
Author: monsta <monsta@inbox.ru>
Date:   Fri Dec 18 13:15:53 2015 +0300

    button-widget: removed unused variable

 mate-panel/button-widget.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 956d36c07bf236619dc6a13a0efd41f864943520
Author: György Balló <ballogyor@gmail.com>
Date:   Wed Dec 16 12:19:33 2015 +0100

    GTK3 workspace-switcher: add fallback color
    
    Without setting a color, the actual workspace is not highlighted, if the theme does not set WnckPager:selected explicitely (e.g. with Adwaita).

 applets/wncklet/workspace-switcher.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit 2655fb52147cf2426590d375a6fccc97b7997bf3
Author: Balló György <ballogyor@gmail.com>
Date:   Tue Dec 15 09:52:51 2015 +0100

    gtk3: fix infinite loop with Traditional themes
    
    We don't need to reset style when adding/removing classes. It was a regression in commit: 6f634c680fbc5ee5051253554f2710e39f9ea80a

 libmate-panel-applet/mate-panel-applet.c | 1 -
 mate-panel/panel-background.c            | 1 -
 2 files changed, 2 deletions(-)

commit de92b6a96f46f5ef57976d28e592c499472d24b1
Author: monsta <monsta@inbox.ru>
Date:   Thu Dec 3 17:49:44 2015 +0300

    Add separate "Delete" button in reload applet dialog
    
    and the "Don't reload" button will no longer delete the applet
    
    adapted from
    https://git.gnome.org/browse/gnome-panel/commit/?id=2a1faa93b8cdb12a8c0ff9d4fc870216a55fb5e0

 mate-panel/mate-panel-applet-frame.c | 28 ++++++++++++++++++++--------
 1 file changed, 20 insertions(+), 8 deletions(-)

commit 7fccfc47d28706e51fd8282bc30a3899d3e7cdcd
Author: monsta <monsta@inbox.ru>
Date:   Thu Dec 3 17:13:03 2015 +0300

    remove redundant function declarations

 mate-panel/panel-toplevel.h | 3 ---
 1 file changed, 3 deletions(-)

commit 6dc973f065119c4cc6f6d0d0ad79b8b02592e2c2
Author: monsta <monsta@inbox.ru>
Date:   Mon Nov 30 10:39:45 2015 +0300

    Bump version to 1.12.1

 NEWS         | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 6f634c680fbc5ee5051253554f2710e39f9ea80a
Author: Balló György <ballogyor@gmail.com>
Date:   Fri Nov 20 01:14:25 2015 +0100

    Don't set the panel transparent by default
    
    This fixes the background for GTK+ 3 themes which don't support mate-panel explicitly. Themes could still overwrite the background if they want in the usual way.

 libmate-panel-applet/mate-panel-applet.c | 34 ++++++++++++++----------
 mate-panel/mate-panel-applet-frame.c     |  6 +++--
 mate-panel/panel-background.c            | 45 +++++++++++++++++++++++---------
 mate-panel/panel-background.h            |  2 +-
 mate-panel/panel-menu-bar.c              |  2 +-
 mate-panel/panel-separator.c             |  2 +-
 mate-panel/panel-widget.c                |  1 +
 7 files changed, 61 insertions(+), 31 deletions(-)

commit 22f1787182a46bc7583be4bb07eb7e0f91c60b65
Author: Monsta <monsta@inbox.ru>
Date:   Thu Nov 12 15:27:22 2015 +0300

    fix indent a bit

 mate-panel/panel-menu-button.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit aeff3a713de091c28e892e5a2f304d14f44632c6
Merge: 1e4d5220 ad3464d2
Author: Martin Wimpress <code@flexion.org>
Date:   Thu Nov 12 09:51:24 2015 +0000

    Merge pull request #371 from mate-desktop/launcher-fix
    
    don't destroy a widget in its draw/expose signal

commit ad3464d2e9c0da6d9cfd5e153fa68e722b8810c5
Author: Monsta <monsta@inbox.ru>
Date:   Thu Nov 12 11:07:39 2015 +0300

    don't destroy a widget in its draw/expose signal
    
    ported from:
    https://git.gnome.org/browse/gnome-panel/commit/?id=8c275a2adf4ad99297a17cabf251344837620831
    https://git.gnome.org/browse/gnome-panel/commit/?id=be33e799d968a073c0a8856c96d11e8594b88bc4

 mate-panel/xstuff.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit 1e4d522036ca7ed7d7a31fcb9f39d585cd1c0d54
Author: monsta <monsta@inbox.ru>
Date:   Wed Nov 11 11:54:15 2015 +0300

    fix typo in #define

 applets/wncklet/workspace-switcher.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 744b57ba60660031e1d605b9e8e3c11669960efe
Merge: fee1a7e8 3575a718
Author: Martin Wimpress <code@flexion.org>
Date:   Wed Nov 11 08:37:41 2015 +0000

    Merge pull request #368 from raveit65/dev-ubuntu
    
    clock applet: fix ubuntu ambiant-mate gtk2 theming

commit 3575a71802f282b3bdc4246ae2214c7c94c6ec5a
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Wed Nov 11 01:09:43 2015 +0100

    clock applet: fix ubuntu ambiant-mate gtk2 theming

 applets/clock/clock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit fee1a7e8e3050c6a6bd6cabb0774122c552b2d85
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Tue Nov 3 14:17:00 2015 +0000

    1.12.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5ffecff3aa1cd5974cdd410279cb11b7ca1e14bc
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Tue Nov 3 14:15:32 2015 +0000

    Sync translations with transifex

 po/af.po          | 1020 ++++++-----
 po/am.po          | 1046 ++++++-----
 po/ar.po          | 1168 ++++++------
 po/as.po          | 1018 ++++++-----
 po/ast.po         | 1020 ++++++-----
 po/az.po          | 1020 ++++++-----
 po/be.po          | 1012 ++++++-----
 po/bg.po          | 1012 ++++++-----
 po/bn.po          | 1018 ++++++-----
 po/bn_IN.po       | 1020 ++++++-----
 po/br.po          | 1085 +++++------
 po/bs.po          | 1018 ++++++-----
 po/ca.po          | 1020 ++++++-----
 po/ca@valencia.po | 1018 ++++++-----
 po/cmn.po         | 1012 ++++++-----
 po/crh.po         | 1018 ++++++-----
 po/cs.po          | 1016 ++++++-----
 po/cy.po          | 1014 ++++++-----
 po/da.po          | 1020 ++++++-----
 po/de.po          | 1141 ++++++------
 po/dz.po          | 1018 ++++++-----
 po/el.po          | 1010 ++++++-----
 po/en_AU.po       | 1012 ++++++-----
 po/en_CA.po       | 1018 ++++++-----
 po/en_GB.po       | 1012 ++++++-----
 po/eo.po          | 1020 ++++++-----
 po/es.po          | 1011 ++++++-----
 po/et.po          | 1068 +++++------
 po/eu.po          | 1020 ++++++-----
 po/fa.po          | 1028 ++++++-----
 po/fi.po          | 1010 ++++++-----
 po/fr.po          | 1030 ++++++-----
 po/fr_CA.po       | 2890 +++++++++++++++++++++++++++++
 po/fur.po         | 1018 ++++++-----
 po/fy.po          | 1018 ++++++-----
 po/ga.po          | 1018 ++++++-----
 po/gl.po          | 1012 ++++++-----
 po/gu.po          | 1018 ++++++-----
 po/ha.po          | 1018 ++++++-----
 po/he.po          | 1018 ++++++-----
 po/hi.po          | 1018 ++++++-----
 po/hr.po          | 1024 ++++++-----
 po/hu.po          | 1013 ++++++-----
 po/hy.po          | 1060 +++++------
 po/id.po          | 1022 ++++++-----
 po/ig.po          | 1018 ++++++-----
 po/is.po          | 1012 ++++++-----
 po/it.po          | 1020 ++++++-----
 po/ja.po          | 1010 ++++++-----
 po/jv.po          | 2890 +++++++++++++++++++++++++++++
 po/ka.po          | 1018 ++++++-----
 po/kk.po          | 1010 ++++++-----
 po/kn.po          | 1018 ++++++-----
 po/ko.po          | 1015 ++++++-----
 po/ku.po          | 1018 ++++++-----
 po/ku_IQ.po       | 2890 +++++++++++++++++++++++++++++
 po/ky.po          | 1018 ++++++-----
 po/li.po          | 1018 ++++++-----
 po/lt.po          | 1123 ++++++------
 po/lv.po          | 1018 ++++++-----
 po/mai.po         | 1018 ++++++-----
 po/mg.po          | 1018 ++++++-----
 po/mi.po          | 4313 ++++++++++++++++++++++++--------------------
 po/mk.po          | 1018 ++++++-----
 po/ml.po          | 1018 ++++++-----
 po/mn.po          | 1018 ++++++-----
 po/mr.po          | 1012 ++++++-----
 po/ms.po          | 1020 ++++++-----
 po/nb.po          | 1020 ++++++-----
 po/nds.po         | 1018 ++++++-----
 po/ne.po          | 1018 ++++++-----
 po/nl.po          | 1022 ++++++-----
 po/nn.po          | 1018 ++++++-----
 po/nso.po         | 1020 ++++++-----
 po/oc.po          | 1018 ++++++-----
 po/or.po          | 1018 ++++++-----
 po/pa.po          | 1018 ++++++-----
 po/pl.po          | 1015 ++++++-----
 po/ps.po          | 1018 ++++++-----
 po/pt.po          | 1015 ++++++-----
 po/pt_BR.po       | 1015 ++++++-----
 po/ro.po          | 1066 +++++------
 po/ru.po          | 1012 ++++++-----
 po/rw.po          | 5184 ++++++++++++++++++++++++++---------------------------
 po/si.po          | 1018 ++++++-----
 po/sk.po          | 1013 ++++++-----
 po/sl.po          | 1012 ++++++-----
 po/sq.po          | 1016 ++++++-----
 po/sr.po          | 1012 ++++++-----
 po/sr@latin.po    | 1018 ++++++-----
 po/sv.po          | 1010 ++++++-----
 po/ta.po          | 1018 ++++++-----
 po/te.po          | 1010 ++++++-----
 po/th.po          | 1018 ++++++-----
 po/tr.po          | 1015 ++++++-----
 po/ug.po          | 1018 ++++++-----
 po/uk.po          | 1011 ++++++-----
 po/ur.po          | 1010 ++++++-----
 po/uz.po          | 1018 ++++++-----
 po/vi.po          | 1012 ++++++-----
 po/wa.po          | 1018 ++++++-----
 po/xh.po          | 1018 ++++++-----
 po/yi.po          | 4569 ++++++++++++++++++++++++----------------------
 po/yo.po          | 1018 ++++++-----
 po/zh_CN.po       | 1023 ++++++-----
 po/zh_HK.po       | 1018 ++++++-----
 po/zh_TW.po       | 1015 ++++++-----
 po/zu.po          | 1018 ++++++-----
 108 files changed, 71173 insertions(+), 55899 deletions(-)

commit cd1bfa8aca4780cac40dca6f07add9493ebbe71c
Author: monsta <monsta@inbox.ru>
Date:   Fri Oct 30 16:15:37 2015 +0300

    update NEWS for 1.12

 NEWS | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

commit 5139e0ee0bbd622acba5605417a03c25450cd78c
Author: monsta <monsta@inbox.ru>
Date:   Fri Oct 30 16:13:11 2015 +0300

    clock: minor corrections in new option

 applets/clock/clock.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e4baf36ffb35100a83b3c00f4b46989f0c797b57
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Wed Oct 28 00:21:11 2015 +0100

     release 1.11.1 release

 NEWS         | 6 ++++++
 configure.ac | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit f9df2ed499e066d126e26e184e4c147598b59fe7
Author: monsta <monsta@inbox.ru>
Date:   Tue Oct 27 15:03:21 2015 +0300

    minor correction in NEWS

 NEWS | 1 -
 1 file changed, 1 deletion(-)

commit 024f89bc7c8074f753120d9c8ec4bd839745984b
Author: Monsta <monsta@inbox.ru>
Date:   Mon Oct 26 15:30:46 2015 +0300

    bring back good old deprecated function which works perfectly
    
    thanks to some genius from gnome team, we're now supposed to re-implement
    gtk_widget_reparent from scratch in every place we need to move a widget
    between containers. thanks but no thanks. don't fix what's not broken.
    
    fixes #360

 mate-panel/panel-widget.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 37c008faa299f248d2ef4067e59132b854732331
Author: Monsta <monsta@inbox.ru>
Date:   Sun Oct 25 14:33:09 2015 +0300

    run dialog: make app description label unfocusable

 mate-panel/panel-run-dialog.c  | 2 ++
 mate-panel/panel-run-dialog.ui | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 40c83f53afc9b84d2d9c877fc36dba01cb9a938f
Merge: c5ca0c2b d952904c
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Fri Oct 16 17:03:11 2015 +0100

    Merge pull request #355 from clefebvre/locked-position
    
    Don't change position/right-stick of locked applets

commit d952904cceb4e0380cfb1219a499c1abc4b77926
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Thu Oct 15 21:14:45 2015 +0100

    Don't change position/right-stick of locked applets
    
    Until position calculations are refactored to fix the issue of the panel applets
    getting reordered on resolution changes don't save position/right-stick on locked applets.

 mate-panel/applet.c | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

commit c5ca0c2b71f4178341fc05e258d3541efc603761
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Oct 2 20:18:51 2015 -0400

    Enable or disable calendar week numbers from prefs
    
    Add checkbox to enable or disable week numbers in clock preferences window

 applets/clock/clock.ui | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

commit 7c6c46ff8d88f22f044fd0e1633b149ac8d45ffe
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Fri Oct 2 20:14:55 2015 -0400

    clock.c: add gesettings key for toggle weeknumbers

 applets/clock/clock.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 9baa40b062079bc9191aeae5a344e790d3b95fe6
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 01:13:25 2015 -0400

    panel-menu-items.c: places menu alpha OK
    
    The places menu follows .mate-panel-menu-bar just fine, but buggy wm/gtk3.16 combos require robust RGBA support explicitly set in the application. Add support to panel-menu-items.c as only adding it to menu.c, applet.c, and mate-panel-applet.c will miss this menu.

 mate-panel/panel-menu-items.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 285f751bc8190e2a86715be83a8dbf34641e8f6c
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 01:02:09 2015 -0400

    panel-context-menu.c: custom menu theme support
    
    Make the panel context menu follow the .mate-panel-menu-bar .menu selector in the gtk theme, and the  panel context menu window follow the .mate-panel-menu-bar selector. Use the former to set a custom menu theme, the latter to alter or remove shadows from applet menus. Include robust support for transparent themes even with gtk does not detect a compositing window manager so long as compositing is enabled.

 mate-panel/panel-context-menu.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit f046dace113d6b3f1b1b094b09374399951c68bd
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 00:57:30 2015 -0400

    menu.c: robust transparent theme support
    
    Ensure any transparent menu theme works even when gtk3.16 or later fails to detect a compositing window manager. This work also present on applet.c and mate-panel-applet.c theme support commits. Main menus already follow .mate-panel-menu-bar .menu so no changes to that

 mate-panel/menu.c | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

commit e30ac32ad31ab1e6415356f31a38c329a2a17918
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 00:49:48 2015 -0400

    Add custom menu theming support to applet.c
    
    Make applet menus follow the .mate-panel-menu-bar .menu selector in the gtk theme, and the menu window follow the .mate-panel-menu-bar selector. Use the former to set a custom menu theme, the latter to alter or remove shadows from applet menus

 mate-panel/applet.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit c71b55007d73485bfc3fc1d30c42cb329bc30125
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 00:47:17 2015 -0400

    clock-make transparent calendars possible
    
    Add support for transparent calendar windows, the window background color can be set to any color and alpha value or made transparent with the #MatePanelPopupWindow named widget selector in the gtk theme. Defaults to theme background color if not set, same as before. This is used only for the calendar window right now

 applets/clock/clock.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 8b3c651fbf92d3aa35b2e854aaa4468d43fccdf7
Author: lukefromdc <lukefromdc@hushmail.com>
Date:   Sun Aug 30 00:26:43 2015 -0400

    custom menu theming support: mate-panel-applet.c
    
    Make applet menus follow the .mate-panel-menu-bar .menu selector in the gtk theme, and the menu window follow the .mate-panel-menu-bar selector. Use the former to set a custom menu theme, the latter to alter or remove shadows from applet menus

 libmate-panel-applet/mate-panel-applet.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit fd3481221c0c73db85db2765e10cd431c3893ccd
Author: monsta <monsta@inbox.ru>
Date:   Fri Oct 9 11:57:29 2015 +0300

    Add NEWS for 1.11.0

 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

commit 4115bb9ec815227fa651cab1a27aa33a1a4c3827
Author: raveit65 <chat-to-me@raveit.de>
Date:   Tue Oct 6 17:57:01 2015 +0200

    pre-bump version to 1.11.0

 NEWS         | 2 ++
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 47e68c0dc594e3d99e7955e569aa3c20f777e446
Merge: bac8cb18 23c9fb28
Author: Wolfgang Ulbrich <chat-to-me@raveit.de>
Date:   Sat Sep 26 17:49:05 2015 +0200

    Merge pull request #351 from dnk/warnings
    
    eliminate criticals

commit 23c9fb28d40b956c286da6a11ccc5ace5f36ec91
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Fri Sep 25 23:21:15 2015 +0300

    eliminate criticals
    
    gdk_window_set_geometry_hints accept 0 as flags when geometry is null
    return 1px width/height while image is not loadded

 mate-panel/button-widget.c  | 10 ++++++++++
 mate-panel/panel-toplevel.c |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit bac8cb18598416a7caaf3c3325f28e12563aab00
Author: infirit <infirit@gmail.com>
Date:   Sun Sep 6 16:22:42 2015 +0200

    define max/min version of GLib

 configure.ac | 6 ++++++
 1 file changed, 6 insertions(+)

commit 9ef7e261d4a9ea536d6f467c2b9bd1381bcd73aa
Author: infirit <infirit@gmail.com>
Date:   Sun Sep 6 16:20:20 2015 +0200

    Rework gsettings schema building
    
    * Bump intltool required version for gsettings support
    * Extract strings with intltool directly
    * Let autoconf generate the xml files

 applets/clock/Makefile.am                          |   9 +-
 .../org.mate.panel.applet.clock.gschema.xml.in     |  88 +++++++++++++
 .../org.mate.panel.applet.clock.gschema.xml.in.in  |  88 -------------
 applets/fish/Makefile.am                           |   8 +-
 .../fish/org.mate.panel.applet.fish.gschema.xml.in |  34 +++++
 .../org.mate.panel.applet.fish.gschema.xml.in.in   |  34 -----
 applets/wncklet/Makefile.am                        |  14 +-
 ...rg.mate.panel.applet.window-list.gschema.xml.in |  24 ++++
 ...mate.panel.applet.window-list.gschema.xml.in.in |  24 ----
 ....panel.applet.workspace-switcher.gschema.xml.in |  24 ++++
 ...nel.applet.workspace-switcher.gschema.xml.in.in |  24 ----
 configure.ac                                       |  10 +-
 data/Makefile.am                                   |  19 ++-
 data/org.mate.panel.gschema.xml.in                 |  78 +++++++++++
 data/org.mate.panel.gschema.xml.in.in              |  78 -----------
 data/org.mate.panel.menubar.gschema.xml.in         |  29 +++++
 data/org.mate.panel.menubar.gschema.xml.in.in      |  29 -----
 data/org.mate.panel.object.gschema.xml.in          |  79 ++++++++++++
 data/org.mate.panel.object.gschema.xml.in.in       |  79 ------------
 data/org.mate.panel.toplevel.gschema.xml.in        | 142 +++++++++++++++++++++
 data/org.mate.panel.toplevel.gschema.xml.in.in     | 142 ---------------------
 po/POTFILES.in                                     |  16 +--
 22 files changed, 536 insertions(+), 536 deletions(-)

commit 667466775b7d785ac048732b18efacea09711ab2
Author: Clement Lefebvre <clement.lefebvre@linuxmint.com>
Date:   Fri Sep 4 21:49:36 2015 +0100

    Switch to org.gnome.SessionManager

 mate-panel/libpanel-util/panel-session-manager.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3c21f66bf30810fcb25dfe8c3c0960df270dc416
Author: infirit <infirit@gmail.com>
Date:   Fri Sep 4 18:02:14 2015 +0200

    panel-run-dialog: Use g_spawn_async in both Gtk versions.

 mate-panel/panel-run-dialog.c | 36 +++++++++++++++++-------------------
 1 file changed, 17 insertions(+), 19 deletions(-)

commit f1b3d0c95bb980e8515dc69f9ce827381c52cc9b
Author: Monsta <monsta@inbox.ru>
Date:   Mon Aug 31 17:21:38 2015 +0300

    check for wnck 3.0.0, not some pre-release version :)

 applets/wncklet/window-list.c        | 2 +-
 applets/wncklet/workspace-switcher.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 9d76273d550a6ec24e716beb63e3c31c6f71552b
Author: Gymnasiast <m.o.steenbeek@gmail.com>
Date:   Tue Jul 8 13:12:49 2014 +0200

    Removed obsolete compatibility code

 mate-panel/applet.c              | 4 ----
 mate-panel/main.c                | 3 ---
 mate-panel/panel-action-button.c | 4 +---
 3 files changed, 1 insertion(+), 10 deletions(-)

commit f22c5a77f194d54d811cb21916edb5f1fa909b53
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 22:02:35 2015 +0800

    Gtk3: Don't use deperated gtk_icon_info_free

 mate-panel/panel-util.c | 4 ++++
 1 file changed, 4 insertions(+)

commit c5d35e84d1b2b8c3df8406fdaf4c35b605792421
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 22:00:00 2015 +0800

    Gtk3: fixed build warning

 mate-panel/panel-properties-dialog.c | 4 +++-
 mate-panel/panel-run-dialog.c        | 6 ++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 630cb2c0ca309f077fe3f92be0032c1e102efd06
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 00:26:52 2015 +0800

    Gtk3: Don't use deprecated gtk_style_context_get_font

 applets/clock/clock.c       | 2 +-
 mate-panel/panel-toplevel.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 2298f4c63df3f2b56c2efb0a0a1b4bc9f48a5517
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 00:26:03 2015 +0800

    Gtk3: Drop GtkArrow in panel_toplevel_add_hide_button

 mate-panel/panel-toplevel.c | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit a9f71dd4dfaa14731b85fca4b50d197022ae42df
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 00:23:13 2015 +0800

    use G_BEGIN_DECLS & G_END_DECLS

 mate-panel/panel-action-protocol.h | 8 ++------
 mate-panel/panel-run-dialog.h      | 8 ++------
 2 files changed, 4 insertions(+), 12 deletions(-)

commit 8f69742b195a7865bc0a23f660afa888aa437f86
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Fri Jun 19 00:19:49 2015 +0800

    Gtk3: gdk_display_get_n_screens() always return 1 from 3.10

 mate-panel/xstuff.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 251c46b14ff1cdc3c80c7c1aa04ea1e34ed6f945
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:35:22 2015 +0800

    Gtk3: Don't use deprecated gdk_app_launch_context_new

 mate-panel/libpanel-util/panel-launch.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 613791d9eef6be44f820befd1a09da75c8fbc1b5
Author: infirit <infirit@gmail.com>
Date:   Wed Aug 26 13:24:46 2015 +0200

    Always use gtk_container_remove/gtk_container_add
    
    Should work fine under both Gtk+ versions.

 mate-panel/panel-widget.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 1112319594f210b0c6727d4657bc5b70de4168ab
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:34:16 2015 +0800

    Gtk3: Don't use deprecated gtk_widget_reparent

 mate-panel/panel-widget.c | 5 +++++
 1 file changed, 5 insertions(+)

commit f3423b7e59b3dea7579cddb208ada0e2d671c6c3
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:33:03 2015 +0800

    Gtk3: Don't use deprecated gdk_cursor_new

 mate-panel/panel-toplevel.c | 6 +++---
 mate-panel/panel-widget.c   | 3 +--
 2 files changed, 4 insertions(+), 5 deletions(-)

commit b132423fde1c0befb0d3a327b534f3ada6fabf3f
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:13:07 2015 +0800

    Gtk3: Don't use deprecated gtk_widget_render_icon_pixbuf

 mate-panel/button-widget.c | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

commit a1cf5afd76d2671ed79ff60f42156b3338bc8166
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:30:57 2015 +0800

    Gtk3: Don't use deprecated gdk_window_get_pointer

 mate-panel/panel-toplevel.c | 8 ++++++++
 mate-panel/panel-widget.c   | 8 ++++++++
 2 files changed, 16 insertions(+)

commit 01bd985d9fecfb64f9e17ebfc1ad76ac8c3a1234
Author: yetist <xiaotian.wu@i-soft.com.cn>
Date:   Thu Jun 18 23:25:28 2015 +0800

    Gtk3: Don't use deprecated gtk_widget_get_pointer

 mate-panel/panel-widget.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

commit 618b005f0be401671c9db23869ff30b1ee07afec
Author: Monsta <monsta@inbox.ru>
Date:   Mon Aug 24 22:45:11 2015 +0300

    removed one more suspicious reference to win32

 configure.ac | 1 -
 1 file changed, 1 deletion(-)

commit d343d0160fd12264308fcd4ad42acbd4b3b3ee4b
Author: Monsta <monsta@inbox.ru>
Date:   Mon Aug 24 22:43:30 2015 +0300

    removed some suspicious references to win32

 applets/notification_area/na-tray-manager.c | 12 ------------
 1 file changed, 12 deletions(-)

commit dcf1c40dd3da70f40cc6f2506e06e175ab8fdb1a
Author: Monsta <monsta@inbox.ru>
Date:   Sun Aug 23 15:55:51 2015 +0300

    drop xrandr 1.2 compatibility (it's ancient)

 configure.ac                   |  2 +-
 mate-panel/panel-multiscreen.c | 91 ++++++++++++++----------------------------
 2 files changed, 30 insertions(+), 63 deletions(-)

commit d207d72bf73884bf24a49e2d1dab747fb74d19b1
Author: monsta <monsta@inbox.ru>
Date:   Wed Aug 19 10:47:49 2015 +0300

    configure.ac: drop obsolete macro
    
    It's been a no-op for a long time.
    See https://mail.gnome.org/archives/commits-list/2011-December/msg00681.html for example.

 configure.ac | 1 -
 1 file changed, 1 deletion(-)

commit 3fc68b481960ed6df3eed204eb2acb8a7c652d54
Author: infirit <infirit@gmail.com>
Date:   Thu Aug 6 10:51:39 2015 +0200

    Gtk3: Set push_in to FALSE
    
    We already do this for the same function in libmate-panel-applet.
    
    Thanks to luke on the forums. fixes #330

 mate-panel/applet.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 16e125317b64a2bf8e1ff341c2fbd550b58e3588
Merge: c5c04000 5d047315
Author: Martin Wimpress <code@flexion.org>
Date:   Mon Aug 3 12:49:45 2015 +0100

    Merge pull request #333 from NiceandGently/master
    
    UI GTK3: use a size request for scrolled window in panel-run dialog

commit 5d0473152abd2f7835f8c8c3c379ce9870429cf0
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sun Aug 2 14:33:34 2015 +0200

    UI GTK3: use a size request for scrolled window in panel-run dialog
    
    - this fixes program list in GTK3

 mate-panel/panel-run-dialog.ui | 1 +
 1 file changed, 1 insertion(+)

commit c5c040008935e82acf0aa652f41fc8f6c6931e48
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Sat Feb 14 00:02:12 2015 +0300

    na: fix background transparency

 applets/notification_area/main.c | 41 ++++++++++++++++++++++++++++++++++++----
 1 file changed, 37 insertions(+), 4 deletions(-)

commit 6b6ce54b4875dfb554f7e2831af900a851c52e24
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Sun Feb 8 23:25:17 2015 +0300

    na: gtk2: fix build

 applets/notification_area/main.c    |  4 ++++
 applets/notification_area/na-tray.c | 21 +++++++++++++++++++++
 2 files changed, 25 insertions(+)

commit 7b6d2422fc0aa0cfff9d3aae955bfc8c58eff72c
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Sun Feb 8 22:01:52 2015 +0300

    na: restore help & about
    
    build fix
    restore "Help" and "About" menu items

 applets/notification_area/main.c | 125 +++++++++++++++++++++++++++++++++++----
 applets/notification_area/main.h |   6 +-
 2 files changed, 115 insertions(+), 16 deletions(-)

commit e9c7cb073d30e30aeac0a2e9fe3c21f1d0f49cd0
Author: Ryan Lortie <desrt@desrt.ca>
Date:   Tue Mar 29 23:41:17 2011 +0530

    notification applet: support fixed-sized icons
    
    Add a new _NET_SYSTEM_TRAY_ICON_SIZE property that is set to the value
    of the "icon-size" style property.  The result is that all icons in the
    tray will be hinted to draw themselves with exactly this pixel size
    (16x16, for example).
    
    Bug #645232
    
    Conflicts:
            applets/notification_area/na-tray-manager.c
            applets/notification_area/na-tray-manager.h
            applets/notification_area/na-tray.h

 applets/notification_area/main.c            |  13 +-
 applets/notification_area/na-tray-manager.c | 182 ++++++++++++++++++++++++++--
 applets/notification_area/na-tray-manager.h |  24 +++-
 applets/notification_area/na-tray.h         |  17 ++-
 4 files changed, 213 insertions(+), 23 deletions(-)

commit be334f90f603df90bee15d43f5f67a052fa07ff2
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Apr 6 11:11:54 2011 +0200

    na: Fix thin lines appearing when an icon is removed
    
    We were simply never removing the NaTrayChild/GtkSocket object from the
    box when the icon/GtkPlug gets removed.
    
    Conflicts:
            applets/notification_area/na-tray.c

 applets/notification_area/na-tray.c | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

commit d6441581b88fc1fcd5da07bcb485ac6a246f3a28
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 23 00:49:33 2011 +0100

    na: Add icon-padding style property to NaTrayApplet to set padding
    
    It can be used this way:
    
    NaTrayApplet {
        -NaTrayApplet-icon-padding: 6;
    }
    
    https://bugzilla.gnome.org/show_bug.cgi?id=583273

 applets/notification_area/main.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 88730a11adcbd075071dafa61e1633f2ad7a0926
Author: Vincent Untz <vuntz@gnome.org>
Date:   Wed Feb 23 00:34:17 2011 +0100

    na: Rewrite main.c to subclass PanelApplet as NaTrayApplet
    
    This is cleaner, and we'll be able to add style properties to this
    widget.
    
    Conflicts:
            applets/notification_area/main.c
    
    Conflicts:
            applets/notification_area/main.c

 applets/notification_area/Makefile.am |   2 +-
 applets/notification_area/main.c      | 426 ++++++++++++++++------------------
 applets/notification_area/main.h      |  57 +++++
 3 files changed, 263 insertions(+), 222 deletions(-)

commit 7160b2fe0a7299371e1d67edb1765d1f984bacf8
Author: Vincent Untz <vuntz@gnome.org>
Date:   Mon Jan 31 17:30:46 2011 +0100

    na: Move creating of GtkBox for NaTray
    
    Do it in init() instead of constructor(), for consistency. It shouldn't
    matter much, really.
    
    Conflicts:
            applets/notification_area/na-tray.c

 applets/notification_area/na-tray.c | 23 +----------------------
 1 file changed, 1 insertion(+), 22 deletions(-)

commit 59c66fd0169b84fbbccf3dad672589f5d915d4a0
Author: infirit <infirit@gmail.com>
Date:   Sun Jul 6 16:31:12 2014 +0200

    Replace GtkObject with GObject also for Gtk+ 2

 applets/clock/calendar-window.c               | 15 ---------------
 applets/fish/fish.c                           | 16 ----------------
 libmate-panel-applet/mate-panel-applet.c      |  7 -------
 mate-panel/libpanel-util/panel-icon-chooser.c | 15 ---------------
 mate-panel/nothing.cP                         |  4 ++--
 mate-panel/panel-ditem-editor.c               | 15 ---------------
 mate-panel/panel-toplevel.c                   | 16 ----------------
 mate-panel/panel-widget.c                     | 27 ---------------------------
 mate-panel/panel.c                            |  4 ----
 9 files changed, 2 insertions(+), 117 deletions(-)

commit 8b65935648a94ba427e1fa457336485662cddd42
Author: infirit <infirit@gmail.com>
Date:   Tue Jul 14 10:09:55 2015 +0200

    Drop gdkkeysyms-compat usage in Gtk+3
    
    The new GDK_KEY_ keys are also in Gtk+2.

 applets/wncklet/window-menu.c            | 15 +++---
 libmate-panel-applet/mate-panel-applet.c |  5 +-
 mate-panel/drawer.c                      | 23 ++++------
 mate-panel/menu.c                        |  7 +--
 mate-panel/nothing.cP                    | 49 ++++++++++----------
 mate-panel/panel-toplevel.c              | 79 +++++++++++++++-----------------
 mate-panel/panel-widget.c                | 45 +++++++++---------
 mate-panel/panel.c                       |  3 +-
 8 files changed, 105 insertions(+), 121 deletions(-)

commit 8c14769db1b13cffe7cafcdea482061bbe4d5dd4
Author: infirit <infirit@gmail.com>
Date:   Tue Jul 14 12:08:10 2015 +0200

    Remove unused variable

 mate-panel/panel-toplevel.c | 3 ---
 1 file changed, 3 deletions(-)

commit 182aea20c8f560352afefcd494d52296a27e5fc1
Author: Monsta <monsta@inbox.ru>
Date:   Fri Jul 10 16:30:44 2015 +0300

    1.10.1 release (really!) - docbook build fixed :-/

 help/mate-clock/C/index.docbook | 1 +
 1 file changed, 1 insertion(+)

commit 07bb4ee216c5b34898d0f3baafb4aefb6e8f55a1
Author: Monsta <monsta@inbox.ru>
Date:   Fri Jul 10 16:09:50 2015 +0300

    Bump version to 1.10.1

 NEWS         | 8 ++++++++
 configure.ac | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 48f146d51adebb2114b892b084f109250f8fbff3
Merge: 6eb0b454 8f521d25
Author: monsta <monsta@inbox.ru>
Date:   Fri Jul 10 15:55:33 2015 +0300

    Merge pull request #323 from NiceandGently/master
    
    fish help: fix legal page

commit 8f521d252356ee142d341bcb2435acaacd914af6
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri Jul 10 14:54:33 2015 +0200

    fish help: fix legal page

 help/mate-fish/C/index.docbook | 58 +++++++++++++++++++++++++++++-------------
 1 file changed, 40 insertions(+), 18 deletions(-)

commit 6eb0b454fa427ac4893d5e74b947dd496e4acb58
Merge: 3dc2961f df04368c
Author: monsta <monsta@inbox.ru>
Date:   Fri Jul 10 15:34:06 2015 +0300

    Merge pull request #322 from NiceandGently/master
    
    clock help: fix legal page

commit df04368c3d60c75126524c95f85ba5d28f7d18e2
Author: raveit65 <chat-to-me@raveit.de>
Date:   Fri Jul 10 14:26:17 2015 +0200

    clock help: fix legal page

 help/mate-clock/C/index.docbook | 55 +++++++++++++++++++++++++++--------------
 1 file changed, 37 insertions(+), 18 deletions(-)

commit 3dc2961fef259ac3eb33fdabf4604a0509ffc1d9
Author: Monsta <monsta@inbox.ru>
Date:   Fri Jul 10 15:22:37 2015 +0300

    help: fixed broken links to feedback page

 help/mate-clock/C/index.docbook | 2 +-
 help/mate-fish/C/index.docbook  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit e97d400d5b02970a3e5ef9416d2c0c4c7209ba80
Merge: dd0c9ee9 5d5ba35a
Author: Martin Wimpress <code@flexion.org>
Date:   Wed Jul 1 20:47:52 2015 +0100

    Merge pull request #319 from mate-desktop/drawer-fix
    
    drawer: now opens fine after adding any applets and restarting session

commit 5d5ba35a217735e272b406abfbffd07e64ded435
Author: Monsta <monsta@inbox.ru>
Date:   Wed Jul 1 14:23:29 2015 +0300

    drawer: now opens fine after adding any applets and restarting session

 mate-panel/panel-toplevel.c | 3 +++
 1 file changed, 3 insertions(+)

commit dd0c9ee91279e3f59276c136808fdf7bd094d981
Merge: 016d5538 2b8df1cf
Author: monsta <monsta@inbox.ru>
Date:   Mon Jun 29 17:40:53 2015 +0300

    Merge pull request #318 from City-busz/fix-force-quit
    
    Fix Force-Quit panel applet to avoid hang with GTK3

commit 016d553850780869dac881fdc6b8d5e3f0abc8f5
Merge: e64c0d6d bf70515d
Author: monsta <monsta@inbox.ru>
Date:   Mon Jun 29 15:16:43 2015 +0300

    Merge pull request #317 from javispedro/issue-280
    
    replace panel_xutils_set_window_type with gtk_window_set_type_hint
    
    closes https://github.com/mate-desktop/mate-panel/issues/280

commit 2b8df1cf67516a9df1fb8931e88a06b452e890b5
Author: Balló György <ballogyor@gmail.com>
Date:   Mon Jun 29 11:50:20 2015 +0200

    Fix Force-Quit panel applet
    
    This patch implements handling of XInput2 extension events in the applet.
    Without this patch, the applet fails to recognize such events (either mouse
    click for killing application, or escape key for exiting), hence freezing the
    desktop.
    
    Also fix the event mask in call of gdk_device_grab() for keyboard.
    
    Author: Sébastien Villemot <sebastien@debian.org>
    http://bugs.debian.org/698740

 mate-panel/panel-force-quit.c | 34 +++++++++++++++++++++++++++-------
 1 file changed, 27 insertions(+), 7 deletions(-)

commit bf70515d3439c8ccf043966f0fa104704e752602
Author: Javier <dev.git@javispedro.com>
Date:   Sun Jun 28 16:39:13 2015 +0200

    replace panel_xutils_set_window_type with gtk_window_set_type_hint
    
    Both functions have exactly the same semantics, so prefer the Gtk+
    builtin.

 mate-panel/panel-toplevel.c |  2 +-
 mate-panel/panel-xutils.c   | 50 ---------------------------------------------
 mate-panel/panel-xutils.h   |  8 --------
 3 files changed, 1 insertion(+), 59 deletions(-)

commit e64c0d6d99fe6aef817af0b18e53d9813cb2c11f
Merge: 9978fdd4 bcc8a11e
Author: Martin Wimpress <code@flexion.org>
Date:   Sat Jun 27 22:14:24 2015 +0100

    Merge pull request #315 from NiceandGently/master
    
    help: clock and fish: fix merge conflicts during build

commit bcc8a11e05c9e1479e71d1696084e9e509fe2e92
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sat Jun 27 22:35:36 2015 +0200

    help: clock and fish: fix merge conflicts during build

 help/mate-clock/da/da.po       | 2 +-
 help/mate-clock/ko/ko.po       | 2 +-
 help/mate-clock/sr/sr.po       | 2 +-
 help/mate-clock/zh_CN/zh_CN.po | 2 +-
 help/mate-fish/ko/ko.po        | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit 9978fdd46962be0acfcfddfb489b19f949f88bb4
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Fri Jun 12 09:56:30 2015 +0200

    Sync translations with transifex

 po/am.po |  10 ++--
 po/es.po |  43 +++++++--------
 po/fi.po |  10 ++--
 po/ru.po |   4 +-
 po/uk.po | 182 +++++++++++++++++++++++++++++++--------------------------------
 5 files changed, 125 insertions(+), 124 deletions(-)

commit bfcd64e90cf71537b1917472f3a58f30c826edbf
Merge: a5c3193c 4da20264
Author: monsta <monsta@inbox.ru>
Date:   Mon May 25 13:17:16 2015 +0300

    Merge pull request #289 from rilian-la-te/simplify_image
    
    Remove change_background_for_widget from GTK3 build (it is useless.)

commit a5c3193c5a02676a8312c04e30735d974ddf1b20
Merge: d6b4055b fce585a4
Author: monsta <monsta@inbox.ru>
Date:   Thu May 21 18:16:21 2015 +0300

    Merge pull request #304 from NiceandGently/master
    
    GTK3: fix typo in gtk_style_context mate-custom-panel-background

commit fce585a4d0ce4ffb2ea15a28322b749703fdd04e
Author: raveit65 <chat-to-me@raveit.de>
Date:   Thu May 21 16:26:39 2015 +0200

    GTK3: fix typo in gtk_style_context mate-custom-panel-background

 libmate-panel-applet/mate-panel-applet.c | 6 +++---
 mate-panel/panel-background.c            | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

commit d6b4055b55f31cde39b23d7d2191c3bab14a02e2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon May 4 14:29:49 2015 +0200

    Bump version to 1.10.0

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 2fba2dc107daa4afab508dbc3e897ad9b93a07b5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Apr 9 20:35:25 2015 +0200

    Bump version to 1.9.91

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit ccadd3e3a1a4b2c19be82500efcbd553ac247617
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Thu Apr 9 20:35:06 2015 +0200

    Sync translations with transifex

 po/ar.po |  17 +++-----
 po/be.po | 126 ++++++++++++++++++++++++++---------------------------
 po/de.po |  84 ++++++++++++++++++------------------
 po/et.po |  14 +++---
 po/pt.po | 148 +++++++++++++++++++++++++++++++--------------------------------
 po/ro.po |  23 ++++------
 po/ru.po |  11 ++---
 po/sk.po | 112 +++++++++++++++++++++++------------------------
 po/sq.po |  23 +++++-----
 po/uk.po |   8 ++--
 10 files changed, 279 insertions(+), 287 deletions(-)

commit 5e9066540c568f7e10780a1dd85986a6933702f7
Author: Patrick Monnerat <pm@datasphere.ch>
Date:   Wed Jan 14 11:52:30 2015 +0100

    Use g_path_is_absolute().

 applets/clock/system-timezone.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6a71dd03e3d5c2eecdf6d6fcae50ab53656ff148
Author: Patrick Monnerat <pm@datasphere.ch>
Date:   Wed Nov 26 17:38:40 2014 +0100

    Resolve relative symlink of /etc/localtime This fixes wrong detection of system timezone under certain circumstances.
    
    Example: in Fedora 20, the environment is a follows:
    a) /etc/localtime symlinks --> ../usr/share/zoneinfo/Europe/Zurich
    b) /usr/share/zoneinfo contains files with more than 1 hardlink. In example,
       Europe/Zurich and Europe/Vaduz share the same i-node.
    - system_timezone_read_etc_localtime_softlink() because the link is relative.
    - The next algorithms fail because the targeted files do not exist.
    - system_timezone_read_etc_localtime_hardlink() succeeds, but finds
      Europe/Vaduz before Europe/Zurich.
    Thus the detected system timezone is wrong.
    
    By resolving a relative /etc/localtime symlink, this patch leads algorithm
    system_timezone_read_etc_localtime_softlink() to success and therefore proper
    detection of system timezone.
    
    Closes https://patch-diff.githubusercontent.com/raw/mate-desktop/mate-panel/pull/261.patch

 applets/clock/system-timezone.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit e6a14da0f7946f77e4316a05e051527b54ec1c99
Author: Patrick Monnerat <pm@datasphere.ch>
Date:   Wed Nov 26 17:33:40 2014 +0100

    Cancel background settings upon MatePanelAppletFrameDBus destruction. This is an attempt to fix https://github.com/mate-desktop/mate-panel/issues/214

 mate-panel/libmate-panel-applet-private/mate-panel-applet-frame-dbus.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 3f9eb20c55856f23cc841a75ac6d4fe5fba9bb9c
Author: monsta <monsta@inbox.ru>
Date:   Tue Mar 17 12:02:51 2015 +0300

    notification area: prevent crash
    
    from upstream commit:
    https://git.gnome.org/browse/gnome-panel/commit/applets/notification_area/na-tray-manager.c?id=2adbcc5308577d864b09062a3343b9f8dbcdcd7f
    
    Closes https://github.com/mate-desktop/mate-panel/pull/291

 applets/notification_area/na-tray-manager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 52299ee7dc2ff5f4c9b57bbe05ae31839abd2f0f
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Fri Jan 30 23:27:46 2015 +0300

    gtk3: correct css theme selector widget name
    
    Window Selector widget name is "PanelApplet-window-menu-applet-button".
    This fix 1px focus width
    
    Closes https://github.com/mate-desktop/mate-panel/pull/275

 applets/wncklet/window-menu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4da202648feb8c82217852646f0f4c17bba9fb29
Author: Konstantin Pugin <ria.freelander@gmail.com>
Date:   Fri Mar 6 02:30:48 2015 +0600

    Remove change_background_for_widget from GTK3 build (it is useless.)

 libmate-panel-applet/mate-panel-applet.c | 84 +-------------------------------
 mate-panel/panel-background.c            | 74 +---------------------------
 mate-panel/panel-background.h            |  3 +-
 3 files changed, 5 insertions(+), 156 deletions(-)

commit 357bddafdedd424cef23b91b2d2ee09c7c7355ff
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Mar 2 21:04:47 2015 +0100

    Bump version to 1.9.90

 NEWS         | 4 +---
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 4 deletions(-)

commit 80aa5736b1048dc7bdeaad052d9be6859a86837c
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Mon Mar 2 21:04:20 2015 +0100

    Sync translations with transifex

 po/am.po | 20 +++++++-------------
 po/pt.po |  8 ++++----
 2 files changed, 11 insertions(+), 17 deletions(-)

commit 24af5e452752a3b0c970add7a26efeedfa998446
Author: tarakbumba <tarakbumba@gmail.com>
Date:   Thu Feb 26 01:32:35 2015 +0200

    Add mageia.layout
    
    Closes https://github.com/mate-desktop/mate-panel/pull/285

 data/Makefile.am   |  1 +
 data/mageia.layout | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

commit d16ed5a68715b56d3978fc0184af8344a750afc2
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Tue Jan 20 19:38:39 2015 +0100

    Sync translations with transifex

 po/en_GB.po |   7 +-
 po/es.po    |  55 +++---
 po/et.po    |   4 +-
 po/fi.po    |  21 +-
 po/pt.po    |  44 ++---
 po/sr.po    | 623 ++++++++++++++++++++++++++++++------------------------------
 6 files changed, 373 insertions(+), 381 deletions(-)

commit a9e4eb2d79bb8ee22916b189b3e251998704a6c6
Author: Gilles G <djails@gmail.com>
Date:   Tue Dec 16 20:08:40 2014 +1100

    Set Cancel as default action when deleting a panel/drawer
    
    Closes https://github.com/mate-desktop/mate-panel/pull/268

 mate-panel/panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 81948fae67837b06e7fc6512f980e63a0e378240
Author: Monsta <monsta@inbox.ru>
Date:   Mon Jan 12 14:45:12 2015 +0300

    use mate_gdk_spawn_command_line_on_screen always
    
    Closes https://github.com/mate-desktop/mate-panel/pull/273

 mate-panel/panel-action-button.c | 9 +--------
 mate-panel/panel-util.c          | 6 ------
 2 files changed, 1 insertion(+), 14 deletions(-)

commit e7bf6c58a687f047ca570f53840a862898f2832a
Author: Joel Barrios <darkshram@gmail.com>
Date:   Thu Jan 8 02:40:01 2015 -0600

    icons: Replace gnome logo with a MATE one
    
    mate-panel.svg ha a GNOME logo instead of a MATE one.

 icons/32x32/mate-panel.png    | Bin 1070 -> 1212 bytes
 icons/32x32/mate-panel.svg    | 109 ++++++++++++++++++++++--------------------
 icons/48x48/mate-panel.png    | Bin 1523 -> 1635 bytes
 icons/48x48/mate-panel.svg    | 100 +++++++++++++++++++-------------------
 icons/scalable/mate-panel.svg | 100 +++++++++++++++++++-------------------
 5 files changed, 162 insertions(+), 147 deletions(-)

commit 3b471d4cde283b0b30bc81d118317b3ab4afadaf
Author: infirit <infirit@gmail.com>
Date:   Tue Dec 16 13:08:20 2014 +0100

    Revert "Add back Glib 2.32 support"
    
    This reverts commit 7389d3e9dd5390b3d4e1dabbe6dd763a8dc1a0d7.

 applets/clock/test-system-timezone.c | 4 ----
 1 file changed, 4 deletions(-)

commit 7389d3e9dd5390b3d4e1dabbe6dd763a8dc1a0d7
Author: infirit <infirit@gmail.com>
Date:   Tue Dec 16 12:34:10 2014 +0100

    Add back Glib 2.32 support

 applets/clock/test-system-timezone.c | 4 ++++
 1 file changed, 4 insertions(+)

commit ac129af9977b268607be4fe0d4c66076a95f067e
Author: infirit <infirit@gmail.com>
Date:   Fri Dec 12 14:53:41 2014 +0100

    clock: use GNetworkMonitor
    
    Taken from gnome-panel commit: 04e6ef4dbc6a1fdc720b750fdf87a7f43a8a2df6
    From: Alberts Muktupāvels <alberts.muktupavels@gmail.com>

 applets/clock/clock-location.c | 166 +++++++----------------------------------
 configure.ac                   |  12 ---
 2 files changed, 25 insertions(+), 153 deletions(-)

commit 77653708c08b4090c5b6aa449a6c22bc837f8536
Author: infirit <infirit@gmail.com>
Date:   Mon Dec 8 13:01:44 2014 +0100

    Update news

 NEWS | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit b8eba738463f407f4d6e1ff2651c1a7f67b1f982
Author: Monsta <monsta@inbox.ru>
Date:   Sat Dec 6 20:41:36 2014 +0300

    removed obsolete configure option

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 565248cbc5ce991c9b21671687a535db0a95f9a2
Author: infirit <infirit@gmail.com>
Date:   Mon Dec 8 12:38:51 2014 +0100

    Bump version to 1.9.4

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a52688bf134120536eddfb0dc398e06992368587
Author: infirit <infirit@gmail.com>
Date:   Sun Dec 7 19:45:27 2014 +0100

    Revert "gdk_x11_window_lookup_for_display was added in Gtk+2.24"
    
    This reverts commit 9a8965fa0c783bc8221a1ccd55247e5e6a4ee88a.
    
    It caused the run dialog to fail.

 mate-panel/panel-action-protocol.c | 7 +++++++
 1 file changed, 7 insertions(+)

commit 05c072c13e441ff5725b228fce13bc6b820c219f
Author: monsta <monsta@inbox.ru>
Date:   Sun Nov 23 23:21:01 2014 +0300

    va_start should be paired with va_end

 mate-panel/libegg/eggsmclient-xsmp.c | 1 +
 1 file changed, 1 insertion(+)

commit 23b2b3b0e0f979b123a503c41ecde108e824f437
Author: Monsta <monsta@inbox.ru>
Date:   Tue Oct 28 17:42:09 2014 +0300

    zero-initialize all signals arrays

 applets/clock/calendar-window.c                                     | 6 +++---
 applets/clock/clock-location-tile.c                                 | 2 +-
 applets/clock/clock-map.c                                           | 2 +-
 applets/notification_area/na-tray-manager.c                         | 2 +-
 libmate-panel-applet/mate-panel-applet.c                            | 2 +-
 mate-panel/libegg/eggsmclient.c                                     | 2 +-
 .../libmate-panel-applet-private/mate-panel-applet-container.c      | 2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

commit d37ec4b473b4191f871a02fbb04d915a222ae5ba
Author: Monsta <monsta@inbox.ru>
Date:   Thu Nov 6 13:26:30 2014 +0300

    don't leak memory

 applets/clock/clock-face.c                    | 1 +
 applets/fish/fish.c                           | 2 +-
 mate-panel/launcher.c                         | 2 +-
 mate-panel/libpanel-util/panel-icon-chooser.c | 1 +
 mate-panel/menu.c                             | 1 +
 mate-panel/panel-run-dialog.c                 | 2 +-
 mate-panel/panel-test-applets.c               | 1 +
 mate-panel/panel-util.c                       | 1 +
 8 files changed, 8 insertions(+), 3 deletions(-)

commit 9bdf26a667fdb91c2aaa326b946e058677d97a0d
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 15:17:33 2014 +0100

    Revert "gir: Require g-i 0.9.5 and stop using deprecated --strip-prefix option"
    
    This reverts commit 24e90fe2904ea0783562e64ef6981fc83373604f.

 configure.ac                     | 2 +-
 libmate-panel-applet/Makefile.am | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 960af03507bc3e49d7aa45f0acc228cb25577d99
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:51:04 2014 +0100

    Gtk3: panel: focus-line-width is not needed when drawing ButtonWidget
    
    Based on gnome-panel commit: 8a942d16378f62015f302357e0e5b6f61b5713b3
    From: Vincent Untz <vuntz@gnome.org>

 mate-panel/button-widget.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit c3763a0b869a8a77d1ecbb5b3689e0399cbf1d49
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:47:35 2014 +0100

    Gtk3: panel, clock: Synchronize calculate_minimum_height() code
    
    Also change the panel version to use the padding instead of the border.
    We're interested in the padding here. I believe.
    
    Taken from gnome-panel commit: 0b5d9e57451dff3a25b3fbcc8dec671cac469cb
    From: Vincent Untz <vuntz@gnome.org>

 applets/clock/clock.c       |  4 ++--
 mate-panel/panel-toplevel.c | 30 ++++++++++++++++--------------
 2 files changed, 18 insertions(+), 16 deletions(-)

commit c354cea0424964e496601074a7678995750fa275
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:29:26 2014 +0100

    Gtk3: clock: Port to GtkStyleContext
    
    Based on gnome-panel commit: c28ed51852a629884ce9ad8acc7924680c35854c
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 applets/clock/clock.c | 67 +++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 59 insertions(+), 8 deletions(-)

commit 2a5cd7714b342b840b0d96c03eb8b94816b1cf87
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:16:39 2014 +0100

    panel: Add panel_run_dialog_get_combo_text() helper
    
    Instead of writing some long line again and again, use a small helper.
    
    Taken from gnome-panel commit: 412ac2e4fa6a19c454b7046b9f57b9622a7b97d0
    From: Vincent Untz <vuntz@gnome.org>

 mate-panel/panel-run-dialog.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 6f8e92ebb87b15aa5afb02953964743e599ef619
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:07:14 2014 +0100

    Gtk3: panel: Draw the separator line where it should
    
    The calculation wasn't done right. At least, I think so :-)
    Also cleanup a bit some code in the file.
    
    Based on gnome-panel commit: be822666a99680e5cd34c02ad2e35bea81f4a7d8
    From: Vincent Untz <vuntz@gnome.org>

 mate-panel/panel-separator.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit a3869cb7d3f16fe765249a54ddd61691de700768
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 14:02:22 2014 +0100

    Gtk3: panel: Explicitly check return value of cairo_surface_status()
    
    Do not assume that CAIRO_STATUS_SUCCESS == 0. This clarifies the code
    
    Taken from gnome-panel commit: d376b00a0a5856b3d5eb20a7dc1b39440d2f3938

 mate-panel/panel-background.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c0fd2c48d208511bcf7ea2cbe1a6cf16219653df
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 13:59:30 2014 +0100

    Gtk3: menu-bar: Remove duplicate code in panel_menu_bar_class_init
    
    This is also called (correctly per [1]) in panel_menu_bar_init
    
    Inspired by gnome-panel commit: 7230bad1c3bf2623d7fe2922422758ce56c95b16

 mate-panel/panel-menu-bar.c | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

commit 24e90fe2904ea0783562e64ef6981fc83373604f
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 13:46:55 2014 +0100

    gir: Require g-i 0.9.5 and stop using deprecated --strip-prefix option

 configure.ac                     | 2 +-
 libmate-panel-applet/Makefile.am | 4 +---
 2 files changed, 2 insertions(+), 4 deletions(-)

commit 1acfcdf8da5da1d96ba7f9332f5c857c5b9d42fc
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 13:38:21 2014 +0100

    GDK_KEY_* is also in Gtk+2.24

 applets/fish/fish.c | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

commit bf4500d99c6ab596bc673afee964762f9dc44230
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 13:30:49 2014 +0100

    Gtk3: window-menu: Don't change selector style since it's already changed by libwnck
    
    Based on gnome-panel commit: 60cb9c798ed25868c1c07b73fa08aabbb5892d2c
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/window-menu.c | 25 -------------------------
 1 file changed, 25 deletions(-)

commit 02bea48c33f6c5c6dc27c7c23a4c03123b8c1e83
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 12:10:10 2014 +0100

    showdesktop: Fix the size of the icon
    
    Based on gnome-panel commit: 6dae521ff187dcb2da1969ad017cf5b9e1bcb8f2
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/showdesktop.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2db41271af1f4db0be8d6fa68bb4b06d23967eb9
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 12:08:15 2014 +0100

    Gtk3: clock-map: Port to GtkStyleContext
    
    Based on gnome-panel commit: 40391453286cce55039932d6dc3f741bb74e385f
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 applets/clock/clock-map.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit edeebeed64b1ececdf66d5263f073e8090553961
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 12:00:04 2014 +0100

    clock: Check allocated size before creating the shadow pixbuf
    
    Based on gnome-panel commit: d98b58770dec2f1434cb0acce487e85514ca9bb0
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/clock/clock-map.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 935fb2b0b116ea263fbbed6fffe71a829e6ffdb8
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 11:57:27 2014 +0100

    Gtk3: showdesktop: Port gtk_widget_get_style to GtkStyleContext
    
    Based on gnome-panel commit: d27ef4de9ba872e5afc5e60430c7a16549158f61
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 applets/wncklet/showdesktop.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit dba401f22f4aa533d74bb5429e807fbc3c42ec00
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 11:23:52 2014 +0100

    Gtk3: Silence GtkBox deprecation warnings

 applets/clock/calendar-window.c     | 6 ++++++
 applets/clock/clock-location.c      | 6 ++++++
 applets/clock/clock.c               | 4 ++++
 applets/notification_area/na-tray.c | 5 +++++
 mate-panel/nothing.cP               | 3 ++-
 mate-panel/panel-addto.c            | 5 +++++
 mate-panel/panel-ditem-editor.c     | 4 ++++
 mate-panel/panel-force-quit.c       | 4 ++++
 8 files changed, 36 insertions(+), 1 deletion(-)

commit 53362cb07c5e9d68cc9ff52c9a9eaf0da3ef585e
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 10:39:44 2014 +0100

    Gtk3: clock: Port gtk_rc_parse_string to GtkCssProvider
    
    Based on gnome-panel commit: 71c3290e3895b71be6bce0e909c4b414bd190b5e
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 applets/clock/clock.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 8f1cfbc8ba138281acd29b9f3704849262e2dc70
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 10:17:14 2014 +0100

    Gtk3: button-widget: Use gtk_widget_render_icon_pixbuf() instead of gtk_widget_render_icon()
    
    Based on gnome-panel commit: 6f13318fa892afde6ff35b6784217121481e3963
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/button-widget.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 782655a3d3d0626b8ae8717a02f60d56fe0a8fea
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 10:08:46 2014 +0100

    Gtk3: showdesktop: Port to GtkStyleContext
    
    Based on gnome-panel commit: fb1fa7ef2087b68fc7e7a01050e4c6747e8771e8
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/showdesktop.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit aefcd8adde437f4cfbcb6ce69ed54a696da22527
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 10:05:09 2014 +0100

    Gtk3: window-menu: Use gtk_render_focus() instead of gtk_paint_focus()
    
    Based on gnome-panel commit: eab5174e71e705331c53482b7eecb56c1dc3ef6c
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/window-menu.c | 45 +++++++++++++++++++++++++++++--------------
 1 file changed, 31 insertions(+), 14 deletions(-)

commit aacf27bff567db88eea7ca965cb3cdaa2fde1397
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 09:58:59 2014 +0100

    Gtk3: notification_area: Port to GtkStyleContext
    
    Based on gnome-panel commit: 6d390be628ce8fccbfee5c5cca4e240fa391cdda
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/notification_area/main.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 175d93f66a33ff26159de004c92d26b9e15e5c67
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 09:52:59 2014 +0100

    Gtk3: GtkBox is not abstract anymore.
    
    Based on gnome-panel commits,
    na-tray: Remove unneeded type NaBox:
    9313543ecf3f8de10cb14977cd2eccd17e654968
    From: Carlos Garcia Campos <carlosgc@gnome.org>
    
    na: Move creating of GtkBox for NaTray:
    777b913142e61378e60c217c7c609e181202704c
    From: Vincent Untz <vuntz@gnome.org>

 applets/notification_area/na-tray.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit d87ffd3403e55087ee99a2c237d909503494dd6c
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 09:10:22 2014 +0100

    applet: Disconnect show and deactivate menu signals before destroying the applet menu
    
    Fixes crash while removing the menu bar or a drawer.
    
    Based on gnome-panel commit: 8211f19c2c331b1502694a03e1b5abfdc793b56b
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/applet.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 8bd5b1281af366d9039dcbc1751e676b09f97d6f
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 09:02:16 2014 +0100

    Gtk3: panel-toplevel: Port to GtkStyleContext
    
    Based on gnome-panel commit: 75e5bc6a50ef7ecc3cbb9f7833132cec900ff5c8
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-toplevel.c | 168 ++++++++++++++++++++++++++++++++++++++------
 1 file changed, 146 insertions(+), 22 deletions(-)

commit cbe395ae20ac5a31be209dab710bd8bd52f11d4d
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 08:23:25 2014 +0100

    Gtk3: panel-separator: Port to GtkStyleContext
    
    Based on gnome-panel commit: f2ff0440223641d7495560ef2bf99b2b61895cac
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-separator.c | 70 +++++++++++++++++++++++---------------------
 1 file changed, 36 insertions(+), 34 deletions(-)

commit c73f7aa7c5af707cd6d99984a1a8e0d120ad50fb
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 08:04:23 2014 +0100

    Gtk3: panel-run-dialog: Use style-updated signal instead of style-set
    
    Based on gnome-panel commit: b4deac9d217b4785d2c930a2deb2d94f5e4878d9
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-run-dialog.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 91ae83fa5dce263b568909cbe143fa4f833057c8
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 07:40:19 2014 +0100

    Gtk3: Port gdk_keyboard_grab to gdk_device
    
    Based on gnome-panel commits:
    menu:       434e491bc4a280037638fb828529856276de3512
    toplevel:   e0bf14009416f19484bd0431a85744db7d907eb9
    force-quit: 2760d89026ea5cf5bf25a4b8ceaf9f6dd2651043

 mate-panel/menu.c             | 13 +++++++++++--
 mate-panel/panel-force-quit.c | 21 ++++++++++++++++++---
 mate-panel/panel-toplevel.c   | 16 ++++++++++++++--
 3 files changed, 43 insertions(+), 7 deletions(-)

commit b75dcdb46cce1e2dc864e361902b293f7103a5e3
Author: infirit <infirit@gmail.com>
Date:   Sun Nov 23 07:11:25 2014 +0100

    panel-frame: Port to GtkStyleContext and Fix padding handling
    
    Based on gnome-panel commits:
    8e36c34e6f356b0f49a044a5b54125dce4661f7c
    45c30bc316db49b52bcacabcaa2e7977b63318cc
    
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-frame.c | 193 ++++++++++++++++++++++++++++++-----------------
 1 file changed, 122 insertions(+), 71 deletions(-)

commit 43319a2631d02365a945e0d13927a6032ceb802c
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 19:37:11 2014 +0100

    Gtk3: panel-menu-bar: Use gtk_render_focus() instead of gtk_paint_focus()
    
    Taken from gnome-panel commit: e75d7861c293be48a8e10ebbb1e0ab405be0bc7e
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-menu-bar.c | 58 ++++++++++++++++++++++++++-------------------
 1 file changed, 34 insertions(+), 24 deletions(-)

commit 232713d42e79c519cfb060bb286e4cd600678559
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 18:30:38 2014 +0100

    Gtk3: Sync get_preferred_width/height() usage with gnome-panel
    
    Even tough it works it makes taking code (eg StyleContext)
    from gnome-panel much easier.
    
    Also fixes a bug where applets are not drawn when moved/added.

 applets/clock/clock-face.c   | 123 ++++++++++++++++++++++++++++++-------------
 applets/clock/clock-map.c    |   4 +-
 mate-panel/button-widget.c   |  49 ++++++++---------
 mate-panel/panel-frame.c     |  96 ++++++++++++++++++++++++---------
 mate-panel/panel-separator.c |  58 ++++++++++++--------
 5 files changed, 218 insertions(+), 112 deletions(-)

commit 1b0b03e09e3910280c1734475f0b0ac4122fcfca
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 16:56:50 2014 +0100

    Small white-space fixes

 mate-panel/panel-frame.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit f2502e01f10dfe0d0d5e110001f86a7eab35bcd5
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 16:53:01 2014 +0100

    Gtk3: panel-action-button: Port to GtkStyleContext
    
    Based on gnome-panel commit: 3507d3ca74233d88f83df5f3f43a52ae2bc306d3
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-action-button.c | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 15acb52121726d21bd09493ad871d800a4ff8d95
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 16:37:06 2014 +0100

    Gtk3: button-widget: Port to GtkStyleContext
    
    Based on gnome-panel commit: ee0fcd193030b433b5aa1785a864f89e25345f01
    From: Carlos Garcia Campos <carlosgc@gnome.org>
    
    In the process make button_widget_{draw,expose} a little more readable.

 mate-panel/button-widget.c | 133 +++++++++++++++++++++++++++++----------------
 1 file changed, 86 insertions(+), 47 deletions(-)

commit d977f7517405934e4083ec62a838fff2f41da8af
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 16:03:11 2014 +0100

    Gtk3: Remove frame of window-menu applet
    
    Based on gnome-panel commit: 1f086d72760569bc466de082e99a55a82ac06014
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/window-menu.c | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

commit cbff26a9c43c7d8722670aee04715a9edfb2e904
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 15:55:13 2014 +0100

    Gtk3: window-list Don't use deprecated size-allocate signal
    
    Take an additional change from gnome-panel that was not in MATE
    commit: 77a45f0abf8d0db41bb4b99e08dfbdd968cb6be8
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 applets/wncklet/window-list.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 889ea7430ea3f5361832fd5ac816b0142921e519
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 15:47:35 2014 +0100

    Gtk3: Remove border of panel menu bar
    
    Taken from gnome-panel commit: d47c8957a1b7079891dee37b361694fce17b6b53
    From: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/panel-menu-bar.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

commit ea49a097760f4757c0fafa460724f4b642d649c0
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 15:30:47 2014 +0100

    Add a gtkimage with the current pixbuf to button-widget
    
    We need to add a child to the button to get the right allocation of the
    pixbuf. When the button is created without a pixbuf,
    get_preferred_width/height are called the first time when the widget is
    allocated and 0x0 size is cached by gtksizerequest. Since the widget
    doesn't change its size when a pixbuf is set, gtk_widget_queue_resize()
    always uses the cached values instead of calling
    get_preferred_width_height() again. So the actual size, based on pixbuf
    size, is never used. We are overriding the draw() method, so having a
    child doesn't affect the widget rendering anyway.
    
    Taken from gnome-panel commit: 0b8ace11087855d741cdeed97dc839db50319ae8
    from: Carlos Garcia Campos <carlosgc@gnome.org>

 mate-panel/button-widget.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit ab4168815a56729801366abd329d5d47f0b0cdcf
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 15:29:38 2014 +0100

    Fix implicit declaration of function of gdk_x11_set_sm_client_id
    
    We now use it for both Gtk+2 and Gtk+3

 mate-panel/panel-session.c | 2 --
 1 file changed, 2 deletions(-)

commit 33290996c5c09725f902f23d362450cc58543a23
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 15:12:11 2014 +0100

    Gtk3: Fix use of pending deprecated gdk_pointer_grab()/_ungrab()
    
    eplaced gdk_pointer_grab() and gdk_pointer_ungrab()
    by gdk_device_grab() and gdk_device_ungrab(), respectively.
    
    Based on gnome-panel commit: eff5d569c162d508f996678f0d1ea8647c1b810d
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/menu.c | 35 ++++++++++++++++++++++++++++++++---
 1 file changed, 32 insertions(+), 3 deletions(-)

commit 54bb9d708c43ae6fbeb25888fe39d0b7f14a7631
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 14:39:13 2014 +0100

    Gtk3: Fix use of deprecated gdk_pointer_grab()/_ungrab()
    
    Replaced gdk_pointer_grab() and gdk_pointer_ungrab()
    by gdk_device_grab() and gdk_device_ungrab(), respectively.
    
    Taken from gnome-panel commit: 98da5c1953ab90cc5581c1858d7a9c3d3cf796eb
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/mate-panel-applet-frame.c | 11 +++++++++++
 mate-panel/panel-force-quit.c        | 36 +++++++++++++++++++++++++++++++++---
 mate-panel/panel-toplevel.c          | 34 +++++++++++++++++++++++++++++++---
 mate-panel/panel-widget.c            | 34 ++++++++++++++++++++++++++++++----
 4 files changed, 105 insertions(+), 10 deletions(-)

commit eddf9c62d300df3e3be0444c060dd3fe75b97643
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 14:18:19 2014 +0100

    Small white-space fix

 mate-panel/mate-panel-applet-frame.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b6280f261e91913e6cb1338c844d7aeb2323d82a
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 14:14:27 2014 +0100

    Gtk3: Fix use of deprecated gdk_display_get_pointer()
    
    Replaced gdk_display_get_pointer() by gdk_device_get_position()
    
    Taken from gnome-panel commit: c5111b57d5241f8e4e9f420df1a904f66fa2e89d
    From: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/panel-toplevel.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit ca5abdea1b6a1e5e178dfe63a260b73106f69658
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 14:09:09 2014 +0100

    Gtk3: Replaced gdk_cursor_unref() by g_object_unref()
    
    gdk_cursor_unref () is deprecated in Gtk+3

 mate-panel/menu.c             | 4 ++++
 mate-panel/panel-force-quit.c | 4 ++++
 mate-panel/panel-toplevel.c   | 4 ++++
 mate-panel/panel-util.c       | 4 ++++
 mate-panel/panel-widget.c     | 4 ++++
 5 files changed, 20 insertions(+)

commit 7dbd1866ad11c2052cf1508531faed7e57d5d2cc
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 13:06:03 2014 +0100

    panel-addto: Remove the vbox as it is redundant.
    
    And cut down on some ifdef hell in the process.

 mate-panel/panel-addto.c | 21 ---------------------
 1 file changed, 21 deletions(-)

commit 657eec661403b86781533b81699607d6ac54ec5a
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 12:49:56 2014 +0100

    button-widget: small white-space cleanup

 mate-panel/button-widget.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fbda73e09d790f499a08af94391141fc7bf66d71
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 12:45:08 2014 +0100

    panel-menu-botton: small white-space fix

 mate-panel/panel-menu-button.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9a8965fa0c783bc8221a1ccd55247e5e6a4ee88a
Author: infirit <infirit@gmail.com>
Date:   Sat Nov 22 12:33:44 2014 +0100

    gdk_x11_window_lookup_for_display was added in Gtk+2.24
    
    So cut down on the ifdef hell a bit.

 mate-panel/panel-action-protocol.c | 7 -------
 1 file changed, 7 deletions(-)

commit aa4e6f2cdcb5fedd208f99216e5443caf200245e
Author: infirit <infirit@gmail.com>
Date:   Fri Nov 21 19:09:42 2014 +0100

    na: Fix handling of SYSTEM_TRAY_CANCEL_MESSAGE
    
    We were not looking at the right field for the message ID: the ID is in
    the 4th field for BEGIN_MESSAGE, but 2nd field for CANCEL_MESSAGE.
    
    Taken from gnome-panel commit: 8ff843458425d525b10fc5d9b7bb357248c637c8
    From: Vincent Untz <vuntz@gnome.org>

 applets/notification_area/na-tray-manager.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

commit 942cbeb00cc425fcce0f416f3ae1c76e49610ebc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Nov 22 12:08:39 2014 +0100

    Bump version to 1.9.3

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 2c7c8e00e0697e1908c28d25f93bee166835565b
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Sat Nov 22 12:04:44 2014 +0100

    Sync translations with transifex

 po/cy.po    | 119 +++++++++++++++++++++++++++++-------------------------------
 po/en_AU.po |  14 ++-----
 po/hr.po    |  17 +++++----
 po/ja.po    |  77 ++++++++++++++++++---------------------
 po/lt.po    |  57 +++++++++++++++--------------
 po/pt.po    |   5 ++-
 6 files changed, 138 insertions(+), 151 deletions(-)

commit f464fc13b1ce4c96807628f54a752a719d64ac66
Author: Monsta <monsta@inbox.ru>
Date:   Thu Nov 20 13:19:15 2014 +0300

    clock: Use lists instead of arrays
    
    Closes https://github.com/mate-desktop/mate-panel/pull/258

 applets/clock/clock.c | 26 +++++++-------------------
 1 file changed, 7 insertions(+), 19 deletions(-)

commit ece05e7059f946f44ffb4a1f75ec4e4d3f565f72
Author: monsta <monsta@inbox.ru>
Date:   Thu Nov 20 11:29:00 2014 +0300

    Fix logic a bit - avoid dereferencing NULL pointer
    
    Closes https://github.com/mate-desktop/mate-panel/pull/257

 mate-panel/libpanel-util/panel-list.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3c8dd6e27ed244059698fd981e239a2f9fab62f8
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Thu Nov 13 13:23:10 2014 +0300

    fix crash if icon name is NULL

 mate-panel/panel-util.c | 5 +++++
 1 file changed, 5 insertions(+)

commit a0d8947866db1486e0be0744cec62cfdcc2199d4
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Sun Nov 9 17:30:11 2014 +0300

    use gtk icon(pixmap) cache insteadof custom one

 mate-panel/main.c              |   1 +
 mate-panel/menu.c              | 517 ++---------------------------------------
 mate-panel/panel-addto.c       |  53 ++---
 mate-panel/panel-run-dialog.c  | 178 +++++---------
 mate-panel/panel-stock-icons.c |  10 +
 mate-panel/panel-stock-icons.h |   3 +
 mate-panel/panel-util.c        |  22 ++
 mate-panel/panel-util.h        |   1 +
 8 files changed, 120 insertions(+), 665 deletions(-)

commit fb43ad39ab10826519d23ed42101d983113527bf
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Nov 10 10:40:04 2014 +0100

    Bump version to 1.9.2

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 66ba84ff2e1c8a7ef685200d8b9dde8f6c1ccd77
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Mon Nov 10 10:39:47 2014 +0100

    Sync translations with transifex

 po/et.po | 55 +++++++++++++++++++++++++------------------------------
 po/uk.po | 28 +++++++++++-----------------
 2 files changed, 36 insertions(+), 47 deletions(-)

commit d16d491d2fbe94e3c0711c9b5282734e0f26d33f
Author: infirit <infirit@gmail.com>
Date:   Tue Nov 4 21:37:57 2014 +0100

    lockdown: move disable-lock-down key to lockdown schema
    
    In order to use it in other parts of MATE.

 configure.ac                          | 2 +-
 data/org.mate.panel.gschema.xml.in.in | 5 -----
 mate-panel/panel-lockdown.c           | 4 ++--
 mate-panel/panel-schemas.h            | 2 +-
 4 files changed, 4 insertions(+), 9 deletions(-)

commit fe814c53964746c20e9c113ff9dcbfc6a9634f0e
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Mon Oct 13 18:40:16 2014 +0400

    Fix memory leak
    
    Closes https://github.com/mate-desktop/mate-panel/pull/244

 mate-panel/panel-profile.c | 1 +
 1 file changed, 1 insertion(+)

commit 5130d8ed49b420e0d2c37c8e3b606e2306b356f8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 14 08:47:00 2014 +0200

    Update visibility of menu bar on load
    
    Closes https://github.com/mate-desktop/mate-panel/issues/245

 mate-panel/panel-menu-bar.c | 1 +
 1 file changed, 1 insertion(+)

commit 469727d8d2f9dea7277b89c20bd4e1da0c2969f7
Author: Balló György <ballogyor@gmail.com>
Date:   Sat Oct 4 02:49:13 2014 +0200

    Places menu: don't rely on Caja desktop files
    
    This adds better support for other GVFS-compliant file managers (e.g. nautilus, nemo, pcmanfm).
    
    Closes https://github.com/mate-desktop/mate-panel/pull/242

 mate-panel/panel-action-button.c | 13 ++++++++--
 mate-panel/panel-menu-items.c    | 52 +++++++++++++++++++++++++++-------------
 2 files changed, 46 insertions(+), 19 deletions(-)

commit 9144c25beaf0fe63cb668c730bbaaa532069c2d3
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Mon Oct 13 00:24:10 2014 +0400

    Fix segfault: gtk_get_current_event can return null
    
    fix segfault when gtk_get_current_event return null
    fix memory leak: gtk_get_current_event return value must be freed
    
    Closes https://github.com/mate-desktop/mate-panel/pull/243

 mate-panel/panel.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit e08a6727b5a071f3740543fd900ae60b696c3d72
Author: Balló György <ballogyor@gmail.com>
Date:   Fri Oct 3 07:47:04 2014 +0200

    Do not assume that session manager GSettings schema is available
    
    This removes hard dependency on mate-session-manager (useful for custom environments).
    
    Closes https://github.com/mate-desktop/mate-panel/pull/241

 mate-panel/panel-action-button.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 75e3f6c2143ac68829c7e699ea555b91ee4021d0
Author: Nathan Torchia <nemasu@gmail.com>
Date:   Fri Oct 3 10:24:21 2014 +0900

    Update Marco WM name as per Marco commit
    
    Closes https://github.com/mate-desktop/mate-panel/pull/240
    
     cbf24f5d78719b930fc0cd6c0c80e00e9d62c95a

 applets/wncklet/workspace-switcher.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1c1d618ce88d9b3a7f3f0643633af39be2acdef0
Merge: af283015 18dae414
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 2 20:49:03 2014 +0200

    Merge pull request #239 from City-busz/make-caja-optional
    
    Use Caja GSettings schema optionally

commit 18dae414fa94b6e7f03407641f9e7bb1a6ca59c0
Author: Balló György <ballogyor@gmail.com>
Date:   Thu Oct 2 19:37:40 2014 +0200

    Use Caja GSettings schema optionally
    
    This was the last place where it was used unconditionally.

 mate-panel/menu.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

commit af283015b69c24fecd32cdddb53dded6325783cf
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Sep 22 13:46:07 2014 +0200

    Add ubuntu layout

 data/Makefile.am   |  3 ++-
 data/ubuntu.layout | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+), 1 deletion(-)

commit 92f8b13c967dd867455acc9cdbc5f58a6550b9ae
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Sep 22 11:14:46 2014 +0200

    Add copyright about MATE developers on about window

 mate-panel/panel-context-menu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5ea32831e2b85c82d75feb349f49b7ceead407e7
Merge: 3f67cbdf ba4f9b19
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Sep 22 09:53:48 2014 +0200

    Merge pull request #227 from NiceandGently/master
    
    add fedora layout file

commit 3f67cbdfeaa53820ed690dd25f52dc162e7511e2
Author: Gert Wollny <gw.fossdev@gmail.com>
Date:   Thu Sep 18 15:17:05 2014 +0200

    Set screen of context menu also in gtk2 code path Closes: #234

 libmate-panel-applet/mate-panel-applet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ba4f9b19a827eb128a821623a5144e51e998cedf
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sun Aug 10 15:14:41 2014 +0200

    add fedora layout file

 data/Makefile.am   |  1 +
 data/fedora.layout | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

commit 835dbc1cdb8848e3f9651ea497e89b77493ce1d9
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Fri Jul 11 22:33:10 2014 +0200

    Sync translations with transifex

 po/de.po    | 18 +++++++++---------
 po/es.po    | 52 ++++++++++++++++++++++++++--------------------------
 po/pt.po    | 16 +++++-----------
 po/pt_BR.po | 32 ++++++++++++++++++--------------
 po/ru.po    | 37 ++++++++++++++++---------------------
 po/sk.po    |  8 ++++----
 po/sv.po    | 11 ++++++-----
 po/tr.po    | 37 +++++++++++++++++--------------------
 8 files changed, 101 insertions(+), 110 deletions(-)

commit 4395a7c626978489bd17129548772b82cd9d7c4e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Jul 1 20:06:21 2014 +0200

    Bump version to 1.9.1

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 79a92df06b8e63efcec37dd448e705437cb276a4
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jun 27 11:44:03 2014 +0200

    Bump required mate-desktop version to 1.9.1

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 79805983d1bcf49c01bc7088020048d81458bd6e
Author: infirit <infirit@gmail.com>
Date:   Fri Jun 27 09:57:48 2014 +0200

    Bump required mate-desktop version to 1.9.2
    
    Needed for the new MateColorSelecionDialog.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2f746fd147e67581db21421ff22d8ea68f13d4d2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jun 26 10:15:44 2014 +0200

    Use MateColorButton in panel properties dialog

 mate-panel/panel-properties-dialog.c  | 22 ++++++++++++----------
 mate-panel/panel-properties-dialog.ui |  2 +-
 2 files changed, 13 insertions(+), 11 deletions(-)

commit c5cd7ee4a663d862a5893fb48cbfb087540978cc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 25 16:23:02 2014 +0200

    Restore way to close windows with middle click
    
    It was forgot during transition to libwnck
    Closes https://github.com/mate-desktop/mate-panel/issues/191

 applets/wncklet/window-list.c                                          | 3 ++-
 mate-panel/libmate-panel-applet-private/mate-panel-applet-frame-dbus.c | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 67c9f12a0d4188b546284efec2d0cd1b90f9052d
Merge: 4a769cc8 5185103c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 25 11:26:17 2014 +0200

    Merge pull request #212 from rilian-la-te/fix_expand
    
    Fix expand

commit 4a769cc810d949623d9f489f244092407c924882
Merge: e5beb2fd 67613a61
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 25 11:25:46 2014 +0200

    Merge pull request #211 from rilian-la-te/remove_opacity_key_gtk3
    
    Remove opacity key gtk3

commit e5beb2fdfe1a8b1ca103a8fa0a4afdaf3946aa90
Merge: f3273062 a9d01e5a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 25 11:25:28 2014 +0200

    Merge pull request #209 from rilian-la-te/fix_rgba_all
    
    Fix rgba all

commit a9d01e5afb6fd97d96f1b298e6e34d2dfa02f25c
Author: Konstantin Pugin <ria.freelander@gmail.com>
Date:   Fri Jun 20 00:04:13 2014 +0700

    Fix RGBA issues for GTK3

 applets/wncklet/window-list.c            |   2 +
 libmate-panel-applet/mate-panel-applet.c |  90 ++++++++++++++++++--
 libmate-panel-applet/mate-panel-applet.h |   2 +-
 mate-panel/mate-panel-applet-frame.c     |   2 +
 mate-panel/panel-background-monitor.c    |   7 ++
 mate-panel/panel-background-monitor.h    |   3 +
 mate-panel/panel-background.c            | 141 +++++++++++++++++--------------
 mate-panel/panel-background.h            |   7 +-
 mate-panel/panel-menu-bar.c              |   4 +
 mate-panel/panel-separator.c             |  11 ++-
 mate-panel/panel-toplevel.c              |  12 +++
 mate-panel/panel-widget.c                |   4 +-
 12 files changed, 205 insertions(+), 80 deletions(-)

commit 5185103c7acac7f6f291bbd5f7c969c8809237e7
Author: Konstantin Pugin <ria.freelander@gmail.com>
Date:   Fri Jun 20 00:34:43 2014 +0700

    Fix expanded panels and size allocation

 applets/notification_area/na-tray.c      |   4 +
 libmate-panel-applet/mate-panel-applet.c |   8 +-
 libmate-panel-applet/mate-panel-applet.h |   3 +
 mate-panel/applet.c                      |   9 +-
 mate-panel/mate-panel-applet-frame.c     |  15 ++--
 mate-panel/panel-toplevel.c              | 148 +++++++++++++++++++++----------
 6 files changed, 133 insertions(+), 54 deletions(-)

commit 67613a6142a53f4bc633edc5732d6396d45a30d6
Author: Konstantin Pugin <ria.freelander@gmail.com>
Date:   Fri Jun 20 00:15:35 2014 +0700

    Replace opacity key to alpha value in color key.

 mate-panel/panel-profile.c           | 25 +++++++++++++++++++------
 mate-panel/panel-properties-dialog.c |  5 +++++
 2 files changed, 24 insertions(+), 6 deletions(-)

commit f327306271032e7b8ef716655f91c58513792cde
Merge: e964b756 9add3760
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun May 18 13:20:36 2014 +0200

    Merge pull request #195 from dnk/applet_rgba_visual
    
    gtk3: set rgba visual for applets

commit e964b756355ad5e66a0166d9ca218bdde2054f6d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun May 18 12:22:36 2014 +0200

    clock: Dont use deprecated rsvg_pixbuf_from_file_at_size
    
    This required to copy some code from GTK3 source to make it working with GTK2 too
    
    Thanks to Sander Sweers for the help to replace rsvg_pixbuf_from_file_at_size

 applets/clock/clock-face.c  |  12 +--
 applets/clock/clock-utils.c | 204 ++++++++++++++++++++++++++++++++++++++++++++
 applets/clock/clock-utils.h |   2 +
 3 files changed, 209 insertions(+), 9 deletions(-)

commit 4e757f98c0e977032a2ad4576455aa6407e7537a
Author: infirit <infirit@gmail.com>
Date:   Sat May 17 06:45:42 2014 +0200

    Bump GLIB version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 98ba11cbc32a561198f5f29b5ea069bd31347fe0
Author: infirit <infirit@gmail.com>
Date:   Sat May 17 02:47:48 2014 +0200

    Remove/comment unused variables

 applets/clock/clock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 40aa3a2cf5cc982e60d80c15186bf5e476dd9499
Author: infirit <infirit@gmail.com>
Date:   Sat May 17 02:26:25 2014 +0200

    Use gtk_combo_box_text_new for gtk+2
    
    It was introduced in gtk+-2.24

 applets/notification_area/testtray.c | 6 ------
 1 file changed, 6 deletions(-)

commit 9ac60e7ab5bfbc95e64e0017fdeda54d4dcaac19
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 22:31:51 2014 +0200

    Use pid in g_spawn_async like gnome-panel does, fixes warning

 mate-panel/libpanel-util/panel-launch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 497b849a069dd5e64d08a1093ee4ceeb73ae1534
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 22:30:17 2014 +0200

    Use g_spawn_async also for gtk+2

 mate-panel/libpanel-util/panel-launch.c | 8 --------
 1 file changed, 8 deletions(-)

commit 4534d11d0f99bc0f232f32db48aa87571f61a03c
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 21:28:35 2014 +0200

    Drop support for glib < 2.36

 applets/clock/test-system-timezone.c | 4 ----
 mate-panel/panel-util.c              | 4 ----
 2 files changed, 8 deletions(-)

commit cb443937caaffd79c297d7799639b826411bf785
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 20:55:13 2014 +0200

    Use GDK_WINDOW_XID

 mate-panel/panel-background-monitor.c |  6 +-----
 mate-panel/panel-background.c         |  3 +--
 mate-panel/xstuff.c                   | 16 ----------------
 3 files changed, 2 insertions(+), 23 deletions(-)

commit dd5556550e07876cf74db99909be97ef8a87a508
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 20:19:25 2014 +0200

    Use gdk_x11_set_sm_client_id also for gtk+2 (since 2.24)

 mate-panel/libegg/eggsmclient-xsmp.c | 6 ------
 mate-panel/panel-session.c           | 4 ----
 2 files changed, 10 deletions(-)

commit 65886d8d05867862632319982af408ed03b6f96c
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 20:12:42 2014 +0200

    Drop support for gtk+ < 2.24

 mate-panel/libegg/eggdesktopfile.c | 8 --------
 mate-panel/panel-menu-button.c     | 8 --------
 2 files changed, 16 deletions(-)

commit 754805fd9153815bb4af4544db68e93af49ddf80
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 20:00:46 2014 +0200

    Use gdk_x11_window_lookup_for_display also in gtk+2

 mate-panel/panel-force-quit.c | 4 ----
 1 file changed, 4 deletions(-)

commit f06a44bcb24ab5ec6e18998255c09ac635a40552
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 19:45:52 2014 +0200

    Remove all calls gtk_dialog_set_has_separator

 applets/fish/fish.c             | 4 ----
 mate-panel/panel-addto.c        | 5 +----
 mate-panel/panel-ditem-editor.c | 4 ----
 3 files changed, 1 insertion(+), 12 deletions(-)

commit 60d55e0c3e7d4a438b0763cecf3311b0ab45cd09
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 19:25:13 2014 +0200

    Use gdk_window_add_filter also for gtk+2

 mate-panel/panel-action-protocol.c | 20 --------------------
 1 file changed, 20 deletions(-)

commit cbb6be2e75d31babef9a2d13d9f356cb2a891686
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 18:39:55 2014 +0200

    Use gtk_widget_set_size_request which is also available in gtk+2

 mate-panel/menu.c | 4 ----
 1 file changed, 4 deletions(-)

commit e45b1b7953ca9e636c5e7c4cd1797fe4710861d3
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 17:31:42 2014 +0200

    Use gtk_list_store_insert_with_values also for gtk2
    
    It was introduced in gtk+-2.6.

 applets/clock/clock.c | 12 ------------
 1 file changed, 12 deletions(-)

commit f743caf3054bbbadc6b98c9e746fd8ae5114b142
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 16:57:05 2014 +0200

    Use gdk_window_get_width also for gtk2
    
    It was introduced in gtk+-2.24

 applets/notification_area/fixedtip.c     | 4 ----
 libmate-panel-applet/mate-panel-applet.c | 4 +---
 2 files changed, 1 insertion(+), 7 deletions(-)

commit 41ff2a970ebee68fc7ca335f10ae24a6210d1fd5
Author: infirit <infirit@gmail.com>
Date:   Fri May 16 16:28:11 2014 +0200

    Use GDK_WINDOW_XID for gtk+2 and gtk+3
    
    It was introduced in gdk2 already so clean up the code.

 applets/notification_area/na-tray-child.c   |  4 ----
 applets/notification_area/na-tray-manager.c | 11 +++--------
 libmate-panel-applet/mate-panel-applet.c    | 14 --------------
 mate-panel/panel-multiscreen.c              |  4 ----
 mate-panel/panel-xutils.c                   | 12 ------------
 mate-panel/xstuff.c                         | 20 --------------------
 6 files changed, 3 insertions(+), 62 deletions(-)

commit 9add37607f20d8e44d743897456aa821032570be
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Wed May 14 22:37:16 2014 +0400

    gtk3: set rgba visual for applets

 libmate-panel-applet/mate-panel-applet.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 472ccc0025494452e705ac28dc82fe5abd431de8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon May 12 22:10:33 2014 +0200

    Use better dconf path for added applets

 mate-panel/panel-profile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4beaf86fa92af12f7f47fb25263c4cb5ef221836
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Fri May 9 20:52:17 2014 +0200

    Sync translations with transifex

 po/hu.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 16d37afdab1dc7736d2474300d350df54780f6d8
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Thu Feb 27 17:53:02 2014 +0400

    gtk3: fix run application dialog

 mate-panel/panel-run-dialog.c | 22 ++--------------------
 1 file changed, 2 insertions(+), 20 deletions(-)

commit 0d8619e8c9bbad72c0ff17ae8a5bbffe5b237be0
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Mon Apr 28 14:16:38 2014 +0200

    Sync translations with transifex

 po/de.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fb39d21e361b59c21e1cfd14839ceee029f85258
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Apr 28 14:16:13 2014 +0200

    Remove autogenerated files

 applets/notification_area/na-marshal.c | 167 ---------------------------------
 applets/notification_area/na-marshal.h |  36 -------
 2 files changed, 203 deletions(-)

commit 790260977f9c94625f4531c6f787623959982105
Author: mate-i18n <mate-i18n@ml.mate-desktop.org>
Date:   Sun Apr 27 14:32:59 2014 +0200

    Sync translations with transifex

 po/be.po | 28 ++++++++++++-----------
 po/bg.po | 26 +++++++++-------------
 po/de.po |  8 +++----
 po/hu.po | 19 ++++++++--------
 po/lt.po | 25 +++++++++------------
 po/mr.po | 77 ++++++++++++++++++++++++++++++----------------------------------
 6 files changed, 85 insertions(+), 98 deletions(-)

commit c12158d5ac51aee5c857f06104d8803213cd42fd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Apr 26 14:12:03 2014 +0200

    Use about dialog from libmate-desktop

 applets/clock/clock.c                | 4 +++-
 applets/fish/fish.c                  | 3 ++-
 applets/notification_area/main.c     | 4 +++-
 applets/wncklet/showdesktop.c        | 4 +++-
 applets/wncklet/window-list.c        | 3 ++-
 applets/wncklet/window-menu.c        | 4 +++-
 applets/wncklet/workspace-switcher.c | 3 ++-
 configure.ac                         | 6 +++---
 mate-panel/panel-context-menu.c      | 4 +++-
 9 files changed, 24 insertions(+), 11 deletions(-)

commit 522567f336b5920c869ff45aa60d8cecdac0b640
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Apr 26 14:11:42 2014 +0200

    GTK3 fix

 mate-panel/panel-widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit eea33a0d62b99342a67becde98d2b7eb78754896
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Apr 23 20:01:33 2014 +0200

    Use common GSettings function from libmate-desktop

 mate-panel/Makefile.am       |   2 -
 mate-panel/panel-gsettings.c | 178 -------------------------------------------
 mate-panel/panel-gsettings.h |  53 -------------
 mate-panel/panel-layout.c    |   6 +-
 mate-panel/panel-profile.c   |  10 +--
 5 files changed, 8 insertions(+), 241 deletions(-)

commit 0da16b7a0f2d43d50c3087ba904b224eb7e846b3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Apr 21 13:41:23 2014 +0200

    Use dconf functions from libmate-desktop

 mate-panel/libpanel-util/Makefile.am   |   2 -
 mate-panel/libpanel-util/panel-dconf.c | 113 ---------------------------------
 mate-panel/libpanel-util/panel-dconf.h |  44 -------------
 mate-panel/panel-layout.c              |   4 +-
 mate-panel/panel-profile.c             |  10 +--
 mate-panel/panel-test-applets.c        |   4 +-
 6 files changed, 9 insertions(+), 168 deletions(-)

commit cee5574921774fe9ae6041e2aefc2e0c5129e1af
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Mar 22 17:17:43 2014 +0100

    Bump version to 1.9.0

 NEWS         | 3 +++
 configure.ac | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 274f48b7ab430cf0b911869f8475e8f46cf84dce
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Mar 1 11:39:16 2014 +0100

    Bump version to 1.8.0

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 389d8924d803625862b6a57eefaeef09dc84c34e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Mar 1 11:38:50 2014 +0100

    Sync translations with transifex

 po/be.po    |  67 ++++++++++++++++++--------------------
 po/de.po    |  16 ++++-----
 po/en_GB.po |   2 +-
 po/ko.po    | 106 +++++++++++++++++++++++++++++-------------------------------
 po/te.po    |  19 ++++-------
 5 files changed, 98 insertions(+), 112 deletions(-)

commit b9ed876d00c06585672e602cf5e525a4830f5a31
Merge: 485659f3 e1535f26
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 26 10:02:49 2014 +0100

    Merge pull request #172 from dnk/rgba_visual
    
    gtk3: rgba visual

commit e1535f260bfb46463e2c41a01a6f9e0151e7941f
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Wed Feb 26 12:46:21 2014 +0400

    gtk3: rgba visual

 mate-panel/panel-toplevel.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

commit 485659f39620e77960d6e7b1e6ca835eade17ba6
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Feb 23 18:56:14 2014 +0100

    Sync translations with transifex

 po/fr.po | 16 +++++-----------
 po/hu.po | 12 +++---------
 po/sl.po | 20 +++++++-------------
 3 files changed, 15 insertions(+), 33 deletions(-)

commit 838555a41dc08a870b408628f529b66e2c8c4054
Merge: ce82ba10 d1920da2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 22 11:32:10 2014 +0100

    Merge pull request #171 from dnk/transient_parent_xid
    
    transient_parent_xid is not used

commit d1920da2d961deca7052f8b4e508c7621895de71
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Fri Feb 21 23:43:25 2014 +0400

    transient_parent_xid is not used
    
    transient_parent_xid is not used but can cause problem: applet widget have not window until realized

 applets/clock/clock-location-tile.c | 17 -----------------
 applets/clock/clock-location.c      |  1 -
 applets/clock/clock-location.h      |  1 -
 applets/clock/clock.c               |  7 +------
 4 files changed, 1 insertion(+), 25 deletions(-)

commit ce82ba10c09a96dc5388f06ecb2891826a15272d
Merge: da3ae797 328c01a3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Feb 21 19:18:04 2014 +0100

    Merge pull request #170 from dnk/memory_leak
    
    memory leaks

commit 328c01a32417c802457161b0a916b57b35635ea6
Author: Denis Gorodnichev <denis.gorodnichev@gmail.com>
Date:   Fri Feb 21 16:58:58 2014 +0400

    memory leaks
    
    g_settings_get_string returns newly-allocated string

 mate-panel/drawer.c            | 10 +++++++---
 mate-panel/panel-addto.c       |  4 +++-
 mate-panel/panel-bindings.c    |  8 ++++++--
 mate-panel/panel-menu-button.c | 15 +++++++++------
 mate-panel/panel-profile.c     | 10 ++++++----
 5 files changed, 31 insertions(+), 16 deletions(-)

commit da3ae79722e7dde4fa99134ea2b9ad0cea014a63
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 19:16:06 2014 +0100

    Bump version to 1.7.90

 NEWS         | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 9d33ab75f813b7b6a1c1529a2dac32dc0fb80e59
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 19:15:49 2014 +0100

    Update NEWS

 NEWS | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit 5d5d0e7ae967585fb1f8c90377fccdd1d6f73dd7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 19:10:37 2014 +0100

    Sync translations with transifex

 po/de.po    | 156 +++++++++++++++----------------
 po/el.po    |  25 ++---
 po/es.po    |  47 +++++-----
 po/is.po    |  37 ++++----
 po/sk.po    | 305 ++++++++++++++++++++++++++++++------------------------------
 po/sv.po    |  15 +--
 po/zh_TW.po |  17 ++--
 7 files changed, 286 insertions(+), 316 deletions(-)

commit a76e01d62267a4e8e141cba867115456d5cf3942
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 16:47:24 2014 +0100

    Add some example layouts

 data/Makefile.am      |  5 ++++-
 data/linuxmint.layout | 41 +++++++++++++++++++++++++++++++++++++++++
 data/opensuse.layout  | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 94 insertions(+), 1 deletion(-)

commit 8f566ae05581e987378b790570ab4d66d6e1b071
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 16:24:25 2014 +0100

    Allow to set default layout with --layout

 mate-panel/main.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 33c1874fbb17ed83c6d24103eff09c83297e0c4d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 18 16:23:48 2014 +0100

    Allow to have multiple panel layouts

 data/Makefile.am                                   |  6 ++---
 data/{panel-default-layout.mate => default.layout} |  0
 data/org.mate.panel.gschema.xml.in.in              |  5 ++++
 mate-panel/panel-layout.c                          | 27 ++++++++++++++--------
 mate-panel/panel-schemas.h                         |  1 +
 5 files changed, 26 insertions(+), 13 deletions(-)

commit 453154a00f0f17e20340e408055e224ea57cc4e8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Feb 17 17:02:14 2014 +0100

    Fix mate-panel --reset

 mate-panel/applet.c                |  3 ++-
 mate-panel/panel-action-protocol.c |  2 +-
 mate-panel/panel-menu-bar.c        |  3 +++
 mate-panel/panel-menu-items.c      |  3 +++
 mate-panel/panel-profile.c         |  9 +++++++++
 mate-panel/panel-reset.c           | 14 ++++++++------
 mate-panel/panel-reset.h           |  2 +-
 7 files changed, 27 insertions(+), 9 deletions(-)

commit 9043b93048346404662950b55b5d60b7e588e375
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Feb 17 10:49:29 2014 +0100

    configure: Add check-news

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e523599f7c36fec54242c718db0aaf6e402c1756
Author: hekel <hekel@archlinux.info>
Date:   Mon Feb 17 10:49:15 2014 +0100

    Update manpages

 man/mate-desktop-item-edit.1  | 57 +++++++++++++++++++++++++------------
 man/mate-panel-test-applets.1 | 60 ++++++++++++++++++++++++++++-----------
 man/mate-panel.1              | 66 ++++++++++++++++++++++++++++---------------
 3 files changed, 126 insertions(+), 57 deletions(-)

commit 6c35ff311a1710064a7db330364bc7acaf366c7f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 15 15:16:43 2014 +0100

    Sync translations with transifex

 po/en_GB.po | 12 +++---------
 po/sq.po    | 35 +++++++++++++++--------------------
 2 files changed, 18 insertions(+), 29 deletions(-)

commit e66e26254ca2465b53826b6e8751c00a6d4c95a7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 12 13:14:31 2014 +0100

    Fix gnome atom declaration

 mate-panel/panel-action-protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f74b2b9dc7b3ba413dd729d3ca4984ea597174f4
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 12 13:02:25 2014 +0100

    notification_area: Some GTK improvements

 applets/notification_area/na-tray-child.c | 2 +-
 applets/notification_area/na-tray.c       | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

commit a47009814ce3418f5e861ba425e8fab2ac01f9da
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 12 12:05:37 2014 +0100

    Allow to customize menu bar with GSettings

 data/Makefile.am                              |  3 +-
 data/org.mate.panel.menubar.gschema.xml.in.in | 29 +++++++++++++++++
 mate-panel/panel-menu-bar.c                   | 47 +++++++++++++++++++++++++--
 mate-panel/panel-schemas.h                    |  7 ++++
 po/POTFILES.in                                |  1 +
 5 files changed, 83 insertions(+), 4 deletions(-)

commit cd6f4678430417bf1675db8ce2343acc1f60f32b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 11 13:05:12 2014 +0100

    Add hook to support run dialog and main menu opening with metacity

 mate-panel/panel-action-protocol.c | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

commit 7c4222433b97422b81d2f52215dbe6cbdcf43985
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 11 10:43:15 2014 +0100

    Include autogen.sh in tarball

 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 6e6124df793abd0bb20e2025e6648a4944652503
Author: infirit <infirit@gmail.com>
Date:   Sun Feb 9 23:32:26 2014 +0100

    Bump version to 1.7.2

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2fee9ae523b75f5c9dd1b431aed746edbbc3b481
Author: infirit <infirit@gmail.com>
Date:   Sun Feb 9 22:13:16 2014 +0100

    Resurrect user-guide menu entry

 mate-panel/panel-menu-items.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

commit fb43f65784da653a1ba4e790366d4cff159358f5
Author: infirit <infirit@gmail.com>
Date:   Sun Feb 9 17:30:40 2014 +0100

    Partial revert "help: Fix manual applet images and remove unused images"
    This reverts commit fe82a7fdd89d12c09bdbee3c9a69df999080f45c.
    
    The clock applet figures are all different so bring them back.

 help/mate-clock/ar/figures/clock_applet.png    | Bin 0 -> 2312 bytes
 help/mate-clock/ca/figures/clock_applet.png    | Bin 0 -> 1207 bytes
 help/mate-clock/cs/figures/clock_applet.png    | Bin 0 -> 879 bytes
 help/mate-clock/de/figures/clock_applet.png    | Bin 0 -> 1398 bytes
 help/mate-clock/el/figures/clock_applet.png    | Bin 0 -> 2160 bytes
 help/mate-clock/es/figures/clock_applet.png    | Bin 0 -> 1795 bytes
 help/mate-clock/eu/figures/clock_applet.png    | Bin 0 -> 1274 bytes
 help/mate-clock/fr/figures/clock_applet.png    | Bin 0 -> 1341 bytes
 help/mate-clock/it/figures/clock_applet.png    | Bin 0 -> 1574 bytes
 help/mate-clock/ja/figures/clock_applet.png    | Bin 0 -> 1589 bytes
 help/mate-clock/ko/figures/clock_applet.png    | Bin 0 -> 418 bytes
 help/mate-clock/nl/figures/clock_applet.png    | Bin 0 -> 406 bytes
 help/mate-clock/sr/figures/clock_applet.png    | Bin 0 -> 1058 bytes
 help/mate-clock/sv/figures/clock_applet.png    | Bin 0 -> 399 bytes
 help/mate-clock/th/figures/clock_applet.png    | Bin 0 -> 1235 bytes
 help/mate-clock/uk/figures/clock_applet.png    | Bin 0 -> 1923 bytes
 help/mate-clock/zh_CN/figures/clock_applet.png | Bin 0 -> 1444 bytes
 help/mate-clock/zh_TW/figures/clock_applet.png | Bin 0 -> 429 bytes
 18 files changed, 0 insertions(+), 0 deletions(-)

commit fe82a7fdd89d12c09bdbee3c9a69df999080f45c
Author: infirit <infirit@gmail.com>
Date:   Sun Feb 9 17:04:54 2014 +0100

    help: Fix manual applet images and remove unused images

 help/mate-clock/Makefile.am                    |   2 +-
 help/mate-clock/ar/figures/clock_applet.png    | Bin 2312 -> 0 bytes
 help/mate-clock/ca/figures/clock_applet.png    | Bin 1207 -> 0 bytes
 help/mate-clock/cs/figures/clock_applet.png    | Bin 879 -> 0 bytes
 help/mate-clock/de/figures/clock_applet.png    | Bin 1398 -> 0 bytes
 help/mate-clock/el/figures/clock_applet.png    | Bin 2160 -> 0 bytes
 help/mate-clock/es/figures/clock_applet.png    | Bin 1795 -> 0 bytes
 help/mate-clock/eu/figures/clock_applet.png    | Bin 1274 -> 0 bytes
 help/mate-clock/fr/figures/clock_applet.png    | Bin 1341 -> 0 bytes
 help/mate-clock/it/figures/clock_applet.png    | Bin 1574 -> 0 bytes
 help/mate-clock/ja/figures/clock_applet.png    | Bin 1589 -> 0 bytes
 help/mate-clock/ko/figures/clock_applet.png    | Bin 418 -> 0 bytes
 help/mate-clock/nl/figures/clock_applet.png    | Bin 406 -> 0 bytes
 help/mate-clock/sr/figures/clock_applet.png    | Bin 1058 -> 0 bytes
 help/mate-clock/sv/figures/clock_applet.png    | Bin 399 -> 0 bytes
 help/mate-clock/th/figures/clock_applet.png    | Bin 1235 -> 0 bytes
 help/mate-clock/uk/figures/clock_applet.png    | Bin 1923 -> 0 bytes
 help/mate-clock/zh_CN/figures/clock_applet.png | Bin 1444 -> 0 bytes
 help/mate-clock/zh_TW/figures/clock_applet.png | Bin 429 -> 0 bytes
 help/mate-fish/Makefile.am                     |   2 +-
 help/mate-fish/ko/figures/fish_applet.png      | Bin 5818 -> 0 bytes
 help/mate-fish/uk/figures/fish_applet.png      | Bin 5818 -> 0 bytes
 22 files changed, 2 insertions(+), 2 deletions(-)

commit 83a76222ea1e8af8d928b9ad41d7349256d0e7c3
Author: infirit <infirit@gmail.com>
Date:   Sun Feb 9 15:07:26 2014 +0100

    help: Avoid file collision with gnome-panel
    
    Also correct help uri for applets.

 applets/clock/clock-utils.c                        |   2 +-
 applets/clock/clock.c                              |   4 +-
 applets/fish/fish.c                                |   4 +-
 applets/notification_area/main.c                   |   4 +-
 applets/wncklet/showdesktop.c                      |   2 +-
 applets/wncklet/window-list.c                      |   4 +-
 applets/wncklet/window-menu.c                      |   2 +-
 applets/wncklet/wncklet.c                          |   2 +-
 applets/wncklet/workspace-switcher.c               |   4 +-
 configure.ac                                       |   4 +-
 help/Makefile.am                                   |   2 +-
 .../C/figures/clock_applet.png                     | Bin
 help/{clock => mate-clock}/C/index.docbook         |   2 +-
 help/{clock => mate-clock}/C/legal.xml             |  49 +++---
 help/{clock => mate-clock}/Makefile.am             |   2 +-
 help/{clock => mate-clock}/ar/ar.po                |   1 -
 .../ar/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/ca/ca.po                | 179 ++++++++++-----------
 .../ca/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/cs/cs.po                |   1 -
 .../cs/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/da/da.po                |   0
 help/{clock => mate-clock}/de/de.po                |   0
 .../de/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/el/el.po                |   0
 .../el/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/en_GB/en_GB.po          |   0
 help/{clock => mate-clock}/es/es.po                |   0
 .../es/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/eu/eu.po                |   1 -
 .../eu/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/fi/fi.po                | 179 ++++++++++-----------
 .../fr/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/fr/fr.po                |   4 +-
 .../it/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/it/it.po                |   4 +-
 .../ja/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/ja/ja.po                |   0
 .../ko/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/ko/ko.po                |   0
 .../nl/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/nl/nl.po                |   0
 help/{clock => mate-clock}/oc/oc.po                |   1 -
 help/{clock => mate-clock}/pa/pa.po                |   0
 help/{clock => mate-clock}/pt/pt.po                |   0
 help/{clock => mate-clock}/pt_BR/pt_BR.po          |   4 +-
 help/{clock => mate-clock}/ru/ru.po                |   1 -
 .../sr/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/sr/sr.po                |   0
 .../sv/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/sv/sv.po                |   1 -
 .../th/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/th/th.po                | 179 ++++++++++-----------
 .../uk/figures/clock_applet.png                    | Bin
 help/{clock => mate-clock}/uk/uk.po                |   0
 .../zh_CN/figures/clock_applet.png                 | Bin
 help/{clock => mate-clock}/zh_CN/zh_CN.po          |   0
 help/{clock => mate-clock}/zh_HK/zh_HK.po          |   0
 .../zh_TW/figures/clock_applet.png                 | Bin
 help/{clock => mate-clock}/zh_TW/zh_TW.po          |   0
 help/{fish => mate-fish}/C/figures/fish_applet.png | Bin
 help/{fish => mate-fish}/C/index.docbook           |   0
 help/{fish => mate-fish}/C/legal.xml               |   7 +-
 help/{fish => mate-fish}/Makefile.am               |   2 +-
 help/{fish => mate-fish}/ca/ca.po                  | 127 ++++++++-------
 help/{fish => mate-fish}/cs/cs.po                  |   0
 help/{fish => mate-fish}/de/de.po                  |   0
 help/{fish => mate-fish}/el/el.po                  |   0
 help/{fish => mate-fish}/en_GB/en_GB.po            |   0
 help/{fish => mate-fish}/es/es.po                  |   0
 help/{fish => mate-fish}/eu/eu.po                  |   1 -
 help/{fish => mate-fish}/fi/fi.po                  | 127 ++++++++-------
 help/{fish => mate-fish}/fr/fr.po                  |   0
 help/{fish => mate-fish}/it/it.po                  |   0
 help/{fish => mate-fish}/ja/ja.po                  |   0
 .../{fish => mate-fish}/ko/figures/fish_applet.png | Bin
 help/{fish => mate-fish}/ko/ko.po                  |   0
 help/{fish => mate-fish}/oc/oc.po                  |   1 -
 help/{fish => mate-fish}/ru/ru.po                  |   0
 help/{fish => mate-fish}/sv/sv.po                  |   1 -
 help/{fish => mate-fish}/th/th.po                  |   1 -
 .../{fish => mate-fish}/uk/figures/fish_applet.png | Bin
 help/{fish => mate-fish}/uk/uk.po                  |   0
 help/{fish => mate-fish}/zh_CN/zh_CN.po            |   0
 84 files changed, 444 insertions(+), 465 deletions(-)

commit 6b509a04f52aa4a70cd4a7a6a51295bccbf161b3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 8 20:25:31 2014 +0100

    libmate-panel-applet: Remove unused value in enum

 libmate-panel-applet/mate-panel-applet.c | 1 -
 1 file changed, 1 deletion(-)

commit 496859dd6327f6db0fe4a7f3c2a509542ce30d09
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 8 17:50:30 2014 +0100

    libmate-panel-applet: Fix missing initialization

 libmate-panel-applet/mate-panel-applet.c | 1 +
 1 file changed, 1 insertion(+)

commit 41b192b6d139fa0426022ac98675eaa66cb303c1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 8 17:24:55 2014 +0100

    libmate-panel-applet: GTK3 improvements

 libmate-panel-applet/mate-panel-applet.c | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

commit 1d0d0843a3a3cd16c47ebc3361973ca6d02bd066
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Feb 8 16:18:39 2014 +0100

    libmate-panel-applet: Some GTK3 improvements

 libmate-panel-applet/mate-panel-applet.c | 39 ++++++++++++++++++++++++--------
 1 file changed, 30 insertions(+), 9 deletions(-)

commit a95e7dbcab95ff25333fb5e7519f956dc718afce
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 4 13:58:52 2014 +0100

    Fix border of menubar with GTK3

 mate-panel/panel-menu-bar.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit c8cb51ddab947b191198b279ce99ee1afc331deb
Author: infirit <infirit@gmail.com>
Date:   Mon Jan 27 14:24:36 2014 +0100

    libmate-panel-applet: Use GTK_API_VERSION in Makefile instead of harcoded gtk api.

 libmate-panel-applet/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c59787baff127759bcf777bf7462330b55d3b83b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Jan 26 19:45:28 2014 +0100

    Fix typo

 mate-panel/launcher.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1ce328ee1e61beeb9b4d94ab197e7dd0fd18eef8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 23 10:56:33 2014 +0100

    We need to call gtk_window_set_has_resize_grip also with GTK3 now
    
    Not only with Ubuntu/GTK2

 mate-panel/panel-toplevel.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 0dd85b49acf5b6076a66288ab6f2bf856c34c38e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 23 10:14:57 2014 +0100

    clock: Do not try to get width/height of non-existing GdkPixbuf
    
    https://git.gnome.org/browse/gnome-panel/commit/applets/clock?id=4729df0cda021c27b76be072023dbee082e49e47

 applets/clock/clock-map.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 8e19630353062fcc458df29ea9767d703cfbbad7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 23 10:02:18 2014 +0100

    libmate-panel-applet: Fix missing include and wrong declaration

 libmate-panel-applet/mate-panel-applet.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 3ffbaa0104c762931e50e33a8ab877384f46127f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 23 09:55:12 2014 +0100

    Use gtk_widget_get_preferred_size with GTK3

 applets/clock/clock-face.c  | 4 ++++
 applets/clock/clock.c       | 4 ++++
 mate-panel/applet.c         | 4 ++++
 mate-panel/panel-frame.c    | 4 ++++
 mate-panel/panel-toplevel.c | 8 ++++++++
 5 files changed, 24 insertions(+)

commit 88e032f155bd4d3169383e7201b53ba539af70b0
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 20 22:09:02 2014 +0100

    Sync translations with transifex

 po/LINGUAS  |    2 +
 po/cmn.po   | 2826 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/cs.po    |   15 +-
 po/de.po    |  121 ++-
 po/gl.po    |  297 +++----
 po/hr.po    |  151 ++--
 po/kk.po    |   32 +-
 po/pl.po    |   52 +-
 po/pt_BR.po |   44 +-
 po/ur.po    | 2825 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/vi.po    |   61 +-
 11 files changed, 6019 insertions(+), 407 deletions(-)

commit 4fe80fa31fa30c8d33273afbdadb80e267bc4aae
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Jan 18 17:53:28 2014 +0100

    notification_area: Fix visibility with GTK3

 applets/notification_area/na-tray.c | 3 +++
 1 file changed, 3 insertions(+)

commit e49389829aa0ba789ebd4860c1ac2db8d38ccd4e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Jan 14 15:33:47 2014 +0100

    Bump version to 1.7.1

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 524fa5d8ea5937dad40b7dd97680e5ac34c509fc
Merge: 16d15f21 26619c9c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 6 02:47:05 2014 -0800

    Merge pull request #154 from infirit/master
    
    Add  to ACLOCAL_AMFLAGS for user added flags

commit 26619c9cfaa0cab46054e378c38075623063abd5
Author: infirit <infirit@gmail.com>
Date:   Sun Jan 5 14:10:18 2014 +0100

    Add  to ACLOCAL_AMFLAGS for user added flags

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 16d15f21c3b4ccd46fcc189f2b8bd7071becf167
Merge: f4c7c8fe ae375c55
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Dec 22 14:59:18 2013 -0800

    Merge pull request #152 from infirit/yelp
    
    Update help uri to the correct location

commit ae375c55fa3d1156b16f407bbf84bf541e0ffb20
Author: infirit <infirit@gmail.com>
Date:   Sun Dec 22 19:54:56 2013 +0100

    Update help uri to the correct location

 mate-panel/applet.c                   | 2 +-
 mate-panel/libpanel-util/panel-show.c | 2 +-
 mate-panel/panel-action-button.c      | 2 +-
 mate-panel/panel-addto.c              | 2 +-
 mate-panel/panel-context-menu.c       | 2 +-
 mate-panel/panel-ditem-editor.c       | 2 +-
 mate-panel/panel-menu-bar.c           | 2 +-
 mate-panel/panel-menu-button.c        | 2 +-
 mate-panel/panel-properties-dialog.c  | 2 +-
 mate-panel/panel-run-dialog.c         | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

commit f4c7c8fe62818f8acf3b2514732148a3727a3d2a
Merge: beb21bb6 80ae554c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 12 10:35:00 2013 -0800

    Merge pull request #148 from infirit/master
    
    Cairo includes are only needed when using gtk+3

commit 80ae554c371e53fa097a2fdd49bca7a55ac03ce5
Author: infirit <infirit@gmail.com>
Date:   Thu Dec 12 19:24:58 2013 +0100

    Cairo includes are only needed when using gtk+3

 libmate-panel-applet/mate-panel-applet.h | 2 ++
 1 file changed, 2 insertions(+)

commit beb21bb6c382f629d817a1c19613d07825358f5c
Merge: d2a24b97 401f643f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 12 10:05:37 2013 -0800

    Merge pull request #147 from infirit/master
    
    Use GTK_API_VERSION in pkgconfig in files

commit 401f643f9682663603c3f2d4b8ce6267ecdcabf1
Author: infirit <infirit@gmail.com>
Date:   Thu Dec 12 18:22:31 2013 +0100

    Use GTK_API_VERSION in pkgconfig in files

 configure.ac                                                  | 2 ++
 libmate-panel-applet/libmatepanelapplet-4.0-uninstalled.pc.in | 2 +-
 libmate-panel-applet/libmatepanelapplet-4.0.pc.in             | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

commit d2a24b977ff1d39564fb39176360a0dd229c9e05
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Dec 1 18:26:34 2013 +0100

    Remove has_separator property from ui files

 applets/clock/clock.ui                | 3 ---
 applets/fish/fish.ui                  | 1 -
 applets/wncklet/window-list.ui        | 1 -
 applets/wncklet/workspace-switcher.ui | 1 -
 mate-panel/panel-properties-dialog.ui | 2 --
 mate-panel/panel-run-dialog.ui        | 1 -
 mate-panel/panel-test-applets.ui      | 1 -
 7 files changed, 10 deletions(-)

commit 17fc492a17e8f5317d7438c771ac9c95ce1e0a04
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 29 14:36:23 2013 +0100

    Panel background improvements for GTK3

 libmate-panel-applet/mate-panel-applet.c | 115 +++++++++++++++++++++++++------
 libmate-panel-applet/mate-panel-applet.h |   2 +-
 mate-panel/panel-background.c            | 105 ++++++++++++++++------------
 mate-panel/panel-background.h            |   8 ++-
 mate-panel/panel-profile.c               |  54 ++++++++++++++-
 mate-panel/panel-profile.h               |  15 ++++
 mate-panel/panel-properties-dialog.c     |  35 ++++++++++
 mate-panel/panel-types.h                 |   2 +
 mate-panel/panel-widget.c                | 104 ++++++++++++++++++++++++----
 mate-panel/panel.c                       |  11 +++
 10 files changed, 365 insertions(+), 86 deletions(-)

commit 3f71479324ce6896c3cd8a480aacaf588ab159a9
Merge: ef1bad99 27daac2e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 29 04:09:26 2013 -0800

    Merge pull request #145 from infirit/master
    
    Check if WNCK_CHECK_VERSION is defined

commit 27daac2e3469ec6620309b8bbcf947934874dd9d
Author: infirit <infirit@gmail.com>
Date:   Thu Nov 28 15:27:13 2013 +0100

    Check if WNCK_CHECK_VERSION is defined

 applets/wncklet/window-list.c        | 8 ++++++++
 applets/wncklet/workspace-switcher.c | 4 ++++
 2 files changed, 12 insertions(+)

commit 39ad4f5cc370685777e53f3be10781179ea1bd9e
Author: infirit <infirit@gmail.com>
Date:   Wed Nov 27 13:23:20 2013 +0100

    Revert "Fixed the WNCK_CHECK_VERSION calls to only be used when GTK is version"
    
    This reverts commit 428e32cd0f3f2df0cbd4e859304f0935a11612bc.

 applets/wncklet/window-list.c        | 7 +------
 applets/wncklet/workspace-switcher.c | 2 --
 2 files changed, 1 insertion(+), 8 deletions(-)

commit e453fc3773d3b49665c42d54069c4c82a853bc64
Author: infirit <infirit@gmail.com>
Date:   Wed Nov 27 13:23:16 2013 +0100

    Revert "Correct wnck/gtk3 check."
    
    This reverts commit a2b1af54a24b93766f5e2ed4a216637dc510ec47.

 applets/wncklet/window-list.c        | 13 +++++++++----
 applets/wncklet/workspace-switcher.c |  4 +++-
 2 files changed, 12 insertions(+), 5 deletions(-)

commit ef1bad990c74e1b39e3184139c7742fa6569a612
Merge: 6baad9da 22dae140
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Nov 20 03:54:22 2013 -0800

    Merge pull request #142 from NiceandGently/master
    
    GTK3: Fix compile warning by using gdk_error_trap_pop_ignored()

commit 22dae140b0fcc7050c524ff6785673b5eee59c2b
Author: raveit65 <chat-to-me@raveit.de>
Date:   Sat Nov 16 23:00:19 2013 +0100

    GTK3: Fix compile warning by using gdk_error_trap_pop_ignored()

 applets/notification_area/na-tray-child.c | 12 ++++++++++++
 libmate-panel-applet/mate-panel-applet.c  |  4 ++++
 mate-panel/panel-force-quit.c             |  4 ++++
 mate-panel/panel-xutils.c                 | 12 ++++++++++++
 mate-panel/xstuff.c                       |  4 ++++
 5 files changed, 36 insertions(+)

commit 6baad9dafc848b65cc469e03ea12388d98db9cd1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 15 01:07:42 2013 +0100

    wncklet: Fit window list size with GTK3

 applets/wncklet/window-list.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 18f1c77e939af90f5d882a4b3704c86942b6e019
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 15 00:36:25 2013 +0100

    Fix not expanded applets list in GTK3 addto dialog

 mate-panel/panel-addto.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 58c59f238b7d4e44371031b2e5c20ed17695da15
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Nov 14 17:28:43 2013 +0100

    Add return to gboolean function
    
    Closes #134
    https://github.com/mate-desktop/mate-panel/issues/134

 applets/clock/clock-face.c | 3 +++
 1 file changed, 3 insertions(+)

commit 729207ce21fedcbd727330011d6418acae363332
Merge: 1bb6004d 44694720
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Nov 13 03:58:17 2013 -0800

    Merge pull request #137 from flexiondotorg/master
    
    Remove distro folder.

commit 44694720f2ab2bfe2d72d423f9fbcd5e151cf38b
Author: Martin Wimpress <code@flexion.org>
Date:   Wed Nov 13 11:57:18 2013 +0000

    Remove distro folder.

 distro/archlinux/PKGBUILD           | 39 -------------------------------------
 distro/archlinux/mate-panel.install | 31 -----------------------------
 2 files changed, 70 deletions(-)

commit 1bb6004d9198143df0d15b9b0a318607b59eaf0f
Merge: 1b401ff5 a2b1af54
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Nov 12 06:47:50 2013 -0800

    Merge pull request #136 from infirit/master
    
    Fix build failure

commit a2b1af54a24b93766f5e2ed4a216637dc510ec47
Author: infirit <infirit@gmail.com>
Date:   Tue Nov 12 15:07:45 2013 +0100

    Correct wnck/gtk3 check.

 applets/wncklet/window-list.c        | 13 ++++---------
 applets/wncklet/workspace-switcher.c |  4 +---
 2 files changed, 5 insertions(+), 12 deletions(-)

commit 428e32cd0f3f2df0cbd4e859304f0935a11612bc
Author: Alex Brinister <alex_brinister@yahoo.com>
Date:   Mon Nov 11 16:06:19 2013 -0500

    Fixed the WNCK_CHECK_VERSION calls to only be used when GTK is version
    3.0

 applets/wncklet/window-list.c        | 7 ++++++-
 applets/wncklet/workspace-switcher.c | 2 ++
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 1b401ff5fa2ca8e710986e61227389cedde10a05
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Oct 27 02:40:36 2013 +0200

    Fix variables for GTK2

 mate-panel/panel-background.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 603813e094a40707eb0d9e4238348c6bdf857993
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Oct 27 02:38:31 2013 +0200

    Fix variables for GTK2

 mate-panel/button-widget.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a7a5e35d8a5418d9b9939f6de99367f72ded7b6d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 15:21:44 2013 +0200

    Fix gtkx.h include for GTK2

 mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c | 3 +++
 1 file changed, 3 insertions(+)

commit 59b9e630489b3804538db6f45b629f7a72083f6c
Merge: 5b18029d 1128f2d9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 05:44:36 2013 -0700

    Merge pull request #131 from infirit/master
    
    Remove autogenerated files

commit 1128f2d906d406377bd267c08480ed34886b0331
Author: infirit <infirit@gmail.com>
Date:   Tue Oct 22 15:09:57 2013 +0200

    Remove autogenerated gtk doc files

 .../mate-panel-applet/html/applet-popups.html      |  31 -
 .../mate-panel-applet/html/applet-porting.html     | 207 -----
 .../mate-panel-applet/html/applet-writing.html     |  93 --
 doc/reference/mate-panel-applet/html/home.png      | Bin 654 -> 0 bytes
 doc/reference/mate-panel-applet/html/index.html    |  64 --
 doc/reference/mate-panel-applet/html/index.sgml    |  69 --
 doc/reference/mate-panel-applet/html/left.png      | Bin 459 -> 0 bytes
 .../html/mate-panel-applet-mate-panel-applet.html  | 948 ---------------------
 .../html/mate-panel-applet.devhelp                 |  68 --
 .../html/mate-panel-applet.devhelp2                |  75 --
 .../mate-panel-applet/html/mate-panel-applet.html  |  38 -
 .../mate-panel-applet/html/multi-applets.html      |  31 -
 .../mate-panel-applet/html/panel-signals.html      |  31 -
 doc/reference/mate-panel-applet/html/right.png     | Bin 472 -> 0 bytes
 .../mate-panel-applet/html/server-files.html       |  67 --
 .../mate-panel-applet/html/session-saving.html     |  31 -
 doc/reference/mate-panel-applet/html/style.css     | 265 ------
 doc/reference/mate-panel-applet/html/up.png        | Bin 406 -> 0 bytes
 .../tmpl/mate-panel-applet-unused.sgml             | 109 ---
 .../mate-panel-applet/tmpl/mate-panel-applet.sgml  | 393 ---------
 20 files changed, 2520 deletions(-)

commit 5b18029d3907186c949f6d1d0cf50633a913f91e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:42:17 2013 +0200

    Bump version to 1.7.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b2f11a6390b704e85157c2a800643dcde0f714c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:40:30 2013 +0200

    wncklet: Add GTK3 support

 applets/wncklet/showdesktop.c        |  3 ++-
 applets/wncklet/window-list.c        | 47 ++++++++++++++++++++++++++----------
 applets/wncklet/window-menu.c        | 36 +++++++++++++++++++++++++--
 applets/wncklet/wncklet.c            |  4 +--
 applets/wncklet/wncklet.h            |  2 +-
 applets/wncklet/workspace-switcher.c | 47 ++++++++++++++++++++++++++++++------
 6 files changed, 113 insertions(+), 26 deletions(-)

commit 5c99612305a3042d7096123619a83346492eadf3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:39:39 2013 +0200

    notification_area: Add GTK3 support

 applets/notification_area/fixedtip.c        | 54 ++++++++++++++++---
 applets/notification_area/main.c            |  4 ++
 applets/notification_area/na-tray-child.c   | 80 ++++++++++++++++++++++++++---
 applets/notification_area/na-tray-child.h   |  4 ++
 applets/notification_area/na-tray-manager.c | 60 +++++++++++++++++++++-
 applets/notification_area/na-tray-manager.h |  3 ++
 applets/notification_area/na-tray.c         | 62 +++++++++++++++++++++-
 applets/notification_area/testtray.c        |  6 +++
 8 files changed, 256 insertions(+), 17 deletions(-)

commit 57c9c407461f47ec09f0a2a631601450a0209af6
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:38:46 2013 +0200

    clock: Add GTK3 support

 applets/clock/calendar-window.c     | 18 ++++++++-
 applets/clock/clock-face.c          | 68 ++++++++++++++++++++++++++++++++-
 applets/clock/clock-location-tile.c |  4 ++
 applets/clock/clock-map.c           | 75 +++++++++++++++++++++++++++++++++----
 applets/clock/clock.c               | 23 +++++++++++-
 5 files changed, 176 insertions(+), 12 deletions(-)

commit 85ee20fe919a4824c538d9140f49db2320635d33
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:35:56 2013 +0200

    fish: Add GTK3 support

 applets/fish/fish.c | 144 +++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 132 insertions(+), 12 deletions(-)

commit 16606e37b0ba6a2c2661433e0219a87df43a539c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:35:17 2013 +0200

    libmate-panel-applet: Add GTK3 support

 libmate-panel-applet/mate-panel-applet.c | 310 ++++++++++++++++++++++++++++++-
 libmate-panel-applet/mate-panel-applet.h |  11 +-
 libmate-panel-applet/test-dbus-applet.c  |  17 ++
 3 files changed, 327 insertions(+), 11 deletions(-)

commit a6efbbceb5b1122512cd01609eab99fe522d8435
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:34:04 2013 +0200

    mate-panel: Add GTK3 support

 mate-panel/button-widget.c                         | 168 +++++++-
 mate-panel/drawer.c                                |   4 +
 mate-panel/libegg/eggsmclient-xsmp.c               |   8 +
 .../mate-panel-applet-container.c                  |   1 +
 mate-panel/libpanel-util/panel-icon-chooser.c      |  18 +
 mate-panel/libpanel-util/panel-launch.c            |  25 ++
 mate-panel/mate-panel-applet-frame.c               | 145 +++++++
 mate-panel/menu.c                                  |  62 ++-
 mate-panel/nothing.cP                              |   6 +
 mate-panel/nothing.h                               |   2 +
 mate-panel/panel-action-button.c                   |   9 +
 mate-panel/panel-action-protocol.c                 |  24 +-
 mate-panel/panel-addto.c                           |   2 +
 mate-panel/panel-background-monitor.c              |  69 +++-
 mate-panel/panel-background.c                      | 425 ++++++++++++++++++++-
 mate-panel/panel-background.h                      |  40 +-
 mate-panel/panel-bindings.c                        |   7 +
 mate-panel/panel-context-menu.c                    |   7 +-
 mate-panel/panel-ditem-editor.c                    |  16 +
 mate-panel/panel-force-quit.c                      |   4 +
 mate-panel/panel-frame.c                           | 150 +++++++-
 mate-panel/panel-frame.h                           |   3 +
 mate-panel/panel-menu-bar.c                        |  32 +-
 mate-panel/panel-menu-button.c                     |   5 +
 mate-panel/panel-menu-items.c                      |  56 +--
 mate-panel/panel-multiscreen.c                     |   4 +
 mate-panel/panel-profile.c                         |  32 +-
 mate-panel/panel-properties-dialog.c               |   3 +
 mate-panel/panel-run-dialog.c                      |  57 ++-
 mate-panel/panel-run-dialog.ui                     |   3 +-
 mate-panel/panel-separator.c                       |  86 ++++-
 mate-panel/panel-session.c                         |   8 +
 mate-panel/panel-toplevel.c                        | 146 ++++++-
 mate-panel/panel-util.c                            |  22 +-
 mate-panel/panel-widget.c                          |  82 +++-
 mate-panel/panel-xutils.c                          |  13 +
 mate-panel/panel.c                                 |   1 +
 mate-panel/xstuff.c                                |  82 +++-
 mate-panel/xstuff.h                                |   1 -
 39 files changed, 1710 insertions(+), 118 deletions(-)

commit fa97943c56e331668aff4b3587fe70c5edcd36b2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 26 14:32:39 2013 +0200

    Use mateweather also for GTK3

 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 61e4832376665af4f2bc44dde172d0899df4bf1b
Merge: a7bea067 ce4f9dd7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 12 16:48:58 2013 +0200

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit ce4f9dd7df8aaf1d69510a2472b724ba8378e275
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 11 17:24:13 2013 +0200

    Sync translations with transifex

 po/am.po    | 186 +++++++--------
 po/ar.po    | 278 +++++++++++-----------
 po/be.po    | 772 ++++++++++++++++++++++++++++++------------------------------
 po/bg.po    |  17 +-
 po/ca.po    |   8 +-
 po/cs.po    |  67 +++---
 po/de.po    |  27 ++-
 po/el.po    |  57 ++---
 po/en_AU.po |  66 +++---
 po/en_GB.po |  69 +++---
 po/es.po    |  71 +++---
 po/he.po    |  10 +-
 po/hu.po    |  26 +-
 po/ky.po    | 387 +++++++++++++++---------------
 po/lv.po    |  53 +++--
 po/ms.po    | 667 +++++++++++++++++++++++++--------------------------
 po/pl.po    |  27 ++-
 po/pt_BR.po |  17 +-
 po/sk.po    | 111 ++++-----
 po/sl.po    | 349 +++++++++++++--------------
 po/uk.po    | 285 +++++++++++-----------
 po/zh_CN.po |  68 +++---
 22 files changed, 1821 insertions(+), 1797 deletions(-)

commit 98e885d02bb62d8046c6ceadaebeeeae5798c8d6
Merge: e80641d1 f34033cd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Oct 7 13:56:51 2013 -0700

    Merge pull request #123 from infirit/1.6
    
    clock-applet: set sane unit values

commit f34033cd00f5993794e0d31b2b2aa73d3e06f67c
Author: infirit <infirit@gmail.com>
Date:   Mon Oct 7 22:01:59 2013 +0200

    clock-applet: set sane unit values

 applets/clock/org.mate.panel.applet.clock.gschema.xml.in.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a7bea0677bf2506d74b026ba0a115d3f238949d6
Merge: 77785990 e80641d1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Aug 6 23:43:22 2013 +0200

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit 777859900163aa4569d1257bc8feb5f8197e6ac7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Aug 6 23:43:06 2013 +0200

    Improve GTK3 support

 mate-panel/panel.c | 8 ++++++++
 1 file changed, 8 insertions(+)

commit e80641d14288a07a0cb0fb5fe80e8cd6ecf6bc20
Merge: 8418f3c0 a839cfc9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Aug 2 03:03:39 2013 -0700

    Merge pull request #117 from infirit/master
    
    Replace ghelp: with help: for user-guide

commit a839cfc99cd84369351314b8e98abfb73f209cd9
Author: infirit <infirit@gmail.com>
Date:   Fri Aug 2 11:44:59 2013 +0200

    Correct 2 typo's in panel.c

 mate-panel/panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f90a11f07d3a9bbf447b7fa36731e7b336acb812
Author: infirit <infirit@gmail.com>
Date:   Thu Aug 1 13:11:53 2013 +0200

    Replace ghelp: with help: for user-guide

 help/clock/ar/ar.po       |  8 ++++----
 help/clock/ca/ca.po       |  8 ++++----
 help/clock/cs/cs.po       |  8 ++++----
 help/clock/da/da.po       |  8 ++++----
 help/clock/de/de.po       |  8 ++++----
 help/clock/el/el.po       |  8 ++++----
 help/clock/en_GB/en_GB.po |  8 ++++----
 help/clock/es/es.po       |  8 ++++----
 help/clock/eu/eu.po       |  8 ++++----
 help/clock/fi/fi.po       |  8 ++++----
 help/clock/fr/fr.po       |  8 ++++----
 help/clock/it/it.po       |  8 ++++----
 help/clock/ja/ja.po       |  8 ++++----
 help/clock/ko/ko.po       |  8 ++++----
 help/clock/nl/nl.po       | 14 +++++++-------
 help/clock/oc/oc.po       |  4 ++--
 help/clock/pa/pa.po       |  4 ++--
 help/clock/pt/pt.po       |  8 ++++----
 help/clock/pt_BR/pt_BR.po |  8 ++++----
 help/clock/ru/ru.po       |  4 ++--
 help/clock/sr/sr.po       |  8 ++++----
 help/clock/sv/sv.po       |  8 ++++----
 help/clock/th/th.po       |  8 ++++----
 help/clock/uk/uk.po       |  8 ++++----
 help/clock/zh_CN/zh_CN.po |  8 ++++----
 help/clock/zh_HK/zh_HK.po |  8 ++++----
 help/clock/zh_TW/zh_TW.po |  8 ++++----
 help/fish/ca/ca.po        |  8 ++++----
 help/fish/cs/cs.po        |  8 ++++----
 help/fish/de/de.po        |  8 ++++----
 help/fish/el/el.po        |  8 ++++----
 help/fish/en_GB/en_GB.po  |  8 ++++----
 help/fish/es/es.po        |  8 ++++----
 help/fish/eu/eu.po        |  8 ++++----
 help/fish/fi/fi.po        |  8 ++++----
 help/fish/fr/fr.po        |  8 ++++----
 help/fish/it/it.po        |  8 ++++----
 help/fish/ja/ja.po        |  8 ++++----
 help/fish/ko/ko.po        |  8 ++++----
 help/fish/oc/oc.po        |  4 ++--
 help/fish/ru/ru.po        |  8 ++++----
 help/fish/sv/sv.po        |  8 ++++----
 help/fish/th/th.po        |  8 ++++----
 help/fish/uk/uk.po        |  8 ++++----
 help/fish/zh_CN/zh_CN.po  |  8 ++++----
 mate-panel/panel.c        |  4 ++--
 46 files changed, 177 insertions(+), 177 deletions(-)

commit 8418f3c034cb8998fb066271386a4e89a8c687f9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 17:30:08 2013 +0200

    Add missing include

 mate-panel/libegg/eggsmclient-private.h | 1 +
 1 file changed, 1 insertion(+)

commit c0f23a7a46776f731f695eb89bef3496150c6470
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 17:18:03 2013 +0200

    wncklet: Come back to libwnck

 applets/notification_area/na-tray-child.c |  4 +-
 applets/wncklet/showdesktop.c             | 36 +++++++-------
 applets/wncklet/window-list.c             | 42 +++++++++--------
 applets/wncklet/window-list.h             |  2 +-
 applets/wncklet/window-menu.c             |  8 ++--
 applets/wncklet/wncklet.c                 | 12 ++---
 applets/wncklet/wncklet.h                 |  4 +-
 applets/wncklet/workspace-switcher.c      | 78 +++++++++++++++----------------
 applets/wncklet/workspace-switcher.h      |  2 +-
 9 files changed, 96 insertions(+), 92 deletions(-)

commit e1f3e5a08411bf396291583ede7e4dab0dd7a092
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 17:17:27 2013 +0200

    mate-panel: Include gdkconfig.h only in GTK2

 mate-panel/libegg/eggsmclient-private.h | 2 ++
 1 file changed, 2 insertions(+)

commit 22cbafc06515ef4553fd04487f631ba2db7a1024
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 17:15:50 2013 +0200

    configure: switch to libwnck

 configure.ac | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit 083049ec49dc45a2ffbf75e3b89ab02c09d31393
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 16:37:07 2013 +0200

    Fix libcanberra-gtk API version for GTK3

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 88fbc42c5872c4bca0c3cb71133cda1e66584cee
Merge: 95cd1b57 2ced54ba
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 15:35:47 2013 +0200

    Merge branch 'dev-yelp-tools'

commit 95cd1b57f9cd1e84bca22a0d9ff6046e11344b71
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 15:33:54 2013 +0200

    Use gweather in GTK3

 configure.ac | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit f897ed4e51af4f6e6072632e2218ba88f49d6186
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 14:11:52 2013 +0200

    Add support for libcanberra GTK3 in configure

 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 30e2ebbb240aef037cd0da49db067f9493407d59
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 26 14:01:36 2013 +0200

    Add support for GTK3 in configure

 configure.ac | 39 ++++++++++++++++++++++++++++++---------
 1 file changed, 30 insertions(+), 9 deletions(-)

commit 2ced54ba17c63fda9f5da417f4dd0d5380db8b59
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 12 22:00:50 2013 +0200

    Use yelp-tools instead of mate-doc-utils

 Makefile.am                                           |  7 +------
 applets/clock/clock-utils.c                           |  4 ++--
 applets/fish/fish.c                                   |  4 ++--
 applets/notification_area/main.c                      |  2 +-
 applets/wncklet/wncklet.c                             |  4 ++--
 configure.ac                                          |  4 ++--
 help/clock/C/{mate-applet-clock.xml => index.docbook} |  2 +-
 help/clock/C/legal.xml                                |  2 +-
 help/clock/Makefile.am                                | 14 +++++++++-----
 help/clock/mate-applet-clock.omf.in                   | 11 -----------
 help/fish/C/{mate-applet-fish.xml => index.docbook}   |  2 +-
 help/fish/C/legal.xml                                 |  4 ++--
 help/fish/Makefile.am                                 | 14 +++++++++-----
 help/fish/mate-applet-fish.omf.in                     | 11 -----------
 mate-panel/libpanel-util/panel-show.c                 |  4 ++--
 mate-panel/panel.c                                    |  1 +
 16 files changed, 36 insertions(+), 54 deletions(-)

commit 95aab3454879d73a8ad049c17d566629374b30bc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 12 20:59:54 2013 +0200

    Fix introspection in makefiles

 Makefile.am                      | 2 +-
 libmate-panel-applet/Makefile.am | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 9ea430b502a09bfd91cc894fd6752576a355263a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 12 20:50:09 2013 +0200

    Bump version to 1.6.1

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 227eba6c0e82864c5fab857653cc2af6bbe20251
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Jun 30 22:09:14 2013 +0200

    Fixes for make dist

 Makefile.am                      |  2 --
 applets/clock/Makefile.am        |  5 +++--
 applets/fish/Makefile.am         |  4 ++--
 applets/wncklet/Makefile.am      |  5 +++--
 configure.ac                     |  2 +-
 data/Makefile.am                 | 22 ++++++++++++++++------
 libmate-panel-applet/Makefile.am |  4 ++--
 mate-panel/Makefile.am           |  2 +-
 8 files changed, 28 insertions(+), 18 deletions(-)

commit 7392995dc8ff15c9e91c60009d5f51ee978843d9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Jun 29 16:39:35 2013 +0200

    Fix g_type_init deprecation

 applets/clock/test-system-timezone.c | 2 ++
 1 file changed, 2 insertions(+)

commit a5bac5867a6d00d5f9b9c8e3abeaa1c2667fc246
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Jun 29 16:16:44 2013 +0200

    Fix indentation

 mate-panel/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit bed8e5bb1f9e08ca9e9718ff094dcf7100e7cbd2
Merge: 582e1797 1522a403
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jun 24 02:16:24 2013 -0700

    Merge pull request #113 from fedor-elizarov/patch-1
    
    fix format

commit 1522a403c5917b51e5feb7a098e91fdbc3d7b1e2
Author: Fedor Elizarov <blogdron@gmail.com>
Date:   Tue Jun 11 04:45:52 2013 +0400

    fix format

 mate-panel/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 582e17973df3597a483692cd3df761d9a1a3914c
Merge: 7c3cb0e6 8bad3965
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Jun 2 10:25:14 2013 -0700

    Merge pull request #112 from NiceandGently/master
    
    remove mate-panelrc

commit 8bad39654ebd11f91b0333bd5de3d7b975392ad1
Author: raveit <chat-to-me@raveit.de>
Date:   Sun Jun 2 18:44:46 2013 +0200

    remove mate-panelrc

 mate-panel/Makefile.am  | 3 ---
 mate-panel/mate-panelrc | 4 ----
 2 files changed, 7 deletions(-)

commit 7c3cb0e6c7bd1fcf4711fec0a5a3e59acef1b36c
Author: Scott Balneaves <sbalneav@mate-desktop.org>
Date:   Fri May 31 15:53:21 2013 -0500

    Another fix for #111

 mate-panel/panel-profile.c | 2 ++
 1 file changed, 2 insertions(+)

commit 34559e7488e62036744ac0d4b61d9aef5c6046b4
Author: Scott Balneaves <sbalneav@mate-desktop.org>
Date:   Fri May 31 14:32:10 2013 -0500

    fix for #111

 mate-panel/panel-background.c | 1 +
 1 file changed, 1 insertion(+)

commit d674f6afc07790eb4b99a2206fdf6b6513f2d208
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat May 18 17:40:59 2013 +0200

    libmate-panel-applet: Translate spanish comment

 libmate-panel-applet/mate-panel-applet.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

commit a5d68a6579c56d5fd09f2087d31a84dd438ccc67
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat May 18 00:49:28 2013 +0200

    Remove old mateconf script

 mate-panel/Makefile.am       |  14 +-
 mate-panel/mate-panel-add.in | 326 -------------------------------------------
 2 files changed, 2 insertions(+), 338 deletions(-)

commit e24ec19b6b316e42a73ac92db8982e550c6917f8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri May 3 21:04:09 2013 +0200

    Save panel coordinates also if panel is expanded
    
    This will save panel position if the user disable expand
    Closes #32 (https://github.com/mate-desktop/mate-panel/issues/32)

 mate-panel/panel-profile.c | 50 ++++++++++++++++++++++------------------------
 1 file changed, 24 insertions(+), 26 deletions(-)

commit 77059fb092a44f1a9c8c5c5e888899028458ff10
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu May 2 17:25:48 2013 +0200

    Allow to set panel orientation only for expanded panels
    
    Also fix initial position of non-expanded panels

 mate-panel/panel-properties-dialog.c | 27 ++++++++++++++++++++++-----
 mate-panel/panel-toplevel.c          |  2 +-
 2 files changed, 23 insertions(+), 6 deletions(-)

commit ab44cdabc2a7f273eb1bb4098c2cd62980db63f9
Merge: 11077832 b8735eec
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Apr 27 04:36:04 2013 -0700

    Merge pull request #98 from micolous/master
    
    Fix for issue #73: when the difference between timezones in the clock applet is less than 1 hour, an offset is not shown

commit 110778320f3ff9b03af538bc4cb3c3bca6f5f699
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Apr 21 01:34:09 2013 +0200

    Add manpages for all binaries
    Closes #99 (https://github.com/mate-desktop/mate-panel/issues/99)

 man/Makefile.am               |  5 ++++-
 man/mate-desktop-item-edit.1  | 19 +++++++++++++++++++
 man/mate-panel-test-applets.1 | 18 ++++++++++++++++++
 man/mate-panel.1              |  4 ++--
 4 files changed, 43 insertions(+), 3 deletions(-)

commit 76761001bf64a4283abb90eb9d1fd6c50b1efead
Merge: f4a927c2 bc06c2f7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Apr 10 07:45:12 2013 -0700

    Merge pull request #96 from muesli4/master
    
    [Bugfix] wrap-workspaces option in workspace-switcher now persistent over sessions

commit bc06c2f782116e70b9e342de422273b618217748
Author: muesli4 <muesli4@gmail.com>
Date:   Wed Apr 10 15:56:17 2013 +0200

    Removed unused variable.

 applets/wncklet/workspace-switcher.c | 1 -
 1 file changed, 1 deletion(-)

commit 9201a7cebc456d2e3ce98bd478f75d0c2b223d70
Merge: ec3bedb2 f4a927c2
Author: muesli4 <muesli4@gmail.com>
Date:   Wed Apr 10 15:49:44 2013 +0200

    Merge remote-tracking branch 'upstream/master'

commit ec3bedb24f64944c0874dec793ba1ea9cb1b777b
Author: muesli4 <muesli4@gmail.com>
Date:   Wed Apr 10 15:42:57 2013 +0200

    Modified the function workspace_switcher_applet_fill, which now correctly loads the wrap-workspaces GSchema entry.

 applets/wncklet/workspace-switcher.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f4a927c268231fdd6b5a333d0c547b46a11af858
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Apr 8 16:07:33 2013 +0200

    clock: Allow users to set custom format in dconf-editor

 applets/clock/clock.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 9d78b6e1d2cd8cd437c1694da6e6642c99cc498a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Apr 8 16:02:53 2013 +0200

    Fix panels issue when user has two separate X screens
    Closes https://github.com/mate-desktop/mate-panel/issues/87
    Closes https://github.com/mate-desktop/mate-panel/issues/89

 mate-panel/panel-layout.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit ec9a50e1473288030dd807769e29caa7192ebd23
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Apr 7 11:52:02 2013 +0200

    Fix MateConf convert file

 data/mate-panel.convert | 2 --
 1 file changed, 2 deletions(-)

commit 17565e25ca40411560a7db398cca1b3e37968a2d
Merge: e1606750 558868a8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Apr 4 01:14:49 2013 -0700

    Merge pull request #90 from cygwinports/master
    
    Build fixes for 1.6

commit 558868a8bf1a552a8af3951471d6ba3a78059e14
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Thu Apr 4 02:57:21 2013 -0500

    Fix vpath build of GIR

 libmate-panel-applet/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fa2f36dbee544d831fcbdedd7730479b673dd7c8
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Thu Apr 4 02:56:44 2013 -0500

    Fix gtk-doc build

 doc/reference/mate-panel-applet/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e1606750e30b8e479899ec6e287091fab78a4451
Merge: 2ad6b131 d82caeef
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Apr 3 15:06:48 2013 -0700

    Merge pull request #86 from muesli4/master
    
    Minor bugfix for the workspace switcher applet

commit d82caeefd7c34bdca153c56730d4087deb554b30
Author: muesli4 <muesli4@gmail.com>
Date:   Wed Apr 3 18:59:23 2013 +0200

    Fixed a bug when the toggle button belonging to wrap_workspaces is not toggled even though the value is TRUE on preferences dialog creation.

 applets/wncklet/workspace-switcher.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 2ad6b13122802f9408ebac6680adfc26450fa203
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 31 23:36:11 2013 +0200

    Bump version to 1.6.0

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f23d7777482f09b88a3b30e996e35d38d6afcbf8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 31 23:35:16 2013 +0200

    Sync translations with transifex

 po/ky.po    | 785 ++++++++++++++++++++++++++++++------------------------------
 po/zh_TW.po |  66 ++---
 2 files changed, 426 insertions(+), 425 deletions(-)

commit 2f782514dd7d9a20627515b80a1df009c41ccd9d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 31 23:26:41 2013 +0200

    Add empty ChangeLog to allow build from git

 ChangeLog | 2 ++
 1 file changed, 2 insertions(+)

commit 04750873e3ea65f09f7315aa8c6c0ee0088ecc1b
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Mar 24 16:33:14 2013 -0400

    "Removed ChangeLog"

 ChangeLog | 2086 -------------------------------------------------------------
 1 file changed, 2086 deletions(-)

commit b8830c65c0c2560f3fc482d0db36f3450ac8b814
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 17 14:51:24 2013 +0100

    Bump version to 1.5.6

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b77026425cf6ed67b949a9565830a50bbaccc4df
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 17 14:49:58 2013 +0100

    Sync translations with transifex

 po/LINGUAS        |    1 +
 po/af.po          | 3338 ++++++++++-----------
 po/am.po          | 4934 +++++++++++++++----------------
 po/ar.po          | 3338 ++++++++++-----------
 po/as.po          | 4321 ++++++++++++---------------
 po/ast.po         | 3370 ++++++++++-----------
 po/az.po          | 4876 +++++++++++++++----------------
 po/be.po          | 4447 ++++++++++++----------------
 po/bg.po          | 3625 ++++++++++-------------
 po/bn.po          | 3759 +++++++++++-------------
 po/bn_IN.po       | 3576 ++++++++++-------------
 po/br.po          | 3462 +++++++++++-----------
 po/bs.po          | 4900 +++++++++++++++----------------
 po/ca.po          | 3338 ++++++++++-----------
 po/ca@valencia.po | 8415 +++++++++++------------------------------------------
 po/crh.po         | 3886 +++++++++++--------------
 po/cs.po          | 3333 ++++++++++-----------
 po/cy.po          | 5679 +++++++++++++++---------------------
 po/da.po          | 5629 ++++++++++-------------------------
 po/de.po          | 3679 ++++++++++-------------
 po/dz.po          | 4151 +++++++++++++-------------
 po/el.po          | 3843 ++++++++++--------------
 po/en_AU.po       | 2832 ++++++++++++++++++
 po/en_CA.po       | 4351 ++++++++++++++-------------
 po/en_GB.po       | 4067 ++++++++++----------------
 po/eo.po          | 3338 ++++++++++-----------
 po/es.po          | 3340 ++++++++++-----------
 po/et.po          | 3342 ++++++++++-----------
 po/eu.po          | 3338 ++++++++++-----------
 po/fa.po          | 4770 ++++++++++++------------------
 po/fi.po          | 4350 +++++++++++----------------
 po/fr.po          | 3337 ++++++++++-----------
 po/fur.po         | 4460 +++++++++++++---------------
 po/fy.po          | 3352 ++++++++++-----------
 po/ga.po          | 3781 +++++++++++-------------
 po/gl.po          | 3668 ++++++++++-------------
 po/gu.po          | 3611 ++++++++++-------------
 po/ha.po          | 4563 ++++++++++++-----------------
 po/he.po          | 3338 ++++++++++-----------
 po/hi.po          | 4037 ++++++++++++-------------
 po/hr.po          | 4248 ++++++++++++---------------
 po/hu.po          | 3623 ++++++++++-------------
 po/hy.po          | 3772 +++++++++++-------------
 po/id.po          | 3623 ++++++++++-------------
 po/ig.po          | 4514 ++++++++++++----------------
 po/is.po          | 4340 ++++++++++++---------------
 po/it.po          | 3644 ++++++++++-------------
 po/ja.po          | 3669 ++++++++++-------------
 po/ka.po          | 4269 ++++++++++++---------------
 po/kk.po          | 3126 ++++++++++----------
 po/kn.po          | 3770 +++++++++++-------------
 po/ko.po          | 3536 ++++++++++------------
 po/ku.po          | 4861 +++++++++++++++----------------
 po/ky.po          | 4659 +++++++++++++++--------------
 po/li.po          | 5931 +++++++++++++++----------------------
 po/lt.po          | 3845 +++++++++++-------------
 po/lv.po          | 4018 +++++++++++--------------
 po/mai.po         | 4043 ++++++++++++-------------
 po/mg.po          | 4449 +++++++++++-----------------
 po/mk.po          | 4221 ++++++++++++---------------
 po/ml.po          | 3701 +++++++++++------------
 po/mn.po          | 4811 +++++++++++++++---------------
 po/mr.po          | 3529 ++++++++++------------
 po/ms.po          | 4359 +++++++++++----------------
 po/nb.po          | 3660 ++++++++++-------------
 po/nds.po         | 3592 +++++++++++------------
 po/ne.po          | 4197 +++++++++++++-------------
 po/nl.po          | 3338 ++++++++++-----------
 po/nn.po          | 4174 +++++++++++---------------
 po/nso.po         | 5176 ++++++++++++++++----------------
 po/oc.po          | 4196 ++++++++++++--------------
 po/or.po          | 4030 ++++++++++++-------------
 po/pa.po          | 3681 ++++++++++-------------
 po/pl.po          | 3338 ++++++++++-----------
 po/ps.po          | 4399 +++++++++++++---------------
 po/pt.po          | 4698 ++++++++++--------------------
 po/pt_BR.po       | 3342 ++++++++++-----------
 po/ro.po          | 3875 +++++++++++-------------
 po/ru.po          | 3338 ++++++++++-----------
 po/si.po          | 3968 +++++++++++++------------
 po/sk.po          | 4126 +++++++++++---------------
 po/sl.po          | 3339 ++++++++++-----------
 po/sq.po          | 4217 ++++++++++++---------------
 po/sr.po          | 4459 ++++++++++------------------
 po/sr@latin.po    | 4459 ++++++++++------------------
 po/sv.po          | 3265 ++++++++++-----------
 po/ta.po          | 3906 ++++++++++---------------
 po/te.po          | 3589 ++++++++++-------------
 po/th.po          | 4594 ++++++++++-------------------
 po/tr.po          | 3341 ++++++++++-----------
 po/ug.po          | 3715 ++++++++++-------------
 po/uk.po          | 3338 ++++++++++-----------
 po/uz.po          | 4125 +++++++++++++-------------
 po/vi.po          | 3619 +++++++++++------------
 po/wa.po          | 5572 +++++++++++++++--------------------
 po/xh.po          | 4409 ++++++++++++++--------------
 po/yo.po          | 4515 ++++++++++++----------------
 po/zh_CN.po       | 3646 ++++++++++-------------
 po/zh_HK.po       | 3746 ++++++++++--------------
 po/zh_TW.po       | 3811 ++++++++++--------------
 po/zu.po          | 5072 ++++++++++++++++----------------
 101 files changed, 177821 insertions(+), 226380 deletions(-)

commit 8d93e333789bca9b3ba7ee3159b9bc02481df847
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 17 11:36:47 2013 +0100

    Add transifex configuration file

 .tx/config | 7 +++++++
 1 file changed, 7 insertions(+)

commit 3c17e43f431ddeec0f2f2d1575cad08599dc8fcf
Merge: 2d747c61 ade734bd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 17 03:35:02 2013 -0700

    Merge pull request #81 from NiceandGently/master
    
    add transparency background function for workspace-switcher

commit 2d747c61c29cc1ed480cbe958010e629abc00d73
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 3 13:16:10 2013 +0100

    Fix dconf minimum versions

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ade734bde5aaf05d5ffefa8eb100de4b93e371d6
Author: raveit <chat-to-me@raveit.de>
Date:   Sun Mar 3 10:33:37 2013 +0100

    add transparency background function for workspace-switcher

 applets/wncklet/workspace-switcher.c | 35 ++++++++++++++++++++++++++---------
 1 file changed, 26 insertions(+), 9 deletions(-)

commit b10ccd46e6d2d70f7639ec076c1f746803cd2e55
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Feb 10 23:06:46 2013 +0100

    Make GSettings schemas translatable

 applets/clock/Makefile.am                          |  3 +
 .../org.mate.panel.applet.clock.gschema.xml.in     | 88 ----------------------
 .../org.mate.panel.applet.clock.gschema.xml.in.in  | 88 ++++++++++++++++++++++
 applets/fish/Makefile.am                           |  3 +
 .../fish/org.mate.panel.applet.fish.gschema.xml.in | 34 ---------
 .../org.mate.panel.applet.fish.gschema.xml.in.in   | 34 +++++++++
 applets/wncklet/Makefile.am                        |  3 +
 ...rg.mate.panel.applet.window-list.gschema.xml.in | 24 ------
 ...mate.panel.applet.window-list.gschema.xml.in.in | 24 ++++++
 ....panel.applet.workspace-switcher.gschema.xml.in | 24 ------
 ...nel.applet.workspace-switcher.gschema.xml.in.in | 24 ++++++
 data/Makefile.am                                   |  3 +
 ...ema.xml.in => org.mate.panel.gschema.xml.in.in} |  2 +-
 ....in => org.mate.panel.object.gschema.xml.in.in} |  2 +-
 ...n => org.mate.panel.toplevel.gschema.xml.in.in} |  2 +-
 15 files changed, 185 insertions(+), 173 deletions(-)

commit 352b1136eabf1e1a7752264a7690ac355e39756d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Feb 10 23:06:28 2013 +0100

    Update POTFILES.in

 po/POTFILES.in | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

commit f595538db940b6cee91e87f75ee4a87fa2fb1174
Author: Moritz Bruder <muesli4@gmail.com>
Date:   Sun Feb 10 01:06:58 2013 +0100

    Added a wrap around option for workspace switcher
    
     Includes:
     - a toggle button in the preferences (wrap_workspaces_toggle), a gboolean keeping track (wrap_workspaces)
     - another entry in the schema (gsettings)
     - and some minor code changes (which only affect the code when scrolling while on the last or first index)

 ....panel.applet.workspace-switcher.gschema.xml.in |  5 ++
 applets/wncklet/workspace-switcher.c               | 59 +++++++++++++++++++++-
 applets/wncklet/workspace-switcher.ui              | 15 ++++++
 3 files changed, 78 insertions(+), 1 deletion(-)

commit f159031648e2a917e785bf63c0e0480d50210282
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Feb 8 09:38:25 2013 +0100

    Bump version to 1.5.5

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f1adfaaaedd3b4ae48e06b6fc129f7df6c453c5d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Feb 7 22:42:43 2013 +0100

    Fix dependencies versions in configure

 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 9ba2a75711863da2653d4bd4137d8b4a18371765
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Feb 7 22:41:54 2013 +0100

    wncklet: Set orientation in window list
    Closes https://github.com/mate-desktop/mate-panel/issues/58

 applets/wncklet/window-list.c | 3 +++
 1 file changed, 3 insertions(+)

commit c7b5e4978cb0b8f59e9666e97ba4b4e2d0c500a0
Merge: 569411e7 5b6d9a32
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 5 14:13:20 2013 -0800

    Merge pull request #72 from MDykstra/master
    
    AC_CONFIG_HEADERS to please automake 1.13

commit 569411e76331fd13c8ed82031d4bebd6a6850134
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 5 22:44:11 2013 +0100

    Fix indentation

 mate-panel/libpanel-util/panel-launch.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit a16e8e6bd5e1066f939db5b31fdf2a9f16e76352
Merge: 63af85af 2905402c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Feb 5 13:41:00 2013 -0800

    Merge pull request #74 from NiceandGently/master
    
    fix start applications via pkexec through both the menu launcher and ALT+F2

commit 2905402c0b856eaf86e497c41bbe0d630647c6f6
Author: raveit <chat-to-me@raveit.de>
Date:   Tue Feb 5 10:54:42 2013 +0100

    Avoid-double-forking-when-launching-apps-it-breaks

 mate-panel/libpanel-util/panel-launch.c | 40 ++++++++++++++++++++++++++-------
 mate-panel/panel-run-dialog.c           | 18 +++++++++++++--
 2 files changed, 48 insertions(+), 10 deletions(-)

commit b8735eeca6e6801e5d776754332a6426871f69b2
Author: Michael Farrell <micolous+gh@gmail.com>
Date:   Sat Feb 2 11:59:14 2013 +1100

    Update applets/clock/clock-location-tile.c
    
    Fix for issue #73.  Instead of checking for the minutes and hours not equalling zero, check only the minutes aren't 0.

 applets/clock/clock-location-tile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5b6d9a323b1d528ae58fa169918df9df98eeec50
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Thu Jan 31 01:19:04 2013 +0100

    AC_CONFIG_HEADERS to please automake 1.13

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 63af85af7ae234463478fa512939dec1a49f8b98
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Jan 20 15:31:12 2013 -0500

    Preparing for 1.5.4 release.

 ChangeLog    | 743 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac |   2 +-
 2 files changed, 744 insertions(+), 1 deletion(-)

commit c4e3fd2b67eaf5c76833579424be32bf7ab625fc
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Jan 20 19:31:18 2013 +0100

    clock: Fix mateweather units

 applets/clock/clock.c | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

commit a650d5e14b2311bfb813ea34a793bc0eddd73ab4
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Jan 19 19:35:52 2013 +0100

    wncklet: Fix window-list grouping preference
    See https://github.com/mate-desktop/mate-panel/issues/70

 applets/wncklet/window-list.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 46a1fac8c934688032024188b0d58ace98668361
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jan 4 12:04:14 2013 +0100

    Add mateconf-gsettings-data-convert file
    Patch by Yaakov Selkowitz <yselkowitz@users.sourceforge.net>

 data/Makefile.am        |  5 +++++
 data/mate-panel.convert | 15 +++++++++++++++
 2 files changed, 20 insertions(+)

commit ccb01dcefdbe73d0950052ca0592f22b404dc97e
Merge: 49678c6e f0aeb0b9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 20 12:30:05 2012 -0800

    Merge pull request #66 from ketheriel/master
    
    Fix null pointer in function

commit f0aeb0b9d42789747546fc9350ea2d0c8c78f568
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Thu Dec 20 18:23:35 2012 +0000

    Fix missing NULL pointer

 applets/wncklet/window-list.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 49678c6e1d301405d43e77554d9a06ac14717f8a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Dec 19 23:47:24 2012 +0100

    Bump version to 1.5.3

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0cb02b751bc95014936837441006bbc098d3730c
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Dec 18 12:44:02 2012 +0100

    Fix crash on deleting panels
    https://github.com/mate-desktop/mate-panel/issues/65

 mate-panel/panel-profile.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit c2ec565b1f6dd95520537482d3d0fd1a4b0e5323
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Dec 13 14:39:55 2012 +0100

    mate-panel: Add a missing g_free

 mate-panel/applet.c | 1 +
 1 file changed, 1 insertion(+)

commit 6c54e8633ccb398d669c20f988dbfc40af4819c1
Merge: 5237036d 0ed6744f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Dec 11 13:20:10 2012 -0800

    Merge pull request #63 from cardpuncher/patch-3
    
    Fix the website URL

commit 0ed6744f217864f0a8201c7ca5d7ecd197e089b6
Author: cardpuncher <mauron@vmail.me>
Date:   Tue Dec 11 22:11:33 2012 +0100

    Fix the website URL

 applets/fish/fish.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5237036d40a1ad3d0236711502a7d4a18f58355e
Merge: 6df88f10 08f5ba58
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Nov 23 03:08:02 2012 -0800

    Merge pull request #56 from bhull2010/master
    
    Fix for displaying the Network icon in the places menu

commit 08f5ba581298fa38d633cdd8b260dd5ef5840fcc
Author: Brent Hull <bhull2010@live.com>
Date:   Thu Nov 22 21:46:13 2012 -0500

    Fix network places menu item filename

 mate-panel/panel-menu-items.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6df88f1083d89a62b389d2dbb2f95d2e54f019d6
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Sun Nov 18 20:42:35 2012 -0500

    fixed incorrect fsf addresses.

 applets/clock/calendar-window.c                                       | 4 ++--
 applets/clock/calendar-window.h                                       | 4 ++--
 applets/clock/clock-sunpos.c                                          | 4 ++--
 applets/clock/clock-utils.c                                           | 4 ++--
 applets/clock/clock-utils.h                                           | 4 ++--
 applets/clock/clock.c                                                 | 4 ++--
 applets/clock/clock.h                                                 | 4 ++--
 applets/clock/set-timezone.c                                          | 2 +-
 applets/clock/set-timezone.h                                          | 2 +-
 applets/clock/system-timezone.c                                       | 2 +-
 applets/clock/system-timezone.h                                       | 2 +-
 applets/clock/test-system-timezone.c                                  | 2 +-
 applets/fish/fish.c                                                   | 4 ++--
 applets/notification_area/fixedtip.c                                  | 4 ++--
 applets/notification_area/fixedtip.h                                  | 4 ++--
 applets/notification_area/main.c                                      | 4 ++--
 applets/notification_area/na-tray-child.c                             | 4 ++--
 applets/notification_area/na-tray-child.h                             | 4 ++--
 applets/notification_area/na-tray-manager.c                           | 4 ++--
 applets/notification_area/na-tray-manager.h                           | 4 ++--
 applets/notification_area/na-tray.c                                   | 4 ++--
 applets/notification_area/na-tray.h                                   | 4 ++--
 applets/notification_area/testtray.c                                  | 4 ++--
 applets/wncklet/showdesktop.c                                         | 4 ++--
 applets/wncklet/showdesktop.h                                         | 4 ++--
 applets/wncklet/window-menu.c                                         | 4 ++--
 applets/wncklet/window-menu.h                                         | 4 ++--
 applets/wncklet/wncklet.c                                             | 4 ++--
 applets/wncklet/wncklet.h                                             | 4 ++--
 libmate-panel-applet/mate-panel-applet-factory.c                      | 4 ++--
 libmate-panel-applet/mate-panel-applet-factory.h                      | 4 ++--
 libmate-panel-applet/mate-panel-applet-gsettings.c                    | 4 ++--
 libmate-panel-applet/mate-panel-applet-gsettings.h                    | 4 ++--
 libmate-panel-applet/mate-panel-applet.c                              | 4 ++--
 libmate-panel-applet/mate-panel-applet.h                              | 4 ++--
 mate-panel/libegg/eggdesktopfile.c                                    | 4 ++--
 mate-panel/libegg/eggdesktopfile.h                                    | 4 ++--
 mate-panel/libegg/eggsmclient-private.h                               | 4 ++--
 mate-panel/libegg/eggsmclient-xsmp.c                                  | 4 ++--
 mate-panel/libegg/eggsmclient.c                                       | 4 ++--
 mate-panel/libegg/eggsmclient.h                                       | 4 ++--
 mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c | 4 ++--
 mate-panel/libmate-panel-applet-private/mate-panel-applet-container.h | 4 ++--
 .../libmate-panel-applet-private/mate-panel-applet-frame-dbus.c       | 4 ++--
 .../libmate-panel-applet-private/mate-panel-applet-frame-dbus.h       | 4 ++--
 .../libmate-panel-applet-private/mate-panel-applets-manager-dbus.c    | 4 ++--
 .../libmate-panel-applet-private/mate-panel-applets-manager-dbus.h    | 4 ++--
 mate-panel/libpanel-util/panel-cleanup.c                              | 4 ++--
 mate-panel/libpanel-util/panel-cleanup.h                              | 4 ++--
 mate-panel/libpanel-util/panel-dbus-service.c                         | 4 ++--
 mate-panel/libpanel-util/panel-dbus-service.h                         | 4 ++--
 mate-panel/libpanel-util/panel-dconf.c                                | 4 ++--
 mate-panel/libpanel-util/panel-dconf.h                                | 4 ++--
 mate-panel/libpanel-util/panel-error.c                                | 4 ++--
 mate-panel/libpanel-util/panel-error.h                                | 4 ++--
 mate-panel/libpanel-util/panel-glib.c                                 | 4 ++--
 mate-panel/libpanel-util/panel-glib.h                                 | 4 ++--
 mate-panel/libpanel-util/panel-gtk.c                                  | 4 ++--
 mate-panel/libpanel-util/panel-gtk.h                                  | 4 ++--
 mate-panel/libpanel-util/panel-icon-chooser.c                         | 4 ++--
 mate-panel/libpanel-util/panel-icon-chooser.h                         | 4 ++--
 mate-panel/libpanel-util/panel-keyfile.c                              | 4 ++--
 mate-panel/libpanel-util/panel-keyfile.h                              | 4 ++--
 mate-panel/libpanel-util/panel-launch.c                               | 4 ++--
 mate-panel/libpanel-util/panel-launch.h                               | 4 ++--
 mate-panel/libpanel-util/panel-list.c                                 | 4 ++--
 mate-panel/libpanel-util/panel-list.h                                 | 4 ++--
 mate-panel/libpanel-util/panel-session-manager.c                      | 4 ++--
 mate-panel/libpanel-util/panel-session-manager.h                      | 4 ++--
 mate-panel/libpanel-util/panel-show.c                                 | 4 ++--
 mate-panel/libpanel-util/panel-show.h                                 | 4 ++--
 mate-panel/libpanel-util/panel-xdg.c                                  | 4 ++--
 mate-panel/libpanel-util/panel-xdg.h                                  | 4 ++--
 mate-panel/mate-panel-applet-frame.c                                  | 4 ++--
 mate-panel/mate-panel-applet-info.c                                   | 4 ++--
 mate-panel/mate-panel-applets-manager.c                               | 4 ++--
 mate-panel/mate-panel-applets-manager.h                               | 4 ++--
 mate-panel/menu.c                                                     | 4 ++--
 mate-panel/menu.h                                                     | 4 ++--
 mate-panel/panel-a11y.c                                               | 2 +-
 mate-panel/panel-a11y.h                                               | 2 +-
 mate-panel/panel-action-button.c                                      | 4 ++--
 mate-panel/panel-action-button.h                                      | 4 ++--
 mate-panel/panel-action-protocol.c                                    | 4 ++--
 mate-panel/panel-action-protocol.h                                    | 4 ++--
 mate-panel/panel-addto.c                                              | 4 ++--
 mate-panel/panel-addto.h                                              | 4 ++--
 mate-panel/panel-background-monitor.c                                 | 4 ++--
 mate-panel/panel-background-monitor.h                                 | 4 ++--
 mate-panel/panel-background.c                                         | 4 ++--
 mate-panel/panel-background.h                                         | 4 ++--
 mate-panel/panel-bindings.c                                           | 4 ++--
 mate-panel/panel-bindings.h                                           | 4 ++--
 mate-panel/panel-config-global.c                                      | 4 ++--
 mate-panel/panel-config-global.h                                      | 4 ++--
 mate-panel/panel-context-menu.c                                       | 4 ++--
 mate-panel/panel-context-menu.h                                       | 4 ++--
 mate-panel/panel-ditem-editor.c                                       | 4 ++--
 mate-panel/panel-ditem-editor.h                                       | 4 ++--
 mate-panel/panel-enums-gsettings.h                                    | 4 ++--
 mate-panel/panel-enums.h                                              | 4 ++--
 mate-panel/panel-force-quit.c                                         | 4 ++--
 mate-panel/panel-force-quit.h                                         | 4 ++--
 mate-panel/panel-frame.c                                              | 4 ++--
 mate-panel/panel-frame.h                                              | 4 ++--
 mate-panel/panel-globals.h                                            | 4 ++--
 mate-panel/panel-gsettings.c                                          | 4 ++--
 mate-panel/panel-gsettings.h                                          | 4 ++--
 mate-panel/panel-layout.c                                             | 4 ++--
 mate-panel/panel-layout.h                                             | 4 ++--
 mate-panel/panel-lockdown.c                                           | 4 ++--
 mate-panel/panel-lockdown.h                                           | 4 ++--
 mate-panel/panel-menu-bar.c                                           | 4 ++--
 mate-panel/panel-menu-bar.h                                           | 4 ++--
 mate-panel/panel-menu-button.c                                        | 4 ++--
 mate-panel/panel-menu-button.h                                        | 4 ++--
 mate-panel/panel-menu-items.c                                         | 4 ++--
 mate-panel/panel-menu-items.h                                         | 4 ++--
 mate-panel/panel-modules.c                                            | 4 ++--
 mate-panel/panel-modules.h                                            | 4 ++--
 mate-panel/panel-multiscreen.c                                        | 2 +-
 mate-panel/panel-multiscreen.h                                        | 2 +-
 mate-panel/panel-profile.c                                            | 4 ++--
 mate-panel/panel-profile.h                                            | 4 ++--
 mate-panel/panel-properties-dialog.c                                  | 4 ++--
 mate-panel/panel-properties-dialog.h                                  | 4 ++--
 mate-panel/panel-recent.c                                             | 4 ++--
 mate-panel/panel-recent.h                                             | 4 ++--
 mate-panel/panel-reset.c                                              | 4 ++--
 mate-panel/panel-reset.h                                              | 4 ++--
 mate-panel/panel-run-dialog.c                                         | 4 ++--
 mate-panel/panel-run-dialog.h                                         | 4 ++--
 mate-panel/panel-separator.c                                          | 4 ++--
 mate-panel/panel-separator.h                                          | 4 ++--
 mate-panel/panel-session.c                                            | 4 ++--
 mate-panel/panel-session.h                                            | 4 ++--
 mate-panel/panel-shell.c                                              | 4 ++--
 mate-panel/panel-shell.h                                              | 4 ++--
 mate-panel/panel-stock-icons.c                                        | 4 ++--
 mate-panel/panel-stock-icons.h                                        | 4 ++--
 mate-panel/panel-struts.c                                             | 4 ++--
 mate-panel/panel-struts.h                                             | 4 ++--
 mate-panel/panel-toplevel.c                                           | 4 ++--
 mate-panel/panel-toplevel.h                                           | 4 ++--
 mate-panel/panel-xutils.c                                             | 4 ++--
 mate-panel/panel-xutils.h                                             | 4 ++--
 146 files changed, 283 insertions(+), 283 deletions(-)

commit 24ac184b8026e9628f8589938399c703101b6276
Merge: cc961506 b94aaf81
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Nov 12 07:03:23 2012 -0800

    Merge pull request #52 from sbalneav/master
    
    Updates to mate-panel

commit b94aaf81d04f87cfcfde76b68876fbc0d27a8deb
Author: Scott Balneaves <sbalneav@alburg.net>
Date:   Mon Nov 12 08:54:33 2012 -0600

    Code audit: fix compile warnings, uninitialized pointer problems

 applets/wncklet/window-list.c           |  3 ++-
 mate-panel/libpanel-util/panel-launch.c | 17 +++++++++------
 mate-panel/libpanel-util/panel-show.c   |  4 ++--
 mate-panel/panel-layout.c               |  2 +-
 mate-panel/panel-profile.c              | 38 ++++++++++++++++++---------------
 mate-panel/panel-profile.h              |  2 +-
 mate-panel/panel-reset.c                |  3 ++-
 mate-panel/panel-toplevel.c             |  2 ++
 mate-panel/panel-util.c                 |  2 +-
 9 files changed, 42 insertions(+), 31 deletions(-)

commit cc9615065c128be5924a12df50abfda0c6b74a3a
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Oct 21 18:25:14 2012 +0200

    add MATE developers in panel about window

 mate-panel/panel-context-menu.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 917457d02dd5288d42b9f0f7b735eb0ac5eb9405
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 19 14:43:30 2012 +0200

    bump minimum glib version to 2.26
    g_settings_new_with_path is since that version

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e73116a9ea9bafa856a38601cfe90a1bf12e3628
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 19 14:31:30 2012 +0200

    fix load background type at panel start
    close https://github.com/mate-desktop/mate-panel/issues/49

 mate-panel/panel-profile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2c90f2b9d59544411a1f95f5f623ea6e75184c57
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Thu Oct 18 16:26:47 2012 +0100

    remove MATE from Categories in .desktop file

 mate-panel/mate-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6c0aab96aa634383b3e01ce94304194b8a05cfd3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 16 23:53:34 2012 +0200

    bump version to 1.5.2

 NEWS         | 3 +++
 configure.ac | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit b6c3c38db9d4c0abb201f2f8a109c69b575db6e9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 16 23:53:09 2012 +0200

    add --run-dialog option to open run dialog

 mate-panel/main.c             | 19 +++++++++++++++++++
 mate-panel/panel-profile.c    |  8 +++++++-
 mate-panel/panel-profile.h    |  1 +
 mate-panel/panel-run-dialog.c | 10 ++++++++++
 mate-panel/panel-run-dialog.h |  2 ++
 5 files changed, 39 insertions(+), 1 deletion(-)

commit 2b3a21fb01f6a198642218c744541814f5a7152b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sat Oct 13 09:46:13 2012 +0200

    fix build with dconf >= 0.13

 mate-panel/libpanel-util/panel-dconf.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 9a359133358ae402c98a7c90ac5b8de1f5706b02
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 18:16:51 2012 +0200

    bump version in configure.ac

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3aa881b8b74b72fd2840fc641a51801b390b044e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:56:34 2012 +0200

    fix dconf requirements

 configure.ac           | 3 +++
 mate-panel/Makefile.am | 6 +++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 8230a10b97810451abe1b3283f5adf627f33a8b1
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:56:17 2012 +0200

    fix mate-panel-applet-gsettings.c

 libmate-panel-applet/mate-panel-applet-gsettings.c | 24 +++++++++-------------
 1 file changed, 10 insertions(+), 14 deletions(-)

commit c049c82bbdda4c016f5ee28bce86918b60315dd2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Oct 12 17:55:09 2012 +0200

    fix 64bit-portability-issue

 applets/wncklet/window-list.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2f38f0be5c92d7239ccc5f1690174a6440c4dca5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 17:57:18 2012 +0200

    fix some warnings

 mate-panel/panel-profile.c      | 2 +-
 mate-panel/panel-test-applets.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 0ffeaf53e92e366947ebb5424a5b15c1a8f39a5f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 17:56:57 2012 +0200

    fix dconf requirements

 configure.ac                         | 13 +++++++------
 mate-panel/libpanel-util/Makefile.am |  1 +
 2 files changed, 8 insertions(+), 6 deletions(-)

commit 718cd95fd268e87370aa4a4d8953dfe7d6291a94
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 12:59:50 2012 +0200

    add info for default panel layout

 NEWS | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit ff3c509ce0be53367ebd9dc6e047a1b5f6ed1d7e
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:08:57 2012 +0200

    add wncklet schemas

 ...rg.mate.panel.applet.window-list.gschema.xml.in | 24 ++++++++++++++++++++++
 ....panel.applet.workspace-switcher.gschema.xml.in | 19 +++++++++++++++++
 2 files changed, 43 insertions(+)

commit b9c880c58aba32356ee1a4f1e5f45defd5dfb895
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:08:04 2012 +0200

    update notification_area

 Makefile.am                                   |   5 +-
 NEWS                                          |   7 +-
 applets/notification_area/Makefile.am         |   2 +-
 applets/notification_area/main.c              |   1 -
 applets/notification_area/na-tray.c           |   1 -
 applets/wncklet/Makefile.am                   |  29 ++--
 applets/wncklet/window-list.c                 | 194 ++++++--------------------
 applets/wncklet/window-list.schemas.in        |  77 ----------
 applets/wncklet/workspace-switcher.c          | 160 +++++++--------------
 applets/wncklet/workspace-switcher.schemas.in |  52 -------
 configure.ac                                  | 120 +++-------------
 po/POTFILES.in                                |   4 -
 12 files changed, 124 insertions(+), 528 deletions(-)

commit 7a578190a730ddef00cfe770aa67608eb07213b5
Merge: 665d1cb1 18e3ea91
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:05:38 2012 +0200

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit 665d1cb131007c871431f1f8531dc13bb0d06a82
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:05:23 2012 +0200

    migrate fish applet to gsettings

 applets/fish/Makefile.am                           |  29 +-
 applets/fish/fish.c                                | 349 +++++++--------------
 applets/fish/fish.schemas.in                       |  91 ------
 .../fish/org.mate.panel.applet.fish.gschema.xml.in |  34 ++
 4 files changed, 159 insertions(+), 344 deletions(-)

commit cf41dc3d28c3daa30f04962718b468cf46830828
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:04:50 2012 +0200

    migrate clock applet to gsettings
    remove evolution code

 applets/clock/Makefile.am                          |   39 +-
 applets/clock/calendar-client.c                    | 2171 --------------------
 applets/clock/calendar-client.h                    |  153 --
 applets/clock/calendar-debug.h                     |   56 -
 applets/clock/calendar-sources.c                   |  658 ------
 applets/clock/calendar-sources.h                   |   70 -
 applets/clock/calendar-window.c                    | 1616 +--------------
 applets/clock/clock-face.c                         |    2 +-
 applets/clock/clock-location.c                     |    8 +-
 applets/clock/clock.c                              |  823 ++------
 applets/clock/clock.h                              |    2 +-
 applets/clock/clock.schemas.in                     |  313 ---
 .../org.mate.panel.applet.clock.gschema.xml.in     |   88 +
 13 files changed, 307 insertions(+), 5692 deletions(-)

commit 5052d39d3d10a57b2fe0e15b2e7833ef207d3a48
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:02:36 2012 +0200

    remove old mateconf doc

 ...nel-applet-Panel-Applet-MateConf-Utilities.html | 655 ---------------------
 .../tmpl/mate-panel-applet-mateconf.sgml           | 263 ---------
 2 files changed, 918 deletions(-)

commit 8d773c5db915bc75cc450db2216dee54f71b92c2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:02:07 2012 +0200

    migrate libmate-panel-applet to gsettings

 libmate-panel-applet/Makefile.am                   |  46 +--
 .../libmatepanelapplet-3.0-uninstalled.pc.in       |  11 -
 libmate-panel-applet/libmatepanelapplet-3.0.pc.in  |  11 -
 .../libmatepanelapplet-4.0-uninstalled.pc.in       |  11 +
 libmate-panel-applet/libmatepanelapplet-4.0.pc.in  |  11 +
 libmate-panel-applet/mate-panel-applet-gsettings.c | 108 +++++
 libmate-panel-applet/mate-panel-applet-gsettings.h |  45 ++
 libmate-panel-applet/mate-panel-applet-mateconf.c  | 457 ---------------------
 libmate-panel-applet/mate-panel-applet-mateconf.h  |  90 ----
 libmate-panel-applet/mate-panel-applet.c           | 211 ++--------
 libmate-panel-applet/mate-panel-applet.h           |   4 +-
 11 files changed, 227 insertions(+), 778 deletions(-)

commit 876f39364e2106c8cb96fa4a9067359e5a350583
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Oct 11 00:01:30 2012 +0200

    migrate mate-panel to gsettings

 mate-panel/Makefile.am                             |   44 +-
 mate-panel/applet.c                                |  125 +-
 mate-panel/applet.h                                |    4 +-
 mate-panel/button-widget.c                         |    2 +
 mate-panel/drawer.c                                |  194 +-
 mate-panel/drawer.h                                |    6 +-
 mate-panel/launcher.c                              |   59 +-
 mate-panel/launcher.h                              |   10 +-
 .../mate-panel-applet-container.c                  |    2 +-
 .../mate-panel-applet-frame-dbus.c                 |    2 +-
 mate-panel/libpanel-util/Makefile.am               |    2 +
 mate-panel/libpanel-util/panel-dconf.c             |  109 +
 mate-panel/libpanel-util/panel-dconf.h             |   44 +
 mate-panel/main.c                                  |   10 -
 mate-panel/mate-desktop-item-edit.c                |    2 -
 mate-panel/mate-panel-applet-frame.c               |   36 +-
 mate-panel/mate-panel-applet-frame.h               |    2 +-
 mate-panel/menu.c                                  |    9 +-
 mate-panel/panel-action-button.c                   |  245 +--
 mate-panel/panel-action-button.h                   |    9 +-
 mate-panel/panel-addto.c                           |   50 +-
 mate-panel/panel-bindings.c                        |  138 +-
 mate-panel/panel-compatibility.c                   | 1167 -----------
 mate-panel/panel-compatibility.h                   |   48 -
 mate-panel/panel-compatibility.schemas             |  546 -----
 mate-panel/panel-config-global.c                   |   68 +-
 mate-panel/panel-default-setup.entries             |  657 ------
 mate-panel/panel-enums-gsettings.h                 |   79 +
 mate-panel/panel-enums.h                           |   62 +-
 mate-panel/panel-general.schemas.in                |  127 --
 mate-panel/panel-global.schemas.in                 |  276 ---
 mate-panel/panel-gsettings.c                       |  178 ++
 mate-panel/panel-gsettings.h                       |   53 +
 mate-panel/panel-layout.c                          |  353 ++++
 mate-panel/panel-layout.h                          |   38 +
 mate-panel/panel-lockdown.c                        |  251 +--
 mate-panel/panel-mateconf.c                        |  351 ----
 mate-panel/panel-mateconf.h                        |   76 -
 mate-panel/panel-menu-bar.c                        |    4 +-
 mate-panel/panel-menu-bar.h                        |    2 +-
 mate-panel/panel-menu-button.c                     |  203 +-
 mate-panel/panel-menu-button.h                     |    4 +-
 mate-panel/panel-menu-items.c                      |   82 +-
 mate-panel/panel-object.schemas.in                 |  263 ---
 mate-panel/panel-profile.c                         | 2106 ++++++--------------
 mate-panel/panel-profile.h                         |   62 +-
 mate-panel/panel-properties-dialog.c               |  202 +-
 mate-panel/panel-reset.c                           |   21 +-
 mate-panel/panel-run-dialog.c                      |   91 +-
 mate-panel/panel-schemas.h                         |   90 +
 mate-panel/panel-separator.c                       |    4 +-
 mate-panel/panel-separator.h                       |    2 +-
 mate-panel/panel-test-applets.c                    |   56 +-
 mate-panel/panel-test-applets.ui                   |    6 +-
 mate-panel/panel-toplevel.c                        |   44 +-
 mate-panel/panel-toplevel.h                        |    5 +
 mate-panel/panel-toplevel.schemas.in               |  434 ----
 mate-panel/panel-util.c                            |   19 +-
 mate-panel/panel.c                                 |   12 +-
 59 files changed, 2405 insertions(+), 6741 deletions(-)

commit 66916b20f16f9f0aad4c527519b70ac3a72bbec7
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 10 23:57:56 2012 +0200

    add gsettings schemas

 data/Makefile.am                            |  14 +++
 data/org.mate.panel.gschema.xml.in          |  78 +++++++++++++++
 data/org.mate.panel.object.gschema.xml.in   |  79 ++++++++++++++++
 data/org.mate.panel.toplevel.gschema.xml.in | 142 ++++++++++++++++++++++++++++
 data/panel-default-layout.mate              |  53 +++++++++++
 5 files changed, 366 insertions(+)

commit 604337540f95368056cca6eb9d808ef4fcc19765
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Oct 10 23:56:54 2012 +0200

    remove matecomponent

 matecomponent/Makefile.am                          |    3 -
 matecomponent/idl/MATE_Panel.idl                   |   51 -
 matecomponent/idl/Makefile.am                      |    6 -
 .../MATE_Panel_TestApplet.server.in                |   31 -
 matecomponent/libmate-panel-applet/Makefile.am     |  129 --
 matecomponent/libmate-panel-applet/TODO            |   14 -
 .../libmatepanelapplet-2.0-uninstalled.pc.in       |   11 -
 .../libmatepanelapplet-2.0.pc.in                   |   11 -
 .../mate-panel-applet-marshal.list                 |    5 -
 .../mate-panel-applet-mateconf.c                   |  458 -----
 .../mate-panel-applet-mateconf.h                   |   90 -
 .../mate-panel-applet-private.h                    |   40 -
 .../libmate-panel-applet/mate-panel-applet-shell.c |  105 --
 .../libmate-panel-applet/mate-panel-applet-shell.h |   62 -
 .../libmate-panel-applet/mate-panel-applet.c       | 1830 --------------------
 .../libmate-panel-applet/mate-panel-applet.h       |  226 ---
 .../panel-test-applets-matecomponent.c             |  349 ----
 .../panel-test-applets-matecomponent.ui            |  203 ---
 .../test-matecomponent-applet.c                    |  204 ---
 matecomponent/panel-module/MATE_Panel_Popup.xml    |   20 -
 matecomponent/panel-module/Makefile.am             |   51 -
 .../mate-panel-applet-frame-matecomponent.c        |  759 --------
 .../mate-panel-applet-frame-matecomponent.h        |   65 -
 .../mate-panel-applets-manager-matecomponent.c     |  250 ---
 .../mate-panel-applets-manager-matecomponent.h     |   59 -
 .../mate-panel-applets-matecomponent-module.c      |   48 -
 26 files changed, 5080 deletions(-)

commit 18e3ea919cad33bf2048d42fa81e90cc91cb3b52
Merge: 1b3eed07 5494eaca
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Oct 9 12:30:15 2012 -0700

    Merge pull request #46 from cardpuncher/patch-2
    
    Update applets/fish/fish.c

commit 5494eacad9ca1903c733450008bf686514976fde
Author: cardpuncher <mauron@vmail.me>
Date:   Tue Oct 9 22:01:36 2012 +0300

    Update applets/fish/fish.c
    
    Fix a typo in the documentation credits for Wanda. Now I guess I can start seeking psychiatric evaluation as advised in the about box :)

 applets/fish/fish.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1b3eed07158197bf0de4e4689c08a6f09070d17a
Merge: 497b5875 0d83e96b
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Oct 8 15:47:23 2012 -0700

    Merge pull request #45 from cardpuncher/patch-1
    
    Fix web site URL

commit 0d83e96b30f0b20c6f86a08031d92de9e4e43c6f
Author: cardpuncher <mauron@vmail.me>
Date:   Mon Oct 8 23:28:14 2012 +0300

    Fix web site URL
    
    The former URL was matsusoft.com.ar, if my understanding is correct mate-desktop.org is now the ONE TRUE URL :p

 applets/clock/clock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 497b58752b465146c5890624fd1609de10ec0136
Merge: 167cc3f3 67d8e6c9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Sep 6 03:02:04 2012 -0700

    Merge pull request #40 from mrpdaemon/compile-fix
    
    Fix compile error

commit 67d8e6c9dd804498044cc16ce8d31c28ecc59643
Author: Mark Pariente <markpariente@gmail.com>
Date:   Wed Sep 5 21:48:43 2012 -0700

    Fix compile error
    
    applets/clock/calendar-client.c references MateConfClient without
    including mateconf-client.h which caused a compile error on my
    setup.

 applets/clock/calendar-client.c | 2 ++
 1 file changed, 2 insertions(+)

commit 167cc3f3c0464fd7e1a90f2135efe05ebf532e1b
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Mon Aug 6 17:16:58 2012 -0400

    Removed nyan.png from fish applet.

 applets/fish/Makefile.am |   3 +--
 applets/fish/nyan.png    | Bin 1211 -> 0 bytes
 2 files changed, 1 insertion(+), 2 deletions(-)

commit 1e0ea2d78f879c85942ae7f6e081cb953961dc2d
Merge: f716b5e9 15d4a835
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 26 17:45:47 2012 -0700

    Merge pull request #34 from NiceandGently/master
    
    incorrect-fsf-address and others

commit 15d4a835a59f72f06bb7f48e93115bcc87a98242
Author: Nice&Gently <chat-to-me@raveit.de>
Date:   Thu Jul 26 19:23:58 2012 +0200

    fix incorrect-fsf-address

 mate-panel/mate-panel-add.in         | 2 +-
 mate-panel/mate-panel-applet-frame.h | 5 ++---
 mate-panel/mate-panel-applet-info.h  | 4 ++--
 3 files changed, 5 insertions(+), 6 deletions(-)

commit f716b5e9b60d37bbbc83c20906e2dfe3bf203577
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jul 10 21:55:31 2012 -0400

    Preparing for 1.4 release.

 ChangeLog | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit 97dbdf6c937f1221e7fc35e8f658bd07c9aa001b
Merge: 4ac3c7f9 e72f9745
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jul 6 00:52:03 2012 -0700

    Merge pull request #30 from Gymnasiast/master
    
    Fix for clock in mate-panel skipping seconds

commit 4ac3c7f9f81501f753c31962407280481477fc20
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu Jul 5 14:26:19 2012 -0400

    Preparing for 1.4 release.

 ChangeLog    | 1316 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 configure.ac |    2 +-
 2 files changed, 1315 insertions(+), 3 deletions(-)

commit 1a88770385c3b71a423ee7ee620a252e0d6e8908
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 16:25:18 2012 +0200

    sync translations with transifex

 po/af.po  | 2604 ++++++++-------------------
 po/ar.po  | 1735 +++++++-----------
 po/ast.po | 2604 ++++++++++++---------------
 po/ca.po  | 5838 +++++--------------------------------------------------------
 po/cs.po  | 1094 +++++-------
 po/eo.po  | 1283 +++++---------
 po/es.po  | 1861 +++++++-------------
 po/eu.po  | 1708 ++++++++----------
 po/fr.po  | 1253 +++++--------
 po/he.po  | 1702 +++++++-----------
 po/nl.po  |    8 +-
 po/pl.po  |    9 +-
 po/ru.po  | 1048 ++++++-----
 po/sl.po  | 1061 ++++++-----
 po/tr.po  |   15 +-
 po/uk.po  | 1688 ++++++++----------
 16 files changed, 8201 insertions(+), 17310 deletions(-)

commit 8234ff98dfc1ee9cf3fb0fd0c722256ea3c48034
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jul 4 16:12:47 2012 +0200

    add po gnome copyrights file

 po/gnome-copyrights.txt | 1443 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1443 insertions(+)

commit e72f97458561206f5b2732919dc37ca81ba2ed92
Author: Michael Steenbeek <michael@AUGUSTUS.(none)>
Date:   Mon Jun 25 11:20:52 2012 +0200

    Fix clock seconds

 applets/clock/clock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 765098c3b9d988f4ae690eebd38e559352fa5320
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 20 12:55:14 2012 +0200

    fix "ngome" occurence
    thanks to nmarques

 mate-panel/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9624cc67fbe896f5d2a25843e17d107028663f1d
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 20 09:33:10 2012 +0200

    prepare 1.3.2

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 433b732669ea1accb0fbc79bce6c39f416ea5234
Merge: 6b4bc7a4 bf0d96ed
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Tue Jun 19 15:37:13 2012 -0700

    Merge pull request #28 from ketheriel/master
    
    libpanel-applet: Use on_bus_acquired instead of on_name_acquired

commit bf0d96ed544a2a50ad7ca350baf75aab3d77622c
Author: Nelson Marques <nmo.marques@gmail.com>
Date:   Tue Jun 19 23:46:42 2012 +0200

    libpanel-applet: Use on_bus_acquired instead of on_name_acquired
    
    Prevent race conditions when the session starts (panel is displayed instantly); This is well documented in the gdbus documentation: https://bugzilla.gnome.org/show_bug.cgi?id=654843

 libmate-panel-applet/mate-panel-applet-factory.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 6b4bc7a4e45fec8a17c9be53338cfdca5eb4cc24
Merge: 32879f4b 13d41840
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Jun 15 05:46:08 2012 -0700

    Merge pull request #23 from MDykstra/master
    
    now linking under up-to-date Arch Linux system

commit 32879f4b29b115387255580aede2269eb8f818d3
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 13 10:53:29 2012 +0200

    Use right GdkScreen for focus request and menu
    http://bugzilla-attachments.gnome.org/attachment.cgi?id=179797
    
    Calling gtk_widget_get_screen() on a widget embedded in a plug doesn't
    necessarily return what you expect (because of
    gtk_widget_get_toplevel()).
    
    Instead, call gtk_window_get_screen() on the plug.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=632369

 libmate-panel-applet/mate-panel-applet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bd86f8daead7479405667acb84d4b976301641b2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 6 17:33:00 2012 +0200

    switch to libmatewnck

 applets/notification_area/na-tray-child.c |  4 +-
 applets/wncklet/showdesktop.c             | 38 +++++++-------
 applets/wncklet/window-list.c             | 50 +++++++++---------
 applets/wncklet/window-list.h             |  2 +-
 applets/wncklet/window-menu.c             | 10 ++--
 applets/wncklet/wncklet.c                 | 12 ++---
 applets/wncklet/wncklet.h                 |  5 +-
 applets/wncklet/workspace-switcher.c      | 86 +++++++++++++++----------------
 applets/wncklet/workspace-switcher.h      |  2 +-
 configure.ac                              |  6 +--
 distro/archlinux/PKGBUILD                 |  2 +-
 11 files changed, 104 insertions(+), 113 deletions(-)

commit 55d552d3f66f6730e195fbb3f25c415161f6b3f0
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Jun 6 10:30:24 2012 +0200

    removed distro/ubuntu folder

 distro/ubuntu/build    | 31 -------------------------------
 distro/ubuntu/postinst | 15 ---------------
 distro/ubuntu/postrm   |  8 --------
 distro/ubuntu/preinst  |  7 -------
 distro/ubuntu/prerm    | 16 ----------------
 5 files changed, 77 deletions(-)

commit 8b37f5bb6c8bd04dcde7edd66a366ba5c1eb3834
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed May 23 17:14:21 2012 +0200

    fix some things for MATE in wncklet applet

 applets/wncklet/showdesktop.c          |   8 +-
 applets/wncklet/window-list.c          |  17 ++---
 applets/wncklet/window-list.schemas.in |   8 +-
 applets/wncklet/window-list.ui         | 130 ---------------------------------
 applets/wncklet/window-menu.c          |   8 +-
 applets/wncklet/workspace-switcher.c   |  10 ++-
 6 files changed, 30 insertions(+), 151 deletions(-)

commit 13d41840ccb39bebe44b52653ba8d59b0c4985a0
Merge: d3b927a3 9af851f0
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Wed May 23 02:33:19 2012 +0200

    Merge remote-tracking branch 'upstream/master' into slave

commit 9af851f0c4f0296eb5654233b9fc251e9377c8b9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon May 21 21:22:01 2012 +0200

    start 1.3

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d3b927a321242e36abdb1e4acc488cde7899800e
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Wed May 16 04:03:15 2012 +0200

    only depend on gmodule-2.0 if it exists

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 656540dac716816bbc906b373d6ff6e488e536bd
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun May 13 19:09:31 2012 +0200

    add option to hide arrow in menu button
    https://github.com/mate-desktop/mate-panel/issues/24
    https://bugzilla.gnome.org/show_bug.cgi?id=598196
    patch by Damir Gilyazov

 mate-panel/panel-menu-button.c     |  8 +++++++-
 mate-panel/panel-object.schemas.in | 14 ++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

commit 69769af51fe3f072bfd2612a27afc095eb67384f
Merge: 9639e4e9 4cd11380
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Thu May 10 12:59:42 2012 -0700

    Merge pull request #18 from benpicco/upstream
    
    pull in upstream changes & fixes

commit b3fabe6bbdf380e7d3202677c1d0899b47cbff8e
Author: Marcel Dijkstra <marcel.dykstra@gmail.com>
Date:   Thu Apr 26 23:13:42 2012 +0200

    linker now requires gmodule-2.0 in mate-panel

 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9639e4e9ccdbf44e8a4a29a57c23cc7c4cf05253
Merge: 36f6cbeb ef01aabe
Author: Perberos <perberos@gmail.com>
Date:   Mon Apr 23 05:39:12 2012 -0300

    Merge branch 'master' of github.com:mate-desktop/mate-panel

commit 36f6cbeb068f46ebf165e718005699979acaa36f
Author: Perberos <perberos@gmail.com>
Date:   Mon Apr 23 05:37:29 2012 -0300

    adding an item for system monitors on the windows list applet

 applets/wncklet/window-list-menu.xml |  2 ++
 applets/wncklet/window-list.c        | 69 ++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

commit ef01aabe2567bda92e02c62f2f07d95b47e92cc9
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 10:02:57 2012 +0200

    update translations (pl, tr)

 po/pl.po | 1115 +++++++++++++-------------------
 po/tr.po | 2164 ++++++++++++++++++++++++--------------------------------------
 2 files changed, 1272 insertions(+), 2007 deletions(-)

commit ebb303b9ebc2f42289f69d48a70b00de61f06852
Merge: f83141e3 69f29364
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 00:12:41 2012 -0700

    Merge pull request #19 from haxar/69f29364bbbe1d1772cf0ce5e4efe0af1beccd42
    
    g-ir-scanner: fix build when configure prefix != /usr

commit f83141e3dc98adb70870bbf920453397951b70fd
Merge: 5b2e5096 f27accd6
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Fri Apr 6 00:12:24 2012 -0700

    Merge pull request #20 from haxar/clock-applet-map
    
    clock-applet: keep locations map expanded state

commit f27accd68a9abec65c702fa430562ee545f0d096
Author: haxar <grezski@gmail.com>
Date:   Thu Apr 5 20:23:40 2012 -0700

    clock-applet: use mateconf client to get and set KEY_LOCATIONS_EXPANDED key when HAVE_LIBECAL is not defined

 applets/clock/calendar-window.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

commit 69f29364bbbe1d1772cf0ce5e4efe0af1beccd42
Author: haxar <grezski@gmail.com>
Date:   Thu Apr 5 20:23:29 2012 -0700

    g-ir-scanner: when configure prefix != /usr, add prefix to scanner include paths

 libmate-panel-applet/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4cd113800b89a73dfa77ed4081811055a4cbe23e
Author: Sebastien Bacher <seb128@ubuntu.com>
Date:   Fri Jul 10 14:24:56 2009 +0200

    lockdown locks the menu editor entry too
    
    Bug: http://bugzilla.gnome.org/show_bug.cgi?id=499148
    Bug-Ubuntu: https://bugs.launchpad.net/bugs/4712

 mate-panel/panel-menu-bar.c    | 2 +-
 mate-panel/panel-menu-button.c | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 8c25e1bdd328a8712735c0b00cf4aede7993da1d
Author: Oliver Grawert <ogra@ubuntu.com>
Date:   Mon Oct 13 16:53:28 2008 +0200

    Suppress the shutdown option in the panel if LTSP_CLIENT is set

 mate-panel/panel-menu-items.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e0d316abc53e6858814ccc83cb42b3e541e72977
Author: Jorge Bernal "Koke <koke@amedias.org>
Date:   Wed Mar 23 03:20:01 2005 +0100

    Show a default icon for .desktop files that don't have one
    
    Bug: https://bugzilla.gnome.org/show_bug.cgi?id=76495

 mate-panel/menu.c              | 2 +-
 mate-panel/panel-stock-icons.h | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 68ec89213e4d7c23cb681016b0b627e39fae9e4f
Author: Marcel Stimberg <stimb@cs.tu-berlin.de>
Date:   Sun Aug 23 20:40:16 2009 +0000

    When using Drag'n'Drop from Places menu, install a link launcher (.desktop file) instead of copying the entire directory.
    
    Bug: https://bugzilla.gnome.org/show_bug.cgi?id=357934
    Bug-Ubuntu: https://launchpad.net/bugs/62529

 mate-panel/menu.c             | 5 +++--
 mate-panel/menu.h             | 3 ++-
 mate-panel/panel-menu-items.c | 5 +++--
 3 files changed, 8 insertions(+), 5 deletions(-)

commit ab55bf3e46ccab95d268bf0e10dce2e15294cabf
Author: Vincent Untz <vuntz@gnome.org>
Date:   Thu Feb 17 12:47:25 2011 +0100

    matecomponent: Remove API to build matecomponent applet as shared library
    
    Yes, it's bad, it breaks API and ABI. In a stable branch. But it's the
    matecomponent compatibility module. And it's a rather important fix.
    
    We can't have matecomponent applets as shared libraries since both matecomponent
    applets and dbus applets are sharing the MatePanelApplet type name, and they
    will conflict in the same process. Since we know we want to allow dbus
    in-process applets, it means we have to disallow matecomponent in-process
    applets. Hence this change.

 .../libmate-panel-applet/mate-panel-applet.c       | 49 ----------------------
 .../libmate-panel-applet/mate-panel-applet.h       | 32 --------------
 2 files changed, 81 deletions(-)

commit 065282bda1caacc9891c4f0c5411f03f17dc5555
Author: Germán Póo-Caamaño <gpoo@gnome.org>
Date:   Sat Jan 29 22:08:32 2011 -0800

    mate-panel-desktop: Fix the Categories key
    
    mate-panel is not an utility, it is part of the core.  Hence,
    the Categories reflects panel is part of System.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=640690
    
    Signed-off-by: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/mate-panel.desktop.in.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 92ba1e2db39b69340462ce0570bb971154ecdf2d
Author: Vincent Untz <vuntz@gnome.org>
Date:   Fri Jan 7 17:42:43 2011 -0800

    Change references from matecomponent-applet to external-applet in mateconf
    
    Signed-off-by: Germán Póo-Caamaño <gpoo@gnome.org>

 mate-panel/mate-panel-add.in           |  2 +-
 mate-panel/panel-default-setup.entries | 12 ++++++------
 mate-panel/panel-object.schemas.in     |  6 ++++--
 mate-panel/panel-profile.c             |  4 +++-
 4 files changed, 14 insertions(+), 10 deletions(-)

commit 5b2e5096babd9008c9f29836a93302816e15b68f
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Sun Mar 11 21:23:05 2012 +0100

    1.2.1 release

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 340a69c6f3a0d27a4d127d337a3933e01162ab7c
Author: Perberos <perberos@gmail.com>
Date:   Wed Mar 7 10:13:20 2012 -0300

    http://bugzilla-attachments.gnome.org/attachment.cgi?id=201328

 libmate-panel-applet/mate-panel-applet-factory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 57923befd804306ffc51c897e74449cbb62dd669
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 23:20:33 2012 +0100

    fix mate-autogen rename

 autogen.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit cdabbca548fbe1d695b698c9b419a21188247553
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 21:48:47 2012 +0100

    fix for 1.2 release

 MAINTAINERS  | 18 ------------------
 configure.ac |  2 +-
 2 files changed, 1 insertion(+), 19 deletions(-)

commit 95478d54ab1c61549f76639203c969c6be9dfd99
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Wed Feb 29 19:34:49 2012 +0100

    update translations

 po/et.po    | 1456 ++++++++++++++++++++++++++++++++++--------------------
 po/nl.po    | 1575 +++++++++++++++++------------------------------------------
 po/pt_BR.po | 1497 +++++++++++++++++---------------------------------------
 3 files changed, 1803 insertions(+), 2725 deletions(-)

commit a863fa94d275584bdd7daf4de463323fde4b91c8
Merge: d7851474 5fcd54e8
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Feb 27 08:49:53 2012 -0800

    Merge pull request #10 from brianjmurrell/master
    
    Fix for mate-panel issue #9

commit 5fcd54e8b74acf364cc348850f69a1a416b89692
Author: Brian J. Murrell <brian@interlinx.bc.ca>
Date:   Thu Feb 23 20:49:54 2012 -0500

    fix for GNOME bug 632369

 .../mate-panel-applet-container.c                            | 12 ++++++++----
 .../mate-panel-applet-container.h                            |  1 +
 .../mate-panel-applet-frame-dbus.c                           |  4 +++-
 mate-panel/mate-panel-applet-frame.c                         |  6 ++++++
 mate-panel/mate-panel-applet-frame.h                         |  2 ++
 mate-panel/panel-test-applets.c                              |  1 +
 6 files changed, 21 insertions(+), 5 deletions(-)

commit d7851474e28e1aa65cbdabe0d3b4032afc7d40f3
Author: Perberos <perberos@gmail.com>
Date:   Mon Jan 30 13:12:30 2012 -0300

    g_get_user_config_dir() would be better (https://github.com/mate-desktop/mate-panel/issues/8)

 mate-panel/panel-util.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 1016505cc78a6dfe385c935ab17bf458f0ba2de3
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:16:21 2012 -0300

    ~/.mate2/ moved to ~/.config/mate/

 mate-panel/panel-util.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 8821addfd919b8ab42e7f8462ae78315d116f74c
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:12:03 2012 -0300

    website info redundancy, refer to mate-about

 mate-panel/panel-context-menu.c | 377 ++++++++++++++++++++--------------------
 1 file changed, 188 insertions(+), 189 deletions(-)

commit 190debbe91a21932a637989a5d1659c866c0ec30
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:11:32 2012 -0300

    removing extra spaces

 mate-panel/Makefile.am | 320 ++++++++++++++++++++++++-------------------------
 1 file changed, 160 insertions(+), 160 deletions(-)

commit 19bfea3a8d5f2d20c3ad927b729fb04ba3ceef8f
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:10:25 2012 -0300

    website info redundancy, refer to mate-about

 applets/notification_area/main.c | 1 -
 1 file changed, 1 deletion(-)

commit 16659f4b196ce57bfc76ff51e85e9dc4417b2527
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:08:00 2012 -0300

    changing pkgbuild source method

 distro/archlinux/PKGBUILD | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ea9dffce8aa379670e983669562b00435f8316ba
Author: Perberos <perberos@gmail.com>
Date:   Fri Jan 27 09:04:25 2012 -0300

    removing autogenerated files

 applets/Makefile.in                                |  677 ------
 applets/clock/Makefile.in                          | 1595 --------------
 applets/clock/pixmaps/Makefile.in                  |  537 -----
 applets/notification_area/Makefile.in              |  964 ---------
 applets/wncklet/Makefile.in                        | 1075 ----------
 doc/Makefile.in                                    |  676 ------
 doc/reference/Makefile.in                          |  672 ------
 doc/reference/mate-panel-applet/Makefile.in        |  804 -------
 help/Makefile.in                                   |  672 ------
 help/clock/Makefile.in                             | 1030 ---------
 help/fish/Makefile.in                              | 1030 ---------
 icons/16x16/Makefile.in                            |  564 -----
 icons/22x22/Makefile.in                            |  564 -----
 icons/24x24/Makefile.in                            |  550 -----
 icons/32x32/Makefile.in                            |  564 -----
 icons/48x48/Makefile.in                            |  544 -----
 icons/Makefile.in                                  |  725 -------
 icons/scalable/Makefile.in                         |  550 -----
 libmate-panel-applet/Makefile.in                   |  921 --------
 man/Makefile.in                                    |  553 -----
 mate-panel/Makefile.in                             | 2222 --------------------
 mate-panel/libegg/Makefile.in                      |  622 ------
 .../libmate-panel-applet-private/Makefile.in       |  644 ------
 mate-panel/libpanel-util/Makefile.in               |  647 ------
 mate-panel/mate-panel-add.in                       |    3 +-
 matecomponent/Makefile.in                          |  672 ------
 matecomponent/idl/Makefile.in                      |  520 -----
 matecomponent/libmate-panel-applet/Makefile.in     |  952 ---------
 matecomponent/panel-module/Makefile.in             |  786 -------
 po/Makefile.in.in                                  |  217 --
 30 files changed, 2 insertions(+), 22550 deletions(-)

commit e0a48baf161a51e7a61ffdf61e8c60050c9472f5
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 19 13:36:31 2012 +0100

    alacarte -> mozo (thanks to benpicco for the tip)

 mate-panel/panel-menu-bar.c    | 4 ++--
 mate-panel/panel-menu-button.c | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 60fe93f5130407c3e02748341affbce360606c53
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 19 11:48:30 2012 +0100

    1.1.1 release

 AUTHORS                   | 15 +++++++++++----
 HACKING                   | 20 ++++----------------
 README                    | 13 +++----------
 configure.ac              |  5 +++--
 distro/archlinux/PKGBUILD |  2 +-
 distro/ubuntu/build       |  2 +-
 6 files changed, 23 insertions(+), 34 deletions(-)

commit 40dd3d1c879d031e128c521a409007acf0051b25
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Wed Jan 18 21:38:02 2012 -0500

    Fixed mate-desktop URL

 applets/notification_area/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c8123c706d8c463e216c35aa41c53cf03ae3a695
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Jan 13 19:58:46 2012 -0500

    Added mate-desktop.org to about window.

 mate-panel/panel-context-menu.c | 377 ++++++++++++++++++++--------------------
 1 file changed, 189 insertions(+), 188 deletions(-)

commit 4b0e0770aaa3d58e89ab0bd77799c8d162a6dbc1
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Tue Jan 10 14:26:02 2012 -0500

    Changed mate.gr.jp to gnome.gr.jp as requested in Issue #86

 po/ja.po | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

commit 4b23e8a1c2ddd97c200197abd10e7a6604643469
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:29:12 2012 +0100

    libmate-panel-applet: Add introspection annotations
    mate_panel_applet_factory_main was being generated with introspectable="0" because of missing annotations
    http://git.gnome.org/browse/gnome-panel/commit/?h=gnome-2-32&id=9cbae555115013bc7946e2ce3584d40639248f14

 libmate-panel-applet/mate-panel-applet.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit eb26152358112a7a289c51f8100a8975f532df54
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:21:29 2012 +0100

    updated de translation

 po/de.po | 1292 ++++++++++++++++++++++++++++----------------------------------
 1 file changed, 583 insertions(+), 709 deletions(-)

commit 6b4c95bf8f8dc8254bb14bd9e72b25e96f99a5f2
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 16:17:00 2012 +0100

    increased items number in bookmarks menu (same as debian&ubuntu gnome-panel)

 mate-panel/panel-menu-items.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bf0701223a05c06e154c6ed81664363a6f8a81bb
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Thu Jan 5 15:58:35 2012 +0100

    renamed gettext package name

 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f7d562381383c00e9ff0ac3b02557836a06b3c97
Author: Stefano Karapetsas <stefano@karapetsas.com>
Date:   Mon Jan 2 16:33:08 2012 +0100

    updated it translation

 po/it.po | 931 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 427 insertions(+), 504 deletions(-)

commit ea5dba1a995c3643e1e01dcca148a7986ed89e8a
Author: Perberos <perberos@gmail.com>
Date:   Tue Dec 13 13:53:58 2011 -0200

    adding missing ld flags

 mate-panel/Makefile.am | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 3f01e0e02e559f9e3e632596dd8097b689b174c4
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 9 23:32:44 2011 -0500

    updated version

 configure.ac              | 18 +++++++++---------
 distro/archlinux/PKGBUILD |  2 +-
 distro/ubuntu/build       |  2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)

commit dab51c76bea31b0bb8b79119de2f6a68f4fff489
Author: Steve Zesch <stevezesch2@gmail.com>
Date:   Fri Dec 2 20:15:54 2011 -0500

    Changed version to 2011.12.01

 configure.ac              | 2 +-
 distro/archlinux/PKGBUILD | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit c51ef797a707f4e2c6f9688d4378f2b0e9898a66
Author: Perberos <perberos@gmail.com>
Date:   Thu Dec 1 22:56:10 2011 -0300

    moving from https://github.com/perberos/mate-desktop-environment

 AUTHORS                                            |   52 +
 COPYING                                            |  339 +
 COPYING-DOCS                                       |  355 +
 COPYING.LIB                                        |  481 ++
 ChangeLog                                          |    3 +
 HACKING                                            |   31 +
 MAINTAINERS                                        |   18 +
 Makefile.am                                        |   53 +
 NEWS                                               |    3 +
 README                                             |   49 +
 applets/Makefile.am                                |    7 +
 applets/Makefile.in                                |  677 ++
 applets/clock/Makefile.am                          |  205 +
 applets/clock/Makefile.in                          | 1595 ++++
 applets/clock/calendar-client.c                    | 2169 ++++++
 applets/clock/calendar-client.h                    |  153 +
 applets/clock/calendar-debug.h                     |   56 +
 applets/clock/calendar-sources.c                   |  658 ++
 applets/clock/calendar-sources.h                   |   70 +
 applets/clock/calendar-window.c                    | 2125 ++++++
 applets/clock/calendar-window.h                    |   84 +
 applets/clock/clock-face.c                         |  462 ++
 applets/clock/clock-face.h                         |   64 +
 applets/clock/clock-location-tile.c                |  728 ++
 applets/clock/clock-location-tile.h                |   51 +
 applets/clock/clock-location.c                     |  894 +++
 applets/clock/clock-location.h                     |   87 +
 applets/clock/clock-map.c                          |  700 ++
 applets/clock/clock-map.h                          |   43 +
 applets/clock/clock-marshallers.list               |    3 +
 applets/clock/clock-menu.xml                       |    8 +
 applets/clock/clock-sunpos.c                       |  197 +
 applets/clock/clock-sunpos.h                       |    8 +
 applets/clock/clock-utils.c                        |  127 +
 applets/clock/clock-utils.h                        |   57 +
 applets/clock/clock.c                              | 3745 +++++++++
 applets/clock/clock.h                              |   41 +
 applets/clock/clock.schemas.in                     |  313 +
 applets/clock/clock.ui                             | 1136 +++
 ....mate.panel.ClockApplet.mate-panel-applet.in.in |   18 +
 ...mate.panel.applet.ClockAppletFactory.service.in |    3 +
 applets/clock/pixmaps/Makefile.am                  |   21 +
 applets/clock/pixmaps/Makefile.in                  |  537 ++
 applets/clock/pixmaps/clock-calendar-icon.png      |  Bin 0 -> 653 bytes
 applets/clock/pixmaps/clock-face-large.svg         |  291 +
 applets/clock/pixmaps/clock-face-small-day.svg     |  290 +
 applets/clock/pixmaps/clock-face-small-evening.svg |  290 +
 applets/clock/pixmaps/clock-face-small-morning.svg |  290 +
 applets/clock/pixmaps/clock-face-small-night.svg   |  291 +
 applets/clock/pixmaps/clock-face-small.svg         |  290 +
 .../clock/pixmaps/clock-map-location-current.png   |  Bin 0 -> 379 bytes
 .../clock/pixmaps/clock-map-location-hilight.png   |  Bin 0 -> 346 bytes
 .../clock/pixmaps/clock-map-location-marker.png    |  Bin 0 -> 283 bytes
 applets/clock/pixmaps/clock-map.png                |  Bin 0 -> 25244 bytes
 applets/clock/pixmaps/clock-map.svg                |  755 ++
 applets/clock/set-timezone.c                       |  291 +
 applets/clock/set-timezone.h                       |   40 +
 applets/clock/system-timezone.c                    | 1048 +++
 applets/clock/system-timezone.h                    |   87 +
 applets/clock/test-system-timezone.c               |  122 +
 applets/fish/Makefile.am                           |  111 +
 applets/fish/fish-menu.xml                         |    4 +
 applets/fish/fish.c                                | 2012 +++++
 applets/fish/fish.schemas.in                       |   91 +
 applets/fish/fish.ui                               |  444 ++
 applets/fish/fishanim.png                          |  Bin 0 -> 4859 bytes
 applets/fish/footguy.png                           |  Bin 0 -> 176 bytes
 applets/fish/monkey.png                            |  Bin 0 -> 5063 bytes
 applets/fish/nyan.png                              |  Bin 0 -> 1211 bytes
 applets/fish/oldwanda.png                          |  Bin 0 -> 12996 bytes
 ...g.mate.panel.FishApplet.mate-panel-applet.in.in |   17 +
 ....mate.panel.applet.FishAppletFactory.service.in |    3 +
 applets/fish/wanda.png                             |  Bin 0 -> 13683 bytes
 applets/fish/wanda.svg                             | 3724 +++++++++
 applets/notification_area/Makefile.am              |  112 +
 applets/notification_area/Makefile.in              |  964 +++
 applets/notification_area/fixedtip.c               |  269 +
 applets/notification_area/fixedtip.h               |   72 +
 applets/notification_area/main.c                   |  267 +
 applets/notification_area/na-marshal.c             |  167 +
 applets/notification_area/na-marshal.h             |   36 +
 applets/notification_area/na-marshal.list          |    3 +
 applets/notification_area/na-tray-child.c          |  539 ++
 applets/notification_area/na-tray-child.h          |   75 +
 applets/notification_area/na-tray-manager.c        |  859 +++
 applets/notification_area/na-tray-manager.h        |  101 +
 applets/notification_area/na-tray.c                |  837 ++
 applets/notification_area/na-tray.h                |   71 +
 .../notification_area/notification-area-menu.xml   |    3 +
 ....NotificationAreaApplet.mate-panel-applet.in.in |   17 +
 ...applet.NotificationAreaAppletFactory.service.in |    3 +
 applets/notification_area/testtray.c               |  220 +
 applets/wncklet/Makefile.am                        |  115 +
 applets/wncklet/Makefile.in                        | 1075 +++
 .../org.mate.panel.Wncklet.mate-panel-applet.in.in |   50 +
 ...org.mate.panel.applet.WnckletFactory.service.in |    3 +
 applets/wncklet/showdesktop-menu.xml               |    3 +
 applets/wncklet/showdesktop.c                      |  533 ++
 applets/wncklet/showdesktop.h                      |   42 +
 applets/wncklet/window-list-menu.xml               |    4 +
 applets/wncklet/window-list.c                      |  749 ++
 applets/wncklet/window-list.h                      |   25 +
 applets/wncklet/window-list.schemas.in             |   77 +
 applets/wncklet/window-list.ui                     |  443 ++
 applets/wncklet/window-menu-menu.xml               |    3 +
 applets/wncklet/window-menu.c                      |  269 +
 applets/wncklet/window-menu.h                      |   45 +
 applets/wncklet/wncklet.c                          |  144 +
 applets/wncklet/wncklet.h                          |   48 +
 applets/wncklet/workspace-switcher-menu.xml        |    6 +
 applets/wncklet/workspace-switcher.c               |  932 +++
 applets/wncklet/workspace-switcher.h               |   25 +
 applets/wncklet/workspace-switcher.schemas.in      |   52 +
 applets/wncklet/workspace-switcher.ui              |  323 +
 autogen.sh                                         |   25 +
 configure.ac                                       |  445 ++
 distro/archlinux/PKGBUILD                          |   39 +
 distro/archlinux/mate-panel.install                |   31 +
 distro/ubuntu/build                                |   31 +
 distro/ubuntu/postinst                             |   15 +
 distro/ubuntu/postrm                               |    8 +
 distro/ubuntu/preinst                              |    7 +
 distro/ubuntu/prerm                                |   16 +
 doc/Makefile.am                                    |    7 +
 doc/Makefile.in                                    |  676 ++
 doc/panel-keynav.txt                               |   84 +
 doc/panel-session-handling.txt                     |  250 +
 doc/reference/Makefile.am                          |    3 +
 doc/reference/Makefile.in                          |  672 ++
 doc/reference/mate-panel-applet/Makefile.am        |   68 +
 doc/reference/mate-panel-applet/Makefile.in        |  804 ++
 .../mate-panel-applet/html/applet-popups.html      |   31 +
 .../mate-panel-applet/html/applet-porting.html     |  207 +
 .../mate-panel-applet/html/applet-writing.html     |   93 +
 doc/reference/mate-panel-applet/html/home.png      |  Bin 0 -> 654 bytes
 doc/reference/mate-panel-applet/html/index.html    |   64 +
 doc/reference/mate-panel-applet/html/index.sgml    |   69 +
 doc/reference/mate-panel-applet/html/left.png      |  Bin 0 -> 459 bytes
 ...nel-applet-Panel-Applet-MateConf-Utilities.html |  655 ++
 .../html/mate-panel-applet-mate-panel-applet.html  |  948 +++
 .../html/mate-panel-applet.devhelp                 |   68 +
 .../html/mate-panel-applet.devhelp2                |   75 +
 .../mate-panel-applet/html/mate-panel-applet.html  |   38 +
 .../mate-panel-applet/html/multi-applets.html      |   31 +
 .../mate-panel-applet/html/panel-signals.html      |   31 +
 doc/reference/mate-panel-applet/html/right.png     |  Bin 0 -> 472 bytes
 .../mate-panel-applet/html/server-files.html       |   67 +
 .../mate-panel-applet/html/session-saving.html     |   31 +
 doc/reference/mate-panel-applet/html/style.css     |  265 +
 doc/reference/mate-panel-applet/html/up.png        |  Bin 0 -> 406 bytes
 .../mate-panel-applet/mate-panel-applet-docs.sgml  |  385 +
 .../mate-panel-applet-overrides.txt                |    0
 .../mate-panel-applet-sections.txt                 |   67 +
 .../mate-panel-applet/mate-panel-applet.types      |    3 +
 .../tmpl/mate-panel-applet-mateconf.sgml           |  263 +
 .../tmpl/mate-panel-applet-unused.sgml             |  109 +
 .../mate-panel-applet/tmpl/mate-panel-applet.sgml  |  393 +
 help/Makefile.am                                   |    3 +
 help/Makefile.in                                   |  672 ++
 help/clock/C/figures/clock_applet.png              |  Bin 0 -> 406 bytes
 help/clock/C/legal.xml                             |   64 +
 help/clock/C/mate-applet-clock.xml                 |  466 ++
 help/clock/Makefile.am                             |    9 +
 help/clock/Makefile.in                             | 1030 +++
 help/clock/ar/ar.po                                |  377 +
 help/clock/ar/figures/clock_applet.png             |  Bin 0 -> 2312 bytes
 help/clock/ca/ca.po                                |  373 +
 help/clock/ca/figures/clock_applet.png             |  Bin 0 -> 1207 bytes
 help/clock/cs/cs.po                                |  672 ++
 help/clock/cs/figures/clock_applet.png             |  Bin 0 -> 879 bytes
 help/clock/da/da.po                                |  716 ++
 help/clock/de/de.po                                |  694 ++
 help/clock/de/figures/clock_applet.png             |  Bin 0 -> 1398 bytes
 help/clock/el/el.po                                |  597 ++
 help/clock/el/figures/clock_applet.png             |  Bin 0 -> 2160 bytes
 help/clock/en_GB/en_GB.po                          |  541 ++
 help/clock/es/es.po                                |  742 ++
 help/clock/es/figures/clock_applet.png             |  Bin 0 -> 1795 bytes
 help/clock/eu/eu.po                                |  375 +
 help/clock/eu/figures/clock_applet.png             |  Bin 0 -> 1274 bytes
 help/clock/fi/fi.po                                |  420 ++
 help/clock/fr/figures/clock_applet.png             |  Bin 0 -> 1341 bytes
 help/clock/fr/fr.po                                |  685 ++
 help/clock/it/figures/clock_applet.png             |  Bin 0 -> 1574 bytes
 help/clock/it/it.po                                |  374 +
 help/clock/ja/figures/clock_applet.png             |  Bin 0 -> 1589 bytes
 help/clock/ja/ja.po                                |  696 ++
 help/clock/ko/figures/clock_applet.png             |  Bin 0 -> 418 bytes
 help/clock/ko/ko.po                                |  529 ++
 help/clock/mate-applet-clock.omf.in                |   11 +
 help/clock/nl/figures/clock_applet.png             |  Bin 0 -> 406 bytes
 help/clock/nl/nl.po                                |  957 +++
 help/clock/oc/oc.po                                |  466 ++
 help/clock/pa/pa.po                                |  486 ++
 help/clock/pt/pt.po                                |  547 ++
 help/clock/pt_BR/pt_BR.po                          |  545 ++
 help/clock/ru/ru.po                                |  427 ++
 help/clock/sr/figures/clock_applet.png             |  Bin 0 -> 1058 bytes
 help/clock/sr/sr.po                                |  539 ++
 help/clock/sv/figures/clock_applet.png             |  Bin 0 -> 399 bytes
 help/clock/sv/sv.po                                |  394 +
 help/clock/th/figures/clock_applet.png             |  Bin 0 -> 1235 bytes
 help/clock/th/th.po                                |  414 +
 help/clock/uk/figures/clock_applet.png             |  Bin 0 -> 1923 bytes
 help/clock/uk/uk.po                                |  538 ++
 help/clock/zh_CN/figures/clock_applet.png          |  Bin 0 -> 1444 bytes
 help/clock/zh_CN/zh_CN.po                          |  676 ++
 help/clock/zh_HK/zh_HK.po                          |  659 ++
 help/clock/zh_TW/figures/clock_applet.png          |  Bin 0 -> 429 bytes
 help/clock/zh_TW/zh_TW.po                          |  702 ++
 help/fish/C/figures/fish_applet.png                |  Bin 0 -> 5818 bytes
 help/fish/C/legal.xml                              |   76 +
 help/fish/C/mate-applet-fish.xml                   |  265 +
 help/fish/Makefile.am                              |    9 +
 help/fish/Makefile.in                              | 1030 +++
 help/fish/ca/ca.po                                 |  269 +
 help/fish/cs/cs.po                                 |  453 ++
 help/fish/de/de.po                                 |  463 ++
 help/fish/el/el.po                                 |  364 +
 help/fish/en_GB/en_GB.po                           |  409 +
 help/fish/es/es.po                                 |  464 ++
 help/fish/eu/eu.po                                 |  271 +
 help/fish/fi/fi.po                                 |  316 +
 help/fish/fr/fr.po                                 |  446 ++
 help/fish/it/it.po                                 |  457 ++
 help/fish/ja/ja.po                                 |  433 ++
 help/fish/ko/figures/fish_applet.png               |  Bin 0 -> 5818 bytes
 help/fish/ko/ko.po                                 |  396 +
 help/fish/mate-applet-fish.omf.in                  |   11 +
 help/fish/oc/oc.po                                 |  348 +
 help/fish/ru/ru.po                                 |  405 +
 help/fish/sv/sv.po                                 |  284 +
 help/fish/th/th.po                                 |  394 +
 help/fish/uk/figures/fish_applet.png               |  Bin 0 -> 5818 bytes
 help/fish/uk/uk.po                                 |  405 +
 help/fish/zh_CN/zh_CN.po                           |  421 ++
 icons/16x16/Makefile.am                            |   48 +
 icons/16x16/Makefile.in                            |  564 ++
 icons/16x16/mate-panel-clock.png                   |  Bin 0 -> 887 bytes
 icons/16x16/mate-panel-clock.xcf.bz2               |  Bin 0 -> 1399 bytes
 icons/16x16/mate-panel-drawer.png                  |  Bin 0 -> 444 bytes
 icons/16x16/mate-panel-drawer.svg                  |  297 +
 icons/16x16/mate-panel-fish.png                    |  Bin 0 -> 740 bytes
 icons/16x16/mate-panel-fish.xcf.bz2                |  Bin 0 -> 1450 bytes
 icons/16x16/mate-panel-force-quit.png              |  Bin 0 -> 711 bytes
 icons/16x16/mate-panel-force-quit.svg              |  144 +
 icons/16x16/mate-panel-launcher.png                |  Bin 0 -> 571 bytes
 icons/16x16/mate-panel-launcher.svg                |  488 ++
 icons/16x16/mate-panel-notification-area.png       |  Bin 0 -> 812 bytes
 icons/16x16/mate-panel-notification-area.svg       |  285 +
 icons/16x16/mate-panel-separator.png               |  Bin 0 -> 160 bytes
 icons/16x16/mate-panel-separator.svg               |  105 +
 icons/16x16/mate-panel-window-list.png             |  Bin 0 -> 390 bytes
 icons/16x16/mate-panel-window-list.xcf.bz2         |  Bin 0 -> 657 bytes
 icons/16x16/mate-panel-window-menu.png             |  Bin 0 -> 545 bytes
 icons/16x16/mate-panel-window-menu.xcf.bz2         |  Bin 0 -> 900 bytes
 icons/16x16/mate-panel-workspace-switcher.png      |  Bin 0 -> 400 bytes
 icons/16x16/mate-panel-workspace-switcher.svg      |  186 +
 icons/16x16/mate-panel.png                         |  Bin 0 -> 354 bytes
 icons/16x16/mate-panel.svg                         |  231 +
 icons/22x22/Makefile.am                            |   48 +
 icons/22x22/Makefile.in                            |  564 ++
 icons/22x22/mate-panel-clock.png                   |  Bin 0 -> 1459 bytes
 icons/22x22/mate-panel-clock.svg                   |  268 +
 icons/22x22/mate-panel-drawer.png                  |  Bin 0 -> 718 bytes
 icons/22x22/mate-panel-drawer.svg                  |  352 +
 icons/22x22/mate-panel-fish.png                    |  Bin 0 -> 1461 bytes
 icons/22x22/mate-panel-fish.xcf.bz2                |  Bin 0 -> 2617 bytes
 icons/22x22/mate-panel-force-quit.png              |  Bin 0 -> 1018 bytes
 icons/22x22/mate-panel-force-quit.xcf.bz2          |  Bin 0 -> 1598 bytes
 icons/22x22/mate-panel-launcher.png                |  Bin 0 -> 955 bytes
 icons/22x22/mate-panel-launcher.svg                |  788 ++
 icons/22x22/mate-panel-notification-area.png       |  Bin 0 -> 1267 bytes
 icons/22x22/mate-panel-notification-area.svg       |  292 +
 icons/22x22/mate-panel-separator.png               |  Bin 0 -> 165 bytes
 icons/22x22/mate-panel-separator.svg               |  105 +
 icons/22x22/mate-panel-window-list.png             |  Bin 0 -> 609 bytes
 icons/22x22/mate-panel-window-list.xcf.bz2         |  Bin 0 -> 1174 bytes
 icons/22x22/mate-panel-window-menu.png             |  Bin 0 -> 701 bytes
 icons/22x22/mate-panel-window-menu.xcf.bz2         |  Bin 0 -> 1485 bytes
 icons/22x22/mate-panel-workspace-switcher.png      |  Bin 0 -> 537 bytes
 icons/22x22/mate-panel-workspace-switcher.svg      |  186 +
 icons/22x22/mate-panel.png                         |  Bin 0 -> 394 bytes
 icons/22x22/mate-panel.svg                         |  230 +
 icons/24x24/Makefile.am                            |   34 +
 icons/24x24/Makefile.in                            |  550 ++
 icons/24x24/mate-panel-clock.png                   |  Bin 0 -> 1510 bytes
 icons/24x24/mate-panel-drawer.png                  |  Bin 0 -> 715 bytes
 icons/24x24/mate-panel-fish.png                    |  Bin 0 -> 1475 bytes
 icons/24x24/mate-panel-force-quit.png              |  Bin 0 -> 1045 bytes
 icons/24x24/mate-panel-launcher.png                |  Bin 0 -> 1023 bytes
 icons/24x24/mate-panel-notification-area.png       |  Bin 0 -> 1318 bytes
 icons/24x24/mate-panel-separator.png               |  Bin 0 -> 191 bytes
 icons/24x24/mate-panel-window-list.png             |  Bin 0 -> 649 bytes
 icons/24x24/mate-panel-window-menu.png             |  Bin 0 -> 733 bytes
 icons/24x24/mate-panel-workspace-switcher.png      |  Bin 0 -> 560 bytes
 icons/24x24/mate-panel.png                         |  Bin 0 -> 430 bytes
 icons/32x32/Makefile.am                            |   48 +
 icons/32x32/Makefile.in                            |  564 ++
 icons/32x32/mate-panel-clock.png                   |  Bin 0 -> 2177 bytes
 icons/32x32/mate-panel-clock.svg                   |  291 +
 icons/32x32/mate-panel-drawer.png                  |  Bin 0 -> 865 bytes
 icons/32x32/mate-panel-drawer.svg                  |  486 ++
 icons/32x32/mate-panel-fish.png                    |  Bin 0 -> 1785 bytes
 icons/32x32/mate-panel-fish.svg                    |  656 ++
 icons/32x32/mate-panel-force-quit.png              |  Bin 0 -> 1588 bytes
 icons/32x32/mate-panel-force-quit.svg              |  362 +
 icons/32x32/mate-panel-launcher.png                |  Bin 0 -> 1777 bytes
 icons/32x32/mate-panel-launcher.svg                |  710 ++
 icons/32x32/mate-panel-notification-area.png       |  Bin 0 -> 1712 bytes
 icons/32x32/mate-panel-notification-area.svg       |  291 +
 icons/32x32/mate-panel-separator.png               |  Bin 0 -> 176 bytes
 icons/32x32/mate-panel-separator.svg               |  105 +
 icons/32x32/mate-panel-window-list.png             |  Bin 0 -> 723 bytes
 icons/32x32/mate-panel-window-list.svg             |  170 +
 icons/32x32/mate-panel-window-menu.png             |  Bin 0 -> 830 bytes
 icons/32x32/mate-panel-window-menu.svg             |  368 +
 icons/32x32/mate-panel-workspace-switcher.png      |  Bin 0 -> 706 bytes
 icons/32x32/mate-panel-workspace-switcher.svg      |  452 ++
 icons/32x32/mate-panel.png                         |  Bin 0 -> 1070 bytes
 icons/32x32/mate-panel.svg                         |  202 +
 icons/48x48/Makefile.am                            |   28 +
 icons/48x48/Makefile.in                            |  544 ++
 icons/48x48/mate-panel.png                         |  Bin 0 -> 1523 bytes
 icons/48x48/mate-panel.svg                         |  274 +
 icons/Makefile.am                                  |   10 +
 icons/Makefile.in                                  |  725 ++
 icons/mate-gegl2-2.png                             |  Bin 0 -> 10394 bytes
 icons/mate-gegl2.png                               |  Bin 0 -> 8359 bytes
 icons/scalable/Makefile.am                         |   34 +
 icons/scalable/Makefile.in                         |  550 ++
 icons/scalable/mate-panel-clock.svg                |  450 ++
 icons/scalable/mate-panel-drawer.svg               |  819 ++
 icons/scalable/mate-panel-fish.svg                 |  658 ++
 icons/scalable/mate-panel-force-quit.svg           |  347 +
 icons/scalable/mate-panel-launcher.svg             |  724 ++
 icons/scalable/mate-panel-notification-area.svg    |  289 +
 icons/scalable/mate-panel-separator.svg            |  105 +
 icons/scalable/mate-panel-window-list.svg          |  324 +
 icons/scalable/mate-panel-window-menu.svg          |  371 +
 icons/scalable/mate-panel-workspace-switcher.svg   |  361 +
 icons/scalable/mate-panel.svg                      |  274 +
 libmate-panel-applet/Makefile.am                   |  143 +
 libmate-panel-applet/Makefile.in                   |  921 +++
 libmate-panel-applet/TODO                          |   14 +
 .../libmatepanelapplet-3.0-uninstalled.pc.in       |   11 +
 libmate-panel-applet/libmatepanelapplet-3.0.pc.in  |   11 +
 libmate-panel-applet/mate-panel-applet-factory.c   |  263 +
 libmate-panel-applet/mate-panel-applet-factory.h   |   57 +
 .../mate-panel-applet-marshal.list                 |    5 +
 libmate-panel-applet/mate-panel-applet-mateconf.c  |  457 ++
 libmate-panel-applet/mate-panel-applet-mateconf.h  |   90 +
 libmate-panel-applet/mate-panel-applet.c           | 2315 ++++++
 libmate-panel-applet/mate-panel-applet.h           |  184 +
 .../org.mate.panel.TestApplet.mate-panel-applet.in |   10 +
 libmate-panel-applet/test-dbus-applet.c            |  211 +
 m4/d-type.m4                                       |   49 +
 man/Makefile.am                                    |    5 +
 man/Makefile.in                                    |  553 ++
 man/mate-panel.1                                   |   27 +
 mate-panel/Makefile.am                             |  290 +
 mate-panel/Makefile.in                             | 2222 ++++++
 mate-panel/applet.c                                | 1449 ++++
 mate-panel/applet.h                                |  119 +
 mate-panel/button-widget.c                         |  902 +++
 mate-panel/button-widget.h                         |   60 +
 mate-panel/drawer.c                                |  806 ++
 mate-panel/drawer.h                                |   52 +
 mate-panel/launcher.c                              | 1114 +++
 mate-panel/launcher.h                              |   80 +
 mate-panel/libegg/Makefile.am                      |   25 +
 mate-panel/libegg/Makefile.in                      |  622 ++
 mate-panel/libegg/eggdesktopfile.c                 | 1510 ++++
 mate-panel/libegg/eggdesktopfile.h                 |  164 +
 mate-panel/libegg/eggsmclient-private.h            |   57 +
 mate-panel/libegg/eggsmclient-xsmp.c               | 1370 ++++
 mate-panel/libegg/eggsmclient.c                    |  604 ++
 mate-panel/libegg/eggsmclient.h                    |  121 +
 .../libmate-panel-applet-private/Makefile.am       |   34 +
 .../libmate-panel-applet-private/Makefile.in       |  644 ++
 .../mate-panel-applet-container.c                  |  790 ++
 .../mate-panel-applet-container.h                  |  118 +
 .../mate-panel-applet-frame-dbus.c                 |  468 ++
 .../mate-panel-applet-frame-dbus.h                 |   65 +
 .../mate-panel-applet-mini.c                       |    5 +
 .../mate-panel-applets-manager-dbus.c              |  604 ++
 .../mate-panel-applets-manager-dbus.h              |   60 +
 mate-panel/libpanel-util/Makefile.am               |   39 +
 mate-panel/libpanel-util/Makefile.in               |  647 ++
 mate-panel/libpanel-util/panel-cleanup.c           |  110 +
 mate-panel/libpanel-util/panel-cleanup.h           |   51 +
 mate-panel/libpanel-util/panel-dbus-service.c      |  307 +
 mate-panel/libpanel-util/panel-dbus-service.h      |   78 +
 mate-panel/libpanel-util/panel-error.c             |   96 +
 mate-panel/libpanel-util/panel-error.h             |   49 +
 mate-panel/libpanel-util/panel-glib.c              |  164 +
 mate-panel/libpanel-util/panel-glib.h              |   46 +
 mate-panel/libpanel-util/panel-gtk.c               |   83 +
 mate-panel/libpanel-util/panel-gtk.h               |   42 +
 mate-panel/libpanel-util/panel-icon-chooser.c      |  555 ++
 mate-panel/libpanel-util/panel-icon-chooser.h      |   79 +
 mate-panel/libpanel-util/panel-keyfile.c           |  363 +
 mate-panel/libpanel-util/panel-keyfile.h           |   79 +
 mate-panel/libpanel-util/panel-launch.c            |  234 +
 mate-panel/libpanel-util/panel-launch.h            |   65 +
 mate-panel/libpanel-util/panel-list.c              |  212 +
 mate-panel/libpanel-util/panel-list.h              |   56 +
 mate-panel/libpanel-util/panel-session-manager.c   |  192 +
 mate-panel/libpanel-util/panel-session-manager.h   |   75 +
 mate-panel/libpanel-util/panel-show.c              |  283 +
 mate-panel/libpanel-util/panel-show.h              |   54 +
 mate-panel/libpanel-util/panel-xdg.c               |  152 +
 mate-panel/libpanel-util/panel-xdg.h               |   43 +
 mate-panel/main.c                                  |  153 +
 mate-panel/mate-desktop-item-edit.c                |  225 +
 mate-panel/mate-panel-add.in                       |  325 +
 mate-panel/mate-panel-applet-frame.c               | 1002 +++
 mate-panel/mate-panel-applet-frame.h               |  146 +
 mate-panel/mate-panel-applet-info.c                |  113 +
 mate-panel/mate-panel-applet-info.h                |   51 +
 mate-panel/mate-panel-applets-manager.c            |  201 +
 mate-panel/mate-panel-applets-manager.h            |   94 +
 mate-panel/mate-panel.desktop.in.in                |   19 +
 mate-panel/mate-panelrc                            |    4 +
 mate-panel/menu.c                                  | 1914 +++++
 mate-panel/menu.h                                  |   80 +
 mate-panel/nothing.cP                              | 1568 ++++
 mate-panel/nothing.h                               |   22 +
 mate-panel/panel-a11y.c                            |  135 +
 mate-panel/panel-a11y.h                            |   43 +
 mate-panel/panel-action-button.c                   |  907 +++
 mate-panel/panel-action-button.h                   |  103 +
 mate-panel/panel-action-protocol.c                 |  158 +
 mate-panel/panel-action-protocol.h                 |   40 +
 mate-panel/panel-addto.c                           | 1428 ++++
 mate-panel/panel-addto.h                           |   39 +
 mate-panel/panel-background-monitor.c              |  440 ++
 mate-panel/panel-background-monitor.h              |   60 +
 mate-panel/panel-background.c                      | 1156 +++
 mate-panel/panel-background.h                      |  133 +
 mate-panel/panel-bindings.c                        |  303 +
 mate-panel/panel-bindings.h                        |   42 +
 mate-panel/panel-compatibility.c                   | 1167 +++
 mate-panel/panel-compatibility.h                   |   48 +
 mate-panel/panel-compatibility.schemas             |  546 ++
 mate-panel/panel-config-global.c                   |  153 +
 mate-panel/panel-config-global.h                   |   47 +
 mate-panel/panel-context-menu.c                    |  307 +
 mate-panel/panel-context-menu.h                    |   33 +
 mate-panel/panel-default-setup.entries             |  657 ++
 mate-panel/panel-ditem-editor.c                    | 1804 +++++
 mate-panel/panel-ditem-editor.h                    |  115 +
 mate-panel/panel-enums.h                           |  110 +
 mate-panel/panel-force-quit.c                      |  316 +
 mate-panel/panel-force-quit.h                      |   41 +
 mate-panel/panel-frame.c                           |  328 +
 mate-panel/panel-frame.h                           |   69 +
 mate-panel/panel-general.schemas.in                |  127 +
 mate-panel/panel-global.schemas.in                 |  276 +
 mate-panel/panel-globals.h                         |   41 +
 mate-panel/panel-icon-names.h                      |   40 +
 mate-panel/panel-lockdown.c                        |  442 ++
 mate-panel/panel-lockdown.h                        |   55 +
 mate-panel/panel-marshal.list                      |    3 +
 mate-panel/panel-mateconf.c                        |  351 +
 mate-panel/panel-mateconf.h                        |   76 +
 mate-panel/panel-menu-bar.c                        |  474 ++
 mate-panel/panel-menu-bar.h                        |   83 +
 mate-panel/panel-menu-button.c                     | 1194 +++
 mate-panel/panel-menu-button.h                     |   98 +
 mate-panel/panel-menu-items.c                      | 1618 ++++
 mate-panel/panel-menu-items.h                      |   99 +
 mate-panel/panel-modules.c                         |   86 +
 mate-panel/panel-modules.h                         |   30 +
 mate-panel/panel-multiscreen.c                     |  784 ++
 mate-panel/panel-multiscreen.h                     |   58 +
 mate-panel/panel-object.schemas.in                 |  247 +
 mate-panel/panel-profile.c                         | 2647 +++++++
 mate-panel/panel-profile.h                         |  188 +
 mate-panel/panel-properties-dialog.c               |  999 +++
 mate-panel/panel-properties-dialog.h               |   40 +
 mate-panel/panel-properties-dialog.ui              |  769 ++
 mate-panel/panel-recent.c                          |  243 +
 mate-panel/panel-recent.h                          |   41 +
 mate-panel/panel-reset.c                           |   46 +
 mate-panel/panel-reset.h                           |   37 +
 mate-panel/panel-run-dialog.c                      | 2041 +++++
 mate-panel/panel-run-dialog.h                      |   41 +
 mate-panel/panel-run-dialog.ui                     |  270 +
 mate-panel/panel-separator.c                       |  250 +
 mate-panel/panel-separator.h                       |   71 +
 mate-panel/panel-session.c                         |   80 +
 mate-panel/panel-session.h                         |   39 +
 mate-panel/panel-shell.c                           |  164 +
 mate-panel/panel-shell.h                           |   37 +
 mate-panel/panel-stock-icons.c                     |  141 +
 mate-panel/panel-stock-icons.h                     |   60 +
 mate-panel/panel-struts.c                          |  516 ++
 mate-panel/panel-struts.h                          |   56 +
 mate-panel/panel-test-applets.c                    |  388 +
 mate-panel/panel-test-applets.ui                   |  203 +
 mate-panel/panel-toplevel.c                        | 5298 +++++++++++++
 mate-panel/panel-toplevel.h                        |  179 +
 mate-panel/panel-toplevel.schemas.in               |  434 ++
 mate-panel/panel-types.h                           |   19 +
 mate-panel/panel-util.c                            | 1210 +++
 mate-panel/panel-util.h                            |   72 +
 mate-panel/panel-widget.c                          | 3010 ++++++++
 mate-panel/panel-widget.h                          |  242 +
 mate-panel/panel-xutils.c                          |  258 +
 mate-panel/panel-xutils.h                          |   64 +
 mate-panel/panel.c                                 | 1403 ++++
 mate-panel/panel.h                                 |   57 +
 mate-panel/xstuff.c                                |  736 ++
 mate-panel/xstuff.h                                |   39 +
 matecomponent/Makefile.am                          |    3 +
 matecomponent/Makefile.in                          |  672 ++
 matecomponent/idl/MATE_Panel.idl                   |   51 +
 matecomponent/idl/Makefile.am                      |    6 +
 matecomponent/idl/Makefile.in                      |  520 ++
 .../MATE_Panel_TestApplet.server.in                |   31 +
 matecomponent/libmate-panel-applet/Makefile.am     |  129 +
 matecomponent/libmate-panel-applet/Makefile.in     |  952 +++
 matecomponent/libmate-panel-applet/TODO            |   14 +
 .../libmatepanelapplet-2.0-uninstalled.pc.in       |   11 +
 .../libmatepanelapplet-2.0.pc.in                   |   11 +
 .../mate-panel-applet-marshal.list                 |    5 +
 .../mate-panel-applet-mateconf.c                   |  458 ++
 .../mate-panel-applet-mateconf.h                   |   90 +
 .../mate-panel-applet-private.h                    |   40 +
 .../libmate-panel-applet/mate-panel-applet-shell.c |  105 +
 .../libmate-panel-applet/mate-panel-applet-shell.h |   62 +
 .../libmate-panel-applet/mate-panel-applet.c       | 1879 +++++
 .../libmate-panel-applet/mate-panel-applet.h       |  258 +
 .../panel-test-applets-matecomponent.c             |  349 +
 .../panel-test-applets-matecomponent.ui            |  203 +
 .../test-matecomponent-applet.c                    |  204 +
 matecomponent/panel-module/MATE_Panel_Popup.xml    |   20 +
 matecomponent/panel-module/Makefile.am             |   51 +
 matecomponent/panel-module/Makefile.in             |  786 ++
 .../mate-panel-applet-frame-matecomponent.c        |  759 ++
 .../mate-panel-applet-frame-matecomponent.h        |   65 +
 .../mate-panel-applets-manager-matecomponent.c     |  250 +
 .../mate-panel-applets-manager-matecomponent.h     |   59 +
 .../mate-panel-applets-matecomponent-module.c      |   48 +
 po/LINGUAS                                         |  109 +
 po/Makefile.in.in                                  |  217 +
 po/POTFILES.in                                     |   80 +
 po/POTFILES.skip                                   |    7 +
 po/af.po                                           | 4154 ++++++++++
 po/am.po                                           | 3084 ++++++++
 po/ar.po                                           | 3411 +++++++++
 po/as.po                                           | 3490 +++++++++
 po/ast.po                                          | 3438 +++++++++
 po/az.po                                           | 2979 ++++++++
 po/be.po                                           | 3606 +++++++++
 po/be@latin.po                                     | 3531 +++++++++
 po/bg.po                                           | 3289 ++++++++
 po/bn.po                                           | 3320 ++++++++
 po/bn_IN.po                                        | 3264 ++++++++
 po/br.po                                           | 2963 ++++++++
 po/bs.po                                           | 3005 ++++++++
 po/ca.po                                           | 7962 ++++++++++++++++++++
 po/ca@valencia.po                                  | 7944 +++++++++++++++++++
 po/crh.po                                          | 3443 +++++++++
 po/cs.po                                           | 3268 ++++++++
 po/cy.po                                           | 3750 +++++++++
 po/da.po                                           | 5305 +++++++++++++
 po/de.po                                           | 3527 +++++++++
 po/dz.po                                           | 3076 ++++++++
 po/el.po                                           | 3503 +++++++++
 po/en@shaw.po                                      | 3277 ++++++++
 po/en_CA.po                                        | 2854 +++++++
 po/en_GB.po                                        | 3746 +++++++++
 po/eo.po                                           | 3443 +++++++++
 po/es.po                                           | 3605 +++++++++
 po/et.po                                           | 2644 +++++++
 po/eu.po                                           | 3332 ++++++++
 po/fa.po                                           | 3805 ++++++++++
 po/fi.po                                           | 3897 ++++++++++
 po/fr.po                                           | 3365 +++++++++
 po/fur.po                                          | 3385 +++++++++
 po/fy.po                                           | 3059 ++++++++
 po/ga.po                                           | 3054 ++++++++
 po/gl.po                                           | 3340 ++++++++
 po/gu.po                                           | 3246 ++++++++
 po/gv.po                                           | 3395 +++++++++
 po/ha.po                                           | 3544 +++++++++
 po/he.po                                           | 3434 +++++++++
 po/hi.po                                           | 3244 ++++++++
 po/hr.po                                           | 3335 ++++++++
 po/hu.po                                           | 3293 ++++++++
 po/hy.po                                           | 3231 ++++++++
 po/id.po                                           | 3300 ++++++++
 po/ig.po                                           | 3493 +++++++++
 po/is.po                                           | 3332 ++++++++
 po/it.po                                           | 3447 +++++++++
 po/ja.po                                           | 3346 ++++++++
 po/ka.po                                           | 3422 +++++++++
 po/kk.po                                           | 2809 +++++++
 po/kn.po                                           | 3327 ++++++++
 po/ko.po                                           | 3221 ++++++++
 po/ku.po                                           | 2996 ++++++++
 po/ky.po                                           | 2624 +++++++
 po/la.po                                           | 3014 ++++++++
 po/li.po                                           | 4056 ++++++++++
 po/lt.po                                           | 3382 +++++++++
 po/lv.po                                           | 3442 +++++++++
 po/mai.po                                          | 3162 ++++++++
 po/mg.po                                           | 3826 ++++++++++
 po/mi.po                                           | 2506 ++++++
 po/mk.po                                           | 3358 +++++++++
 po/ml.po                                           | 3276 ++++++++
 po/mn.po                                           | 2852 +++++++
 po/mr.po                                           | 3220 ++++++++
 po/ms.po                                           | 3851 ++++++++++
 po/nb.po                                           | 3278 ++++++++
 po/nds.po                                          | 2993 ++++++++
 po/ne.po                                           | 3024 ++++++++
 po/nl.po                                           | 3705 +++++++++
 po/nn.po                                           | 3691 +++++++++
 po/nso.po                                          | 3125 ++++++++
 po/oc.po                                           | 3165 ++++++++
 po/or.po                                           | 3225 ++++++++
 po/pa.po                                           | 3322 ++++++++
 po/pl.po                                           | 3281 ++++++++
 po/ps.po                                           | 3148 ++++++++
 po/pt.po                                           | 4359 +++++++++++
 po/pt_BR.po                                        | 3651 +++++++++
 po/ro.po                                           | 3384 +++++++++
 po/ru.po                                           | 2852 +++++++
 po/rw.po                                           | 3037 ++++++++
 po/si.po                                           | 2717 +++++++
 po/sk.po                                           | 3641 +++++++++
 po/sl.po                                           | 2859 +++++++
 po/sq.po                                           | 3289 ++++++++
 po/sr.po                                           | 4134 ++++++++++
 po/sr@ije.po                                       | 3331 ++++++++
 po/sr@latin.po                                     | 4134 ++++++++++
 po/sv.po                                           | 2906 +++++++
 po/ta.po                                           | 3583 +++++++++
 po/te.po                                           | 3292 ++++++++
 po/th.po                                           | 4245 +++++++++++
 po/tr.po                                           | 3505 +++++++++
 po/ug.po                                           | 3408 +++++++++
 po/uk.po                                           | 3327 ++++++++
 po/uz.po                                           | 2948 ++++++++
 po/uz@cyrillic.po                                  | 2948 ++++++++
 po/vi.po                                           | 2818 +++++++
 po/wa.po                                           | 3731 +++++++++
 po/xh.po                                           | 2834 +++++++
 po/yi.po                                           | 2700 +++++++
 po/yo.po                                           | 3496 +++++++++
 po/zh_CN.po                                        | 3356 +++++++++
 po/zh_HK.po                                        | 3353 +++++++++
 po/zh_TW.po                                        | 3483 +++++++++
 po/zu.po                                           | 3033 ++++++++
 657 files changed, 536681 insertions(+)
