summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Do not use rappertintou/no-rapperCorentin Noël2018-07-292-22/+9
|
* Asynchronous out-parameters are only allowed at the end of argument listsRico Tzschichholz2018-06-054-12/+13
| | | | This will not result in an ABI/API change on the c-level.
* Use Markdown for the READMECorentin Noël2018-05-052-31/+21
|
* vala: fixed DBus methods not throwing GLib.ErrorCorentin Noël2018-05-052-2/+2
|
* ontology: Avoid ownership mismatches of container elements to fix memleakRico Tzschichholz2018-04-051-5/+5
|
* Release 1.0.1v1.0.1Rico Tzschichholz2018-02-142-1/+11
|
* log: Fix uncaught error warningRico Tzschichholz2018-02-131-10/+12
|
* Fix warning while dbus methods are not throwing the required set of errorsRico Tzschichholz2018-02-131-3/+3
|
* Fix placeholder in systemd service templateRico Tzschichholz2017-02-271-1/+1
|
* Release 1.0v1.0Rico Tzschichholz2017-02-182-1/+22
|
* Add --vacuum option to daemonRico Tzschichholz2017-02-181-0/+41
| | | | Based on patch by Marco Trevisan (https://launchpad.net/bugs/919801)
* Update .gitignoreRico Tzschichholz2017-02-181-2/+4
|
* Fix placeholder in systemd service templateRico Tzschichholz2017-02-181-1/+1
|
* Add a systemd user service for each D-Bus session serviceSimon McVittie2017-02-186-0/+26
| | | | | | This means that, under a systemd user session where dbus-daemon uses systemd for activation, they will correctly go into their own cgroups instead of being treated as part of dbus.service.
* Give the D-Bus service files the correct namesSimon McVittie2017-02-184-6/+6
| | | | | | | | | | | | | | Best-practice is that if you implement a session service whose well-known name (Name field) is com.example.MyService1, and it should be service-activatable, then it should install ${datadir}/dbus-1/services/com.example.MyService1.service. This ensures that two non-conflicting packages cannot provide the same service name with the same search-path priority (i.e. in the same directory). If there are two session services with the same Name in the same directory, dbus-daemon will arbitrarily choose one of them, which is unlikely to be the desired result.
* Avoid implicit .begin warningsRico Tzschichholz2016-10-181-2/+2
|
* Remove superfluous parenthesesRico Tzschichholz2016-10-182-2/+2
|
* data: Fix bash auto-completions scriptRico Tzschichholz2016-09-061-3/+3
|
* Drop unused Makefile.declRico Tzschichholz2016-09-0514-75/+14
|
* Install zeitgeist-fts to pkglibexecdir rather than libexecdirRico Tzschichholz2016-09-052-3/+3
|
* Drop dbus-services-dir configure flagRico Tzschichholz2016-09-055-32/+10
|
* Use GNU gettext only and drop references to intltool and glib-getttextRico Tzschichholz2016-09-058-33/+100
|
* fts: Drop obsolete GLIB conditionalsRico Tzschichholz2016-09-051-4/+3
|
* datahub: Drop obsolete VALA_0_14 conditionalRico Tzschichholz2016-09-051-9/+4
|
* datahub: Use proper compile-flag to enable DownloadsDirectoryMonitorRico Tzschichholz2016-09-054-12/+10
|
* datahub: Unconditionally enable DesktopLaunchListenerRico Tzschichholz2016-09-053-11/+1
|
* datahub: Actually enable telepathy-observerRico Tzschichholz2016-09-051-1/+1
|
* Update autoconf project linksRico Tzschichholz2016-09-041-1/+6
|
* Use $PYTHON to check for rdflibRafael Ferreira2016-09-041-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=83150
* Bump version to 0.9.17Rico Tzschichholz2016-09-041-1/+1
|
* Fix "static const" vala compile warningsRico Tzschichholz2016-09-042-2/+2
|
* Drop dependency on gnome-commonRico Tzschichholz2016-09-043-5/+39
|
* Call setlocale in main function of zeitgeist-daemonTing-Wei Lan2016-09-041-0/+2
| | | | | | It is required to correctly show translated messages on some locales. https://bugs.freedesktop.org/show_bug.cgi?id=93662
* Ensure the log mainloop uses the current thread's context when waitingTed Gould2016-09-041-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=95549
* Fix tests crashing with GCC 5.1Robert Ancell2015-08-031-47/+91
| | | | | | | | The tests were using a c_str() result from a std::string that had gone out of scope. GCC 5.1 seems to be more agressive in freeing the string data before the tests checked against it. https://bugs.freedesktop.org/show_bug.cgi?id=91443
* Release 0.9.16v0.9.16Rico Tzschichholz2015-07-082-1/+16
|
* zeitgeist-2.0.pc: Require gobject-2.0 and gio-2.0Rico Tzschichholz2015-07-081-1/+1
|
* Add -fPIC to libzeitgeist-internal.la and libzeitgeist_datamodel-2.0.laTing-Wei Lan2015-06-271-0/+2
| | | | | | | It is needed because libzeitgeist-2.0.la is used as a shared library, which requires all dependencies be built as PIC. https://bugs.freedesktop.org/show_bug.cgi?id=88932
* test/dbus: don't hardcode python pathTing-Wei Lan2015-06-2710-10/+10
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=73837
* Log: Add finally {} to try {} catch {}Albert Astals Cid2015-01-291-1/+4
| | | | | | | Need to quit the loop also on error, otherwise we leave a stray main loop around. https://bugs.freedesktop.org/show_bug.cgi?id=88846
* tools: Drop rogue leading unicode characterRico Tzschichholz2014-07-031-1/+1
|
* Require glib >= 2.35.4 according to the usage of g_get_num_processors()Rico Tzschichholz2014-03-179-11/+8
| | | | Bump vala buildflags accordingly
* WhereClause: Fix array-length to work with string.joinv of vala-0.24Rico Tzschichholz2014-03-171-0/+4
|
* Update .gitignoreRico Tzschichholz2014-03-171-0/+3
|
* ontology2code: don't hardcode python pathRyan Lortie2014-03-171-1/+1
| | | | | | Use the typical /usr/bin/env trick to find python. https://bugs.freedesktop.org/show_bug.cgi?id=73837
* Replace get_nprocs_conf with g_get_num_processors()Seif Lotfy2014-03-041-4/+4
|
* libzeitgeist: Add a missing dependency on gio-2.0Philip Withnall2014-02-161-0/+1
| | | | | | This actually makes the zeitgeist vapi file usable. Signed-off-by: Seif Lotfy <seif@lotfy.com>
* Replace \+ with \{1,\)v0.9.15v.0.9.15Seif Lotfy2014-01-271-1/+1
| | | | | This command /usr/bin/sed -n "s/^dlname='\([A-Za-z0-9.+-]\+\)'/\1/p" libzeitgeist-2.0.la does not work on FreeBSD because \+ is not in basic regular expression.
* Fix unit test failure if $XDG_DATA_DIRS is not setMartin Pitt2014-01-152-2/+4
| | | | | | | | In that case g_setenv() would fail trying to set a NULL value in teardown. https://bugs.freedesktop.org/show_bug.cgi?id=73651 Signed-off-by: Seif Lotfy <seif@lotfy.com>
* bump version number and release nameSeif Lotfy2014-01-152-3/+13
|