summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Since we depend on Call support now, bump tp-glib dep to 0.18.0telepathy-logger-0.4Danielle Madeley2012-04-261-1/+1
|
* start on version 0.4.1Jonny Lamb2012-04-032-1/+6
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* version 0.4.0telepathy-logger-0.4.0Jonny Lamb2012-04-032-5/+5
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* update NEWS for 0.4.0Jonny Lamb2012-04-031-0/+10
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* tools/telepathy.am: update to latest version from tp-glibJonny Lamb2012-04-033-6/+148
| | | | | | | Well... s/tar.gz/tar.bz2/g. We should fix this in upstream tp-glib tbh. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Fix type in NEWS fileDanielle Madeley2012-04-031-1/+1
|
* Post release version bumpDanielle Madeley2012-04-031-1/+1
|
* Version 0.2.13telepathy-logger-0.2.13Danielle Madeley2012-04-032-2/+15
|
* Limit end-reason to enum values rather then max intNicolas Dufresne2012-03-281-1/+1
|
* Style fixNicolas Dufresne2012-03-281-2/+2
|
* Be safe when CM sends change state multiple timesNicolas Dufresne2012-03-281-0/+5
| | | | | I've notice that Gabble sends the ended state twice some times. This is a but in the CM, but better be safe.
* Port TplCallChannel to Call1 APINicolas Dufresne2012-03-2815-421/+150
| | | | | This include a API break in the unstable Call code. Code using the unstable call log feature will need porting.
* add missing config.hGuillaume Desmottes2012-02-142-0/+4
|
* Disable GLib deprecation warningsGuillaume Desmottes2012-02-141-0/+4
| | | | We are stuck with GValueArray.
* Fail on missing gobject-instrospection makefileNicolas Dufresne2011-11-241-1/+3
| | | | | | | | | On Debian the gobject-introspection build tools and the .pc are shipped into seperate packages without dependency, which is a packaging bug. To make this bug more obvious, we now fail if the makefile in /usr/share/ is missing. https://bugs.freedesktop.org/show_bug.cgi?id=43200
* Post release version bumpNicolas Dufresne2011-11-241-1/+1
|
* Update check-c-style.sh from telepathy-glibCosimo Alfarano2011-11-181-0/+13
|
* Replace g_ptr_array_free with g_ptr_array_unrefCosimo Alfarano2011-11-183-3/+3
|
* Replace g_array_free with g_array_unrefCosimo Alfarano2011-11-183-5/+5
|
* Replace g_hash_table_destroy with g_hash_table_unrefCosimo Alfarano2011-11-184-19/+19
|
* Version 0.2.12telepathy-logger-0.2.12Nicolas Dufresne2011-11-012-3/+12
|
* Version 0.2.11telepathy-logger-0.2.11Nicolas Dufresne2011-10-312-3/+20
|
* Improve GObject introspection anotationNicolas Dufresne2011-10-313-8/+19
|
* Remove call to g_thread_init()Nicolas Dufresne2011-10-311-12/+0
| | | | | | | This is automatically called by g_type_init() since glib 2.23 and is now deprecated. https://bugs.freedesktop.org/show_bug.cgi?id=42284
* Fixing some non-quiet actionsNicolas Dufresne2011-10-312-7/+7
|
* Correctly enable silent build outputNicolas Dufresne2011-10-311-1/+1
|
* Fix observer singleton and select featuresNicolas Dufresne2011-10-148-44/+59
|
* Avoid dereferencing NULL pointersVincent Penquerc'h2011-07-151-25/+39
| | | | | Use empty strings where a given string cannot be known due to a NULL sender or actor.
* Fix action chain not to free result in finishNicolas Dufresne2011-06-271-2/+5
| | | | | | Freeing result in finish would lead to use after free since GLib push and pop default thread context in complete() calls. Also, it's very bad pratice as _finish() calls are optional.
* Post version bumpNicolas Dufresne2011-06-271-1/+1
|
* version 0.2.10telepathy-logger-0.2.10Nicolas Dufresne2011-05-262-5/+21
|
* test_add_superseding_event: add some edit timestampsDavid Laban2011-05-261-3/+14
| | | | They should be preserved, but shouldn't affect how events are processed.
* Use gint64 for timestamps (not guint64)David Laban2011-05-264-17/+17
|
* Update timestamp recording in text-channelDavid Laban2011-05-261-10/+38
| | | | | | | timestamp == original_message_{sent || received} || message_{sent || received} || now. edit_timestamp == supersedes ? message_{sent || received} || now: 0
* Add edit-timestamp, and remove original-timestampDavid Laban2011-05-263-33/+33
| | | | | | | | | log-store-xml: * store/save edit-timestamp rather than original-timestamp * Also don't let the edit timestamp override the timestamp for where messages are saved (as was the case for original-message). text-event: * s/original/edit/
* Revert "Update tests to use original-timestamp"David Laban2011-05-261-9/+5
| | | | This reverts commit 31411d5c9d19678ff862e07c508ff3cf78cbf40a.
* Merge branch 'fix-insert-after'Nicolas Dufresne2011-05-268-89/+119
|\
| * Optimise _tpl_log_manager_get_filtered_events()Nicolas Dufresne2011-05-261-44/+9
| | | | | | | | | | | | | | Use a GQueue and _tpl_event_queue_insert_sorted_after() instead of insert_sorted() which lookup the list everytime. This also has the effect of keeping log order as much as possible when broken timestamp goes backward.
| * Move event_queue_insert_sorted_after() to utilNicolas Dufresne2011-05-263-38/+44
| |
| * Style fix two empty line between functionNicolas Dufresne2011-05-261-0/+8
| |
| * Test case where first call is older then any textNicolas Dufresne2011-05-264-3/+39
| |
| * Add comment to explain a bit the testsNicolas Dufresne2011-05-261-0/+4
| |
| * Fixed initial call event_queue_insert_sorted_after()Nicolas Dufresne2011-05-262-27/+40
| | | | | | | | The current code would always insert after the first element.
| * Fixed initialised but unused warningNicolas Dufresne2011-05-261-3/+1
| |
* | Add a testcase for bug #37288Emilio Pozuelo Monfort2011-05-261-0/+23
| |
* | Fix destroy function for get_entities_asyncEmilio Pozuelo Monfort2011-05-261-1/+1
|/ | | | https://bugs.freedesktop.org/show_bug.cgi?id=37288
* Fix warn not checking system() return valueNicolas Dufresne2011-05-251-1/+4
|
* log-store-xml.c: fix uninitialised variable warningDavid Laban2011-05-251-1/+1
|
* Update tests to use original-timestampDavid Laban2011-05-241-5/+9
|
* text-channel: Put original-message-sent/received into original-timestampDavid Laban2011-05-241-1/+18
| | | | Also, s/guint/guint64 in old code.