commit 6043b2a4b2e34e09b7ad85d9e85619759875e717
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 21 12:55:21 2019 +0200

    release 1.22.1

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

commit 85f564ef97bbad3c64f16743403fd46e69488cc7
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 21 12:51:43 2019 +0200

    tx: sync with transifex

 po/LINGUAS        |   1 +
 po/af.po          |   6 +-
 po/am.po          |   8 +--
 po/ar.po          |  14 ++---
 po/as.po          |   6 +-
 po/ast.po         |  11 ++--
 po/az.po          |   6 +-
 po/be.po          |   6 +-
 po/bg.po          |  12 ++--
 po/bn.po          |   6 +-
 po/bn_IN.po       |   6 +-
 po/br.po          |   8 +--
 po/bs.po          |   6 +-
 po/ca.po          |   8 +--
 po/ca@valencia.po |   8 +--
 po/cmn.po         |   6 +-
 po/crh.po         |   6 +-
 po/cs.po          |  14 ++---
 po/cy.po          |   6 +-
 po/da.po          |   8 +--
 po/de.po          |  12 ++--
 po/dz.po          |   6 +-
 po/el.po          |  18 +++---
 po/en_AU.po       |   6 +-
 po/en_CA.po       |   6 +-
 po/en_GB.po       |   8 +--
 po/eo.po          |   6 +-
 po/es.po          |  31 ++++-----
 po/es_AR.po       |   8 +--
 po/es_CL.po       |  10 +--
 po/es_CO.po       |   8 +--
 po/es_MX.po       |   6 +-
 po/et.po          |  10 +--
 po/eu.po          |   8 +--
 po/fa.po          |   6 +-
 po/fi.po          |  15 ++---
 po/fr.po          |  14 ++---
 po/fr_CA.po       |   6 +-
 po/frp.po         |   6 +-
 po/ga.po          |   6 +-
 po/gl.po          |   8 +--
 po/gu.po          |   6 +-
 po/ha.po          |   6 +-
 po/he.po          |  10 +--
 po/hi.po          |   6 +-
 po/hr.po          |   8 +--
 po/hu.po          |  10 +--
 po/hy.po          |   8 +--
 po/id.po          |  16 ++---
 po/ie.po          | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ig.po          |   6 +-
 po/is.po          |   6 +-
 po/it.po          |  14 ++---
 po/ja.po          |  10 +--
 po/ka.po          |   6 +-
 po/kab.po         |   8 +--
 po/kk.po          |   6 +-
 po/kn.po          |   8 +--
 po/ko.po          |   8 +--
 po/ku.po          |   6 +-
 po/ku_IQ.po       |   6 +-
 po/ky.po          |   6 +-
 po/lt.po          |  12 ++--
 po/lv.po          |   8 +--
 po/mai.po         |   6 +-
 po/mg.po          |   6 +-
 po/mk.po          |   6 +-
 po/ml.po          |   6 +-
 po/mn.po          |   6 +-
 po/mr.po          |   6 +-
 po/ms.po          |   8 +--
 po/nb.po          |  10 +--
 po/nds.po         |   4 +-
 po/ne.po          |   6 +-
 po/nl.po          |   8 +--
 po/nn.po          |   6 +-
 po/oc.po          |  10 +--
 po/or.po          |   6 +-
 po/pa.po          |   6 +-
 po/pl.po          |  16 ++---
 po/ps.po          |   6 +-
 po/pt.po          |  12 ++--
 po/pt_BR.po       |  16 ++---
 po/ro.po          |  10 +--
 po/ru.po          |  12 ++--
 po/sc.po          |   6 +-
 po/si.po          |   6 +-
 po/sk.po          |  10 +--
 po/sl.po          |  16 ++---
 po/sq.po          |  12 ++--
 po/sr.po          |   8 +--
 po/sr@latin.po    |   8 +--
 po/sv.po          |  20 +++---
 po/ta.po          |   6 +-
 po/te.po          |   8 +--
 po/th.po          |   8 +--
 po/tr.po          |  12 ++--
 po/ug.po          |   6 +-
 po/uk.po          |  14 ++---
 po/ur.po          |   6 +-
 po/uz.po          |   8 +--
 po/vi.po          |   8 +--
 po/wa.po          |   6 +-
 po/xh.po          |   6 +-
 po/yo.po          |   6 +-
 po/zh_CN.po       |  14 ++---
 po/zh_HK.po       |   6 +-
 po/zh_TW.po       |   8 +--
 108 files changed, 643 insertions(+), 456 deletions(-)

commit 8f539a1bc8c3c82c8b2f8045a186d7435272fb37
Author: Kyle Brenneman <kyle.brenneman@gmail.com>
Date:   Tue Sep 3 20:56:50 2019 -0600

    Fix decoding the hints dictionary.
    
    g_variant_lookup works like g_variant_get, so using a format string of "v" only
    works if the type is actually a GVariant. Since none of the hints have GVariant
    values, that means every g_variant_get with a "v" format will fail.
    
    Fix all of the g_variant_lookup calls so that they either unpack a value
    directly, or use a "@" prefix when it's more convenient to fetch the value as
    a GVariant pointer.
    
    In addition, in cases where we do fetch a GVariant, make sure that we
    unreference it afterward.

 src/daemon/daemon.c              | 63 +++++++++++++++++-----------------------
 src/themes/coco/coco-theme.c     | 14 ++++-----
 src/themes/nodoka/nodoka-theme.c | 14 ++++-----
 src/themes/slider/theme.c        | 14 ++++-----
 src/themes/standard/theme.c      | 14 ++++-----
 5 files changed, 50 insertions(+), 69 deletions(-)

commit 90ab372e69abc272b72ef73a89cadaff30bb0332
Author: raveit65 <mate@raveit.de>
Date:   Tue May 28 11:10:12 2019 +0200

    travis: use fedora-30 and ubuntu-19.04 for building

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

commit 62180bb1ba6882e9879b37fbf9621df7146205d4
Author: raveit65 <mate@raveit.de>
Date:   Mon Apr 1 18:18:48 2019 +0200

    github release page for stable branch

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

commit 5ac414ad633671d7360fc0f82e1ff63786d3ede2
Author: raveit65 <mate@raveit.de>
Date:   Thu Mar 14 17:10:11 2019 +0100

    tx: update transifex config

 .tx/config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 64349db3442376c2d35318011374ebfd2e4b2751
Author: raveit65 <mate@raveit.de>
Date:   Sat Feb 23 17:01:38 2019 +0100

    release 1.22.0

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

commit ad86f3d08d665def892feb2a09636788cba19933
Author: raveit65 <mate@raveit.de>
Date:   Sat Feb 23 16:58:41 2019 +0100

    tx: sync with transifex

 po/LINGUAS        |   1 +
 po/af.po          |  11 ++--
 po/am.po          |  11 ++--
 po/ar.po          |  15 +++--
 po/as.po          |  11 ++--
 po/ast.po         |  12 ++--
 po/az.po          |  11 ++--
 po/be.po          |  11 ++--
 po/bg.po          |  14 +++--
 po/bn.po          |  11 ++--
 po/bn_IN.po       |  11 ++--
 po/br.po          |  12 ++--
 po/bs.po          |  11 ++--
 po/ca.po          |  12 ++--
 po/ca@valencia.po |  11 ++--
 po/cmn.po         |  11 ++--
 po/crh.po         |  11 ++--
 po/cs.po          |  15 +++--
 po/cy.po          |  11 ++--
 po/da.po          |  12 ++--
 po/de.po          |  14 +++--
 po/dz.po          |  11 ++--
 po/el.po          |  19 ++++--
 po/en_AU.po       |  11 ++--
 po/en_CA.po       |  11 ++--
 po/en_GB.po       |  12 ++--
 po/eo.po          |  11 ++--
 po/es.po          |  16 +++--
 po/es_AR.po       |  80 +++++++++++++-----------
 po/es_CL.po       |  17 +++--
 po/es_CO.po       |  12 ++--
 po/es_MX.po       |  11 ++--
 po/et.po          |  13 ++--
 po/eu.po          |  12 ++--
 po/fa.po          |  11 ++--
 po/fi.po          |  12 ++--
 po/fr.po          |  15 +++--
 po/fr_CA.po       |  11 ++--
 po/frp.po         |  11 ++--
 po/ga.po          |  11 ++--
 po/gl.po          |  16 +++--
 po/gu.po          |  11 ++--
 po/ha.po          |  11 ++--
 po/he.po          |  13 ++--
 po/hi.po          |  11 ++--
 po/hr.po          |  14 +++--
 po/hu.po          |  13 ++--
 po/hy.po          |  12 ++--
 po/id.po          |  16 +++--
 po/ig.po          |  11 ++--
 po/is.po          |  11 ++--
 po/it.po          |  15 +++--
 po/ja.po          |  13 ++--
 po/ka.po          |  11 ++--
 po/kab.po         | 183 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/kk.po          |  11 ++--
 po/kn.po          |  12 ++--
 po/ko.po          |  12 ++--
 po/ku.po          |  11 ++--
 po/ku_IQ.po       |  11 ++--
 po/ky.po          |  11 ++--
 po/lt.po          |  14 +++--
 po/lv.po          |  12 ++--
 po/mai.po         |  11 ++--
 po/mg.po          |  11 ++--
 po/mk.po          |  11 ++--
 po/ml.po          |  11 ++--
 po/mn.po          |  11 ++--
 po/mr.po          |  11 ++--
 po/ms.po          |  12 ++--
 po/nb.po          |  13 ++--
 po/nds.po         |  84 +++++++++++++------------
 po/ne.po          |  11 ++--
 po/nl.po          |  12 ++--
 po/nn.po          |  11 ++--
 po/oc.po          |  13 ++--
 po/or.po          |  11 ++--
 po/pa.po          |  11 ++--
 po/pl.po          |  16 +++--
 po/ps.po          |  11 ++--
 po/pt.po          |  18 ++++--
 po/pt_BR.po       |  16 +++--
 po/ro.po          |  13 ++--
 po/ru.po          |  14 +++--
 po/sc.po          |  11 ++--
 po/si.po          |  11 ++--
 po/sk.po          |  13 ++--
 po/sl.po          |  15 +++--
 po/sq.po          |  12 ++--
 po/sr.po          |  12 ++--
 po/sr@latin.po    |  11 ++--
 po/sv.po          |  18 ++++--
 po/ta.po          |  11 ++--
 po/te.po          |  12 ++--
 po/th.po          |  12 ++--
 po/tr.po          |  14 +++--
 po/ug.po          |  11 ++--
 po/uk.po          |  25 +++++---
 po/ur.po          |  11 ++--
 po/uz.po          |  12 ++--
 po/vi.po          |  12 ++--
 po/wa.po          |  11 ++--
 po/xh.po          |  11 ++--
 po/yo.po          |  11 ++--
 po/zh_CN.po       |  17 +++--
 po/zh_HK.po       |  11 ++--
 po/zh_TW.po       |  12 ++--
 107 files changed, 1130 insertions(+), 499 deletions(-)

commit e143ad579dc1d22101260843ee51d52ba3ce8626
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sat Feb 16 22:17:56 2019 +0800

    Prepare for docker-build 0.1.1 merge into master
    
    Please see mate-desktop/mate-dev-scripts#13

 .travis.yml | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit 3964e37f882d7d18631b1aafc3cc48213733e01e
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 10 13:12:24 2019 +0100

    Revert "tx: fix Content-Type in resource file"
    
    This reverts commit 7eaf97381092b7b2f4a9d5180cdc36dfd61aa4f2.
    
    This is wrong.

 mate-notification-daemon.pot | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7eaf97381092b7b2f4a9d5180cdc36dfd61aa4f2
Author: raveit65 <mate@raveit.de>
Date:   Sun Feb 10 13:10:29 2019 +0100

    tx: fix Content-Type in resource file

 mate-notification-daemon.pot | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ae121af4d84a5c95c81f9e62b972043068ba0a18
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Thu Feb 7 23:01:49 2019 +0800

    update to use archlinux/base image

 .travis.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit fa47df139b3c52f9d54391338c6d7f4f54b7444c
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sun Jan 27 19:08:11 2019 +0800

    Update to use the latest docker-build script.

 .docker.json | 72 ----------------------------------------------------
 .travis.yml  | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 2 files changed, 80 insertions(+), 75 deletions(-)

commit 8e2df0852ec4622f5652175e0effb5cadb1911c8
Author: raveit65 <mate@raveit.de>
Date:   Sun Jan 27 10:36:29 2019 +0100

    add debian sid to travis-CI config

 .docker.json | 24 ++++++++++++++++++++++++
 .travis.yml  |  1 +
 2 files changed, 25 insertions(+)

commit be2d132356e71266b7e387401a8014e77c1451e9
Author: raveit65 <mate@raveit.de>
Date:   Sat Jan 26 14:51:52 2019 +0100

    initial travis-CI support

 .docker.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 .travis.yml  | 18 ++++++++++++++++++
 2 files changed, 66 insertions(+)

commit 7f070a41f05f1430c23e77ea694825537c7ccb5e
Author: raveit65 <mate@raveit.de>
Date:   Thu Dec 20 20:33:31 2018 +0100

    tx: fix typo in previous commit

 mate-notification-daemon.pot | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 231ab0a1615d64a442316a8a50d688a1b15a718b
Author: raveit65 <mate@raveit.de>
Date:   Thu Dec 20 20:15:03 2018 +0100

    tx: fix Project-Id-Version and Content-Type in resource file

 mate-notification-daemon.pot | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit cf5a9a16832f037b1e0a4e9114208bb061892daa
Author: raveit65 <mate@raveit.de>
Date:   Thu Dec 20 19:36:42 2018 +0100

    disable deprecation warnings for distcheck

 Makefile.am | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit c586fe539efb8af372e60c752e03cb950cee9e77
Author: Wu Xiaotian <yetist@gmail.com>
Date:   Sat Dec 1 19:10:45 2018 +0800

    Avoid compile warning for g_type_class_add_private
    
    - src/daemon/daemon.c
    - src/daemon/daemon.h

 src/daemon/daemon.c | 177 +++++++++++++++++++++++++---------------------------
 src/daemon/daemon.h |  28 +--------
 2 files changed, 87 insertions(+), 118 deletions(-)

commit 8c60800f02bae75c378fb7a2fbe80173e8629e61
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 22 18:05:22 2018 +0200

    release 1.21.0

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

commit 3f3bc5483737e0e0a519929e8dd8693b333f1e2b
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 22 18:02:31 2018 +0200

    sync with transifex

 po/LINGUAS        |  32 ++++++++++
 po/af.po          |  55 +++++++++--------
 po/am.po          |  67 ++++++++++----------
 po/ar.po          |  65 ++++++++++----------
 po/as.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ast.po         |  55 ++++++++---------
 po/az.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/be.po          |  53 ++++++++--------
 po/bg.po          |  62 +++++++++----------
 po/bn.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/bn_IN.po       | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/br.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/bs.po          |  51 ++++++++--------
 po/ca.po          |  65 ++++++++++----------
 po/ca@valencia.po |  61 +++++++++---------
 po/cmn.po         |  54 ++++++++--------
 po/crh.po         | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/cs.po          |  67 ++++++++++----------
 po/cy.po          |  53 ++++++++--------
 po/da.po          |  59 +++++++++---------
 po/de.po          |  65 ++++++++++----------
 po/dz.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/el.po          |  66 ++++++++++----------
 po/en_AU.po       |  61 +++++++++---------
 po/en_CA.po       | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/en_GB.po       |  60 +++++++++---------
 po/eo.po          |  51 ++++++++--------
 po/es.po          |  65 ++++++++++----------
 po/es_AR.po       | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/es_CL.po       |  60 +++++++++---------
 po/es_CO.po       |  61 +++++++++---------
 po/es_MX.po       |  61 +++++++++---------
 po/et.po          |  74 +++++++++++-----------
 po/eu.po          |  67 ++++++++++----------
 po/fa.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/fi.po          |  59 +++++++++---------
 po/fr.po          |  68 +++++++++++----------
 po/fr_CA.po       |  51 ++++++++--------
 po/frp.po         |  51 ++++++++--------
 po/ga.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/gl.po          |  69 +++++++++++----------
 po/gu.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ha.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/he.po          |  64 +++++++++----------
 po/hi.po          |  59 +++++++++---------
 po/hr.po          |  67 ++++++++++----------
 po/hu.po          |  61 +++++++++---------
 po/hy.po          |  61 +++++++++---------
 po/id.po          |  66 ++++++++++----------
 po/ig.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/is.po          |  64 +++++++++----------
 po/it.po          |  67 ++++++++++----------
 po/ja.po          |  60 +++++++++---------
 po/ka.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/kk.po          |  62 ++++++++++---------
 po/kn.po          |  57 +++++++++--------
 po/ko.po          |  57 +++++++++--------
 po/ku.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ku_IQ.po       |  53 ++++++++--------
 po/ky.po          |  54 ++++++++--------
 po/lt.po          |  65 ++++++++++----------
 po/lv.po          |  60 +++++++++---------
 po/mai.po         | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/mg.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/mk.po          |  59 +++++++++---------
 po/ml.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/mn.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/mr.po          |  55 +++++++++--------
 po/ms.po          |  62 ++++++++++---------
 po/nb.po          |  61 +++++++++---------
 po/nds.po         | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/ne.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/nl.po          |  62 +++++++++----------
 po/nn.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/oc.po          |  54 ++++++++--------
 po/or.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/pa.po          |  56 +++++++++--------
 po/pl.po          |  65 ++++++++++----------
 po/ps.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/pt.po          |  64 +++++++++----------
 po/pt_BR.po       |  64 ++++++++++---------
 po/ro.po          |  64 +++++++++----------
 po/ru.po          |  67 ++++++++++----------
 po/sc.po          |  60 +++++++++---------
 po/si.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sk.po          |  68 +++++++++++----------
 po/sl.po          |  69 ++++++++++-----------
 po/sq.po          |  56 ++++++++---------
 po/sr.po          |  63 ++++++++++---------
 po/sr@latin.po    | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sv.po          |  66 ++++++++++----------
 po/ta.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/te.po          |  57 +++++++++--------
 po/th.po          |  55 ++++++++---------
 po/tr.po          |  65 ++++++++++----------
 po/ug.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/uk.po          |  71 +++++++++++----------
 po/ur.po          |  57 ++++++++---------
 po/uz.po          |  52 ++++++++--------
 po/vi.po          |  61 +++++++++---------
 po/wa.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/xh.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/yo.po          | 180 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/zh_CN.po       |  58 +++++++++---------
 po/zh_HK.po       |  51 ++++++++--------
 po/zh_TW.po       |  57 +++++++++--------
 106 files changed, 8046 insertions(+), 2178 deletions(-)

commit 73ad070f5f7956ec56657d219586cdac191f4261
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 15 17:18:11 2018 +0200

    update .pot file

 mate-notification-daemon.pot | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 106ec3bdda5ab3e551b615b4431b593fbcb8a280
Author: raveit65 <mate@raveit.de>
Date:   Fri Jun 15 17:11:55 2018 +0200

    pre-bump version

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

commit 8217f2d58544c3f25bd793091593d616b4f0fd1d
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:22:02 2018 +0800

    Drop dbus-glib dependence

 configure.ac | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit dccffbc0a11a130ead7fd7101d90a2d8c043bfec
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:22:49 2018 +0800

    Use GVariant

 src/daemon/engines.c             |  4 ++--
 src/daemon/engines.h             |  2 +-
 src/themes/coco/coco-theme.c     | 19 +++++++++----------
 src/themes/nodoka/nodoka-theme.c | 19 +++++++++----------
 src/themes/slider/theme.c        | 18 +++++++++---------
 src/themes/standard/theme.c      | 18 +++++++++---------
 6 files changed, 39 insertions(+), 41 deletions(-)

commit 960df18a456f5171a2f5e052278df64d6c663989
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:20:19 2018 +0800

    Migrate from dbus-glib to GDBus

 src/daemon/daemon.c | 578 ++++++++++++++++++++++++----------------------------
 src/daemon/daemon.h |  22 +-
 2 files changed, 267 insertions(+), 333 deletions(-)

commit f26d490bfe55fe508b46819c41c8557ab3085bb1
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:16:58 2018 +0800

    Add signals, remove annotation from xml file

 src/daemon/notificationdaemon.xml | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 4362bc352733b9729b2acd7bf9c4b0991e35fb87
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:16:03 2018 +0800

    Use gdbus generate files

 src/daemon/Makefile.am | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

commit 5e688bfb146b9731496650eb8dcaf5ef9ba778ad
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 13:14:22 2018 +0800

    Add new file

 src/daemon/mnd-daemon.c | 93 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 93 insertions(+)

commit 6fd50ad6440bb348e78f7206deb2be8f8b047e67
Author: yetist <yetist@gmail.com>
Date:   Tue May 8 17:29:26 2018 +0800

    Fix some gdk deprecations

 src/daemon/daemon.c | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit 178eacc6c110f692a1f0425635a7a51049e96466
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Date:   Wed Apr 18 13:23:32 2018 +0200

    src/daemon/daemon.c: Replace deprecated gvfs-open call by "gio open" from libglib2.0-bin.

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

commit 3e43e3cb5c028740410d7951d635ee981899640f
Author: raveit65 <mate@raveit.de>
Date:   Fri Mar 23 13:30:21 2018 +0100

    tx: update config with branch specific resoures

 .tx/config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a0aeb0b6ff9b836c600a9dcef04a019f9c06392f
Author: raveit65 <mate@raveit.de>
Date:   Sat Mar 17 10:17:02 2018 +0100

    tx: add makepot and .pot files

 makepot                      |   5 ++
 mate-notification-daemon.pot | 180 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 185 insertions(+)

commit 34baf35219a6fccce555f4b4a9a9b2f5a5802942
Author: raveit65 <mate@raveit.de>
Date:   Sun Mar 11 20:41:52 2018 +0100

    transifex: set minimum_perc and type in config file

 .tx/config | 2 ++
 1 file changed, 2 insertions(+)

commit f37c85812353685d83a5a3deeadef540060c858a
Author: raveit65 <mate@raveit.de>
Date:   Tue Jan 30 09:14:27 2018 +0100

    release 1.20

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

commit 4160bc0f979fd224011386a429c9e82f60358dda
Author: raveit65 <mate@raveit.de>
Date:   Tue Jan 30 09:11:05 2018 +0100

    sync with transifex

 po/es.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bc42c561e29041c168b806a5618580066aa8a222
Author: monsta <monsta@inbox.ru>
Date:   Sun Jan 28 20:16:44 2018 +0300

    require GTK+ 3.22 and GLib 2.50
    
    and drop additional checks for min/max GLib versions, it's not needed

 configure.ac                               | 10 +----
 src/capplet/mate-notification-properties.c |  4 --
 src/daemon/daemon.c                        | 60 ------------------------------
 src/daemon/stack.c                         | 24 +-----------
 src/daemon/stack.h                         |  4 --
 src/themes/coco/coco-theme.c               | 12 ------
 src/themes/nodoka/nodoka-theme.c           | 12 ------
 src/themes/slider/theme.c                  | 12 ------
 src/themes/standard/theme.c                | 30 ---------------
 9 files changed, 3 insertions(+), 165 deletions(-)

commit 4a4687f22d854e5d4736830f513c577439e42151
Author: raveit65 <mate@raveit.de>
Date:   Tue Dec 26 16:28:09 2017 +0100

    release 1.19.1

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

commit 4d172ce7ae8d0ce09e0f6964a9cf6ceb63d06ec5
Author: raveit65 <mate@raveit.de>
Date:   Tue Dec 26 16:26:17 2017 +0100

    sync with transifex

 po/af.po          | 42 ++++++++++++++++++++---------------------
 po/am.po          | 42 ++++++++++++++++++++---------------------
 po/ar.po          | 42 ++++++++++++++++++++---------------------
 po/ast.po         | 42 ++++++++++++++++++++---------------------
 po/be.po          | 42 ++++++++++++++++++++---------------------
 po/bg.po          | 42 ++++++++++++++++++++---------------------
 po/bs.po          | 42 ++++++++++++++++++++---------------------
 po/ca.po          | 42 ++++++++++++++++++++---------------------
 po/ca@valencia.po | 44 +++++++++++++++++++++----------------------
 po/cmn.po         | 42 ++++++++++++++++++++---------------------
 po/cs.po          | 42 ++++++++++++++++++++---------------------
 po/cy.po          | 42 ++++++++++++++++++++---------------------
 po/da.po          | 42 ++++++++++++++++++++---------------------
 po/de.po          | 42 ++++++++++++++++++++---------------------
 po/el.po          | 42 ++++++++++++++++++++---------------------
 po/en_AU.po       | 42 ++++++++++++++++++++---------------------
 po/en_GB.po       | 42 ++++++++++++++++++++---------------------
 po/eo.po          | 42 ++++++++++++++++++++---------------------
 po/es.po          | 44 +++++++++++++++++++++----------------------
 po/es_CL.po       | 42 ++++++++++++++++++++---------------------
 po/es_CO.po       | 42 ++++++++++++++++++++---------------------
 po/es_MX.po       | 42 ++++++++++++++++++++---------------------
 po/et.po          | 42 ++++++++++++++++++++---------------------
 po/eu.po          | 42 ++++++++++++++++++++---------------------
 po/fi.po          | 42 ++++++++++++++++++++---------------------
 po/fr.po          | 42 ++++++++++++++++++++---------------------
 po/fr_CA.po       | 42 ++++++++++++++++++++---------------------
 po/frp.po         | 42 ++++++++++++++++++++---------------------
 po/gl.po          | 42 ++++++++++++++++++++---------------------
 po/he.po          | 56 +++++++++++++++++++++++++++----------------------------
 po/hi.po          | 42 ++++++++++++++++++++---------------------
 po/hr.po          | 42 ++++++++++++++++++++---------------------
 po/hu.po          | 42 ++++++++++++++++++++---------------------
 po/hy.po          | 42 ++++++++++++++++++++---------------------
 po/id.po          | 42 ++++++++++++++++++++---------------------
 po/is.po          | 42 ++++++++++++++++++++---------------------
 po/it.po          | 42 ++++++++++++++++++++---------------------
 po/ja.po          | 42 ++++++++++++++++++++---------------------
 po/kk.po          | 42 ++++++++++++++++++++---------------------
 po/kn.po          | 42 ++++++++++++++++++++---------------------
 po/ko.po          | 42 ++++++++++++++++++++---------------------
 po/ku_IQ.po       | 42 ++++++++++++++++++++---------------------
 po/ky.po          | 42 ++++++++++++++++++++---------------------
 po/lt.po          | 42 ++++++++++++++++++++---------------------
 po/lv.po          | 42 ++++++++++++++++++++---------------------
 po/mk.po          | 42 ++++++++++++++++++++---------------------
 po/mr.po          | 42 ++++++++++++++++++++---------------------
 po/ms.po          | 42 ++++++++++++++++++++---------------------
 po/nb.po          | 42 ++++++++++++++++++++---------------------
 po/nl.po          | 42 ++++++++++++++++++++---------------------
 po/oc.po          | 42 ++++++++++++++++++++---------------------
 po/pa.po          | 42 ++++++++++++++++++++---------------------
 po/pl.po          | 42 ++++++++++++++++++++---------------------
 po/pt.po          | 42 ++++++++++++++++++++---------------------
 po/pt_BR.po       | 42 ++++++++++++++++++++---------------------
 po/ro.po          | 42 ++++++++++++++++++++---------------------
 po/ru.po          | 44 +++++++++++++++++++++----------------------
 po/sc.po          | 42 ++++++++++++++++++++---------------------
 po/sk.po          | 46 ++++++++++++++++++++++-----------------------
 po/sl.po          | 42 ++++++++++++++++++++---------------------
 po/sq.po          | 42 ++++++++++++++++++++---------------------
 po/sr.po          | 42 ++++++++++++++++++++---------------------
 po/sv.po          | 49 ++++++++++++++++++++++++------------------------
 po/te.po          | 42 ++++++++++++++++++++---------------------
 po/th.po          | 42 ++++++++++++++++++++---------------------
 po/tr.po          | 42 ++++++++++++++++++++---------------------
 po/uk.po          | 42 ++++++++++++++++++++---------------------
 po/ur.po          | 42 ++++++++++++++++++++---------------------
 po/uz.po          | 42 ++++++++++++++++++++---------------------
 po/vi.po          | 42 ++++++++++++++++++++---------------------
 po/zh_CN.po       | 42 ++++++++++++++++++++---------------------
 po/zh_HK.po       | 42 ++++++++++++++++++++---------------------
 po/zh_TW.po       | 42 ++++++++++++++++++++---------------------
 73 files changed, 1549 insertions(+), 1548 deletions(-)

commit 34faef680f7b084a1e9d844a438473c90f7d2224
Author: Pablo Barciela <scow@riseup.net>
Date:   Tue Dec 12 20:36:29 2017 +0100

    WidthOfScreen and HeightOfScreen implementation
    
    This commit reverts:
    
    https://github.com/mate-desktop/mate-notification-daemon/commit/52b7c3807e71278f2d902a79cf6c08c839a1b0ad
    
    And it applies an alternative to fix the deprecated functions:
    
    gdk_screen_get_width
    gdk_screen_get_height

 src/daemon/stack.c               | 5 ++---
 src/themes/nodoka/nodoka-theme.c | 9 +++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

commit f981a2b53fe54e3489d3b14aa0dd04047d3cd6aa
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 2 09:11:49 2017 +0200

    release 1.19.0

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

commit 8cc9c2a426efdedd0268f4768b1cc75038345f11
Author: raveit65 <mate@raveit.de>
Date:   Sat Sep 2 09:09:11 2017 +0200

    sync with transifex

 po/ar.po    | 11 ++++-----
 po/ca.po    |  5 +++--
 po/eo.po    |  2 +-
 po/es_CL.po |  2 +-
 po/es_CO.po | 13 ++++++-----
 po/hy.po    |  4 ++--
 po/kk.po    | 69 ++++++++++++++++++++++++++++----------------------------
 po/lt.po    | 12 +++++-----
 po/nl.po    | 53 ++++++++++++++++++++++---------------------
 po/pl.po    |  6 ++---
 po/pt.po    |  8 +++----
 po/sv.po    |  9 ++++----
 po/vi.po    | 75 +++++++++++++++++++++++++++++++------------------------------
 13 files changed, 138 insertions(+), 131 deletions(-)

commit c556e09077bb820e752d7266d2b20328db629883
Author: ZenWalker <scow@riseup.net>
Date:   Tue Aug 29 01:27:00 2017 +0200

    gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:
    
    avoid deprecated:
    
    gdk_screen_get_monitor_geometry
    gdk_screen_get_monitor_at_point

 src/daemon/daemon.c         | 57 +++++++++++++++++++++++++++++++++++++++++++++
 src/daemon/stack.c          | 33 +++++++++++++++++++++++++-
 src/daemon/stack.h          |  4 ++++
 src/themes/standard/theme.c | 22 +++++++++++++++++
 4 files changed, 115 insertions(+), 1 deletion(-)

commit 52b7c3807e71278f2d902a79cf6c08c839a1b0ad
Author: ZenWalker <scow@riseup.net>
Date:   Tue Aug 8 02:43:13 2017 +0200

    avoid deprecated gdk_screen_get_width/height

 src/daemon/stack.c               | 5 +++--
 src/themes/nodoka/nodoka-theme.c | 8 ++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

commit c11a2ac7a568b83fb0327e831519981a465bc51f
Author: ZenWalker <scow@riseup.net>
Date:   Sat Aug 5 00:42:08 2017 +0200

    avoid deprecated gdk_screen_get_n_monitors

 src/capplet/mate-notification-properties.c |  4 ++++
 src/daemon/daemon.c                        | 16 ++++++++++++++++
 src/daemon/stack.c                         |  8 ++++++++
 3 files changed, 28 insertions(+)

commit 296116088fca1ea8a261c49233fec407bd9098f6
Author: Jury Verrigni <jury.verrigni@gmail.com>
Date:   Wed Aug 9 14:35:37 2017 +0100

    Fixes high cpu usage with large timeouts

 src/daemon/daemon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a84eac2c5115d6a21e98e4797fbf6407cf5712b
Author: Alfio Emanuele Fresta <alfio.emanuele.f@gmail.com>
Date:   Sat Aug 5 22:18:55 2017 +0100

    unescape URI-encode paths for icon files
    
    Fix #117

 src/daemon/daemon.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 21f4fb4f254a9a11a55ad191c302a7f8b8f12506
Author: raveit65 <mate@raveit.de>
Date:   Tue Jul 18 15:18:46 2017 +0200

    update issue_template

 .github/issue_template.md | 3 +++
 1 file changed, 3 insertions(+)

commit 0e76a3032d1e8db658429859703d3c491346574d
Author: raveit65 <mate@raveit.de>
Date:   Thu Jun 8 19:07:56 2017 +0200

    create issue_template.md

 .github/issue_template.md | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 51c32413531506ad395f91d4feb3318eccf349d5
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat May 20 17:43:07 2017 +0200

    Restore Polish translation credits from GNOME

 .tx/config                                         |    7 +
 AUTHORS                                            |   38 +
 COPYING                                            |  339 ++++
 ChangeLog                                          |    2 +
 Makefile.am                                        |   56 +
 NEWS                                               |   78 +
 README                                             |    1 +
 acinclude.m4                                       |   40 +
 autogen.sh                                         |   22 +
 configure.ac                                       |  279 ++++
 data/Makefile.am                                   |   49 +
 data/icons/16x16/mate-notification-properties.png  |  Bin 0 -> 514 bytes
 data/icons/22x22/mate-notification-properties.png  |  Bin 0 -> 560 bytes
 data/icons/24x24/mate-notification-properties.png  |  Bin 0 -> 554 bytes
 data/icons/32x32/mate-notification-properties.png  |  Bin 0 -> 725 bytes
 data/icons/48x48/mate-notification-properties.png  |  Bin 0 -> 938 bytes
 .../scalable/mate-notification-properties.svg      |  122 ++
 data/org.freedesktop.mate.Notifications.service.in |    3 +
 data/org.mate.NotificationDaemon.gschema.xml.in    |   29 +
 po/LINGUAS                                         |   75 +
 po/POTFILES.in                                     |   10 +
 po/Rules-quot                                      |   42 +
 po/af.po                                           |  181 +++
 po/am.po                                           |  181 +++
 po/ar.po                                           |  184 +++
 po/ast.po                                          |  181 +++
 po/be.po                                           |  181 +++
 po/bg.po                                           |  184 +++
 po/boldquot.sed                                    |   10 +
 po/bs.po                                           |  181 +++
 po/ca.po                                           |  182 +++
 po/ca@valencia.po                                  |  181 +++
 po/cmn.po                                          |  181 +++
 po/cs.po                                           |  184 +++
 po/cy.po                                           |  181 +++
 po/da.po                                           |  181 +++
 po/de.po                                           |  184 +++
 po/el.po                                           |  185 +++
 po/en@boldquot.header                              |   25 +
 po/en@quot.header                                  |   22 +
 po/en_AU.po                                        |  183 +++
 po/en_GB.po                                        |  182 +++
 po/eo.po                                           |  181 +++
 po/es.po                                           |  185 +++
 po/es_CL.po                                        |  182 +++
 po/es_CO.po                                        |  181 +++
 po/es_MX.po                                        |  181 +++
 po/et.po                                           |  181 +++
 po/eu.po                                           |  181 +++
 po/fi.po                                           |  181 +++
 po/fr.po                                           |  184 +++
 po/fr_CA.po                                        |  181 +++
 po/frp.po                                          |  181 +++
 po/gl.po                                           |  182 +++
 po/gnome-copyrights.txt                            |  224 +++
 po/he.po                                           |  182 +++
 po/hi.po                                           |  181 +++
 po/hr.po                                           |  182 +++
 po/hu.po                                           |  182 +++
 po/hy.po                                           |  182 +++
 po/id.po                                           |  185 +++
 po/insert-header.sin                               |   23 +
 po/is.po                                           |  182 +++
 po/it.po                                           |  184 +++
 po/ja.po                                           |  182 +++
 po/kk.po                                           |  180 +++
 po/kn.po                                           |  181 +++
 po/ko.po                                           |  183 +++
 po/ku_IQ.po                                        |  181 +++
 po/ky.po                                           |  182 +++
 po/lt.po                                           |  183 +++
 po/lv.po                                           |  182 +++
 po/mk.po                                           |  181 +++
 po/mr.po                                           |  181 +++
 po/ms.po                                           |  182 +++
 po/nb.po                                           |  182 +++
 po/nl.po                                           |  183 +++
 po/oc.po                                           |  182 +++
 po/pa.po                                           |  180 +++
 po/pl.po                                           |  185 +++
 po/pt.po                                           |  184 +++
 po/pt_BR.po                                        |  186 +++
 po/quot.sed                                        |    6 +
 po/ro.po                                           |  183 +++
 po/ru.po                                           |  184 +++
 po/sc.po                                           |  181 +++
 po/sk.po                                           |  183 +++
 po/sl.po                                           |  184 +++
 po/sq.po                                           |  182 +++
 po/sr.po                                           |  182 +++
 po/sv.po                                           |  184 +++
 po/te.po                                           |  181 +++
 po/th.po                                           |  181 +++
 po/tr.po                                           |  184 +++
 po/uk.po                                           |  186 +++
 po/ur.po                                           |  181 +++
 po/uz.po                                           |  182 +++
 po/vi.po                                           |  181 +++
 po/zh_CN.po                                        |  184 +++
 po/zh_HK.po                                        |  181 +++
 po/zh_TW.po                                        |  182 +++
 src/Makefile.am                                    |    3 +
 src/capplet/Makefile.am                            |   28 +
 src/capplet/mate-notification-properties.1         |   25 +
 src/capplet/mate-notification-properties.c         |  620 +++++++
 .../mate-notification-properties.desktop.in        |   11 +
 src/capplet/mate-notification-properties.ui        |  305 ++++
 src/daemon/Makefile.am                             |   30 +
 src/daemon/daemon.c                                | 1694 ++++++++++++++++++++
 src/daemon/daemon.h                                |  103 ++
 src/daemon/engines.c                               |  332 ++++
 src/daemon/engines.h                               |   60 +
 src/daemon/notificationdaemon.xml                  |   40 +
 src/daemon/sound.c                                 |   39 +
 src/daemon/sound.h                                 |   29 +
 src/daemon/stack.c                                 |  389 +++++
 src/daemon/stack.h                                 |   50 +
 src/themes/Makefile.am                             |    3 +
 src/themes/coco/Makefile.am                        |    9 +
 src/themes/coco/coco-theme.c                       |  733 +++++++++
 src/themes/nodoka/Makefile.am                      |    9 +
 src/themes/nodoka/nodoka-theme.c                   | 1137 +++++++++++++
 src/themes/slider/Makefile.am                      |   15 +
 src/themes/slider/theme.c                          |  823 ++++++++++
 src/themes/standard/Makefile.am                    |   11 +
 src/themes/standard/theme.c                        | 1127 +++++++++++++
 126 files changed, 22431 insertions(+)
