~vcs-imports/evolution-data-server/+git/evolution-data-server:gbsneto/gdata-task-position

Last commit made on 2018-09-19
Get this branch:
git clone -b gbsneto/gdata-task-position https://git.launchpad.net/~vcs-imports/evolution-data-server/+git/evolution-data-server

Branch merges

Branch information

Name:
gbsneto/gdata-task-position
Repository:
lp:~vcs-imports/evolution-data-server/+git/evolution-data-server

Recent commits

2fc68c2... by Georges Basile Stavracas Neto

Expose GData 'parent' and 'position' task fields

The 'parent' property of the GDataTasksTask object is exposed
through ICAL_RELATEDTO_PROPERTY, which matches the practices
of GNOME To Do and NextCloud and other ICal-based providers.

The position, however, is exposed through an X ICal property
named X-EVOLUTION-GTASKS-POSITION. This doesn't affect Evolution
in any form, but will still allow external consumers of EDS to
retrieve the position of the task. Since GData tasks themselves
aren't backed by ICal components, we have some creative freedom
to use X properties.

Updating the task position and parent requires [1] but a compile
check was added to not force EDS to bump the libgdata version.

[1] https://gitlab.gnome.org/GNOME/libgdata/merge_requests/4

163e06e... by Gabor Kelemen

Update Hungarian translation

(cherry picked from commit 380a6f1a4a0889dd020ca39367bc99d65bfe51f0)

accb0e2... by Milan Crha <email address hidden>

I#3 - [GPG] Mails that are not encrypted look encrypted ][

One change, when the status stream ends an ongoing decrypt_state,
still read the stdout data as valid decrypted data, otherwise
the real output could be truncated.

Related to https://gitlab.gnome.org/GNOME/evolution-data-server/issues/3

165a79d... by Milan Crha <email address hidden>

I#29 - Changed user name not propagated to collection child sources

Closes https://gitlab.gnome.org/GNOME/evolution-data-server/issues/29

3f4ac87... by Milan Crha <email address hidden>

Mark string for a translation

a93d402... by Milan Crha <email address hidden>

I#24 - The 'contacts' calendar backend leaks BookRecord

Closes https://gitlab.gnome.org/GNOME/evolution-data-server/issues/24

8046cdb... by Marek Cernocky <email address hidden>

Updated Czech translation

6c7dbc4... by Milan Crha <email address hidden>

Address two Clang warnings

1cf4b38... by Milan Crha <email address hidden>

[NNTP] Address REVERSE_INULL Coverity scan issue

src/camel/providers/nntp/camel-nntp-store.c:2252: deref_ptr: Directly dereferencing pointer "nntp_stream"
src/camel/providers/nntp/camel-nntp-store.c:2355: check_after_deref: Null-checking "nntp_stream" suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
  2353|
  2354| if (ret == -1) {
  2355|-> if (nntp_stream)
  2356| camel_nntp_stream_unlock (nntp_stream);
  2357|

4565d18... by Milan Crha <email address hidden>

Add an optionally built evolution-dbus-session tool

The tool runs an isolated D-Bus session, but it also passes D-Bus
messages between the "parent" D-Bus session and the isolated
D-Bus session. It can be used for example by Flatpak applications
to run an isolated D-Bus session for recent evolution-data-server
D-Bus services, while still being able to talk to requested
D-Bus interfaces from the "parent" D-Bus session.

Its build can be enabled with -DENABLE_DBUS_SESSION_TOOL=ON CMake
command argument.