~mate-desktop/mate-desktop/+git/mate-notification-daemon:1.22

Last commit made on 2020-02-29
Get this branch:
git clone -b 1.22 https://git.launchpad.net/~mate-desktop/mate-desktop/+git/mate-notification-daemon

Branch merges

Branch information

Recent commits

e716156... by Pablo Barciela <email address hidden>

Travis CI: arch build: add autoconf-archive

1954bed... by Pablo Barciela <email address hidden>

build: drop MATE_CXX_WARNINGS

ed26f7f... by raveit65

travis: update config for new travis validation

db2f6d9... by raveit65

travis ci: use fedora:latest

4111190... by Pablo Barciela <email address hidden>

Travis CI: use Ubuntu 19.10 instead 19.04

847266e... by Pablo Barciela <email address hidden>

Travis CI: use Debian "testing" instead "sid"

40a2617... by raveit65

travis(ci): enable notify_servers

6043b2a... by raveit65

release 1.22.1

85f564e... by raveit65

tx: sync with transifex

8f539a1... by Kyle Brenneman

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.