summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-11-25Prepare version 0.12.5telepathy-glib-0.12.5Simon McVittie2-5/+9
2010-11-25tp_account_channel_request_get_property: use the right GValue setterSimon McVittie1-1/+1
2010-11-17Nano versionSimon McVittie2-1/+6
2010-11-17Prepare 0.12.4telepathy-glib-0.12.4Simon McVittie2-4/+6
2010-11-16NEWS so farSimon McVittie1-1/+7
2010-11-15fd.o #31581: tp_group_mixin_remove_members_with_reason: don't edit a const arraySimon McVittie1-3/+4
The compiler didn't pick this up because g_array_index involves a cast to (TpHandle *), so it returns a non-const lvalue, even for const arrays. Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-11-08Force the namespace "TelepathyGLib" for the g-i bindings.Travis Reitter2-1/+5
Fixes fdo#31473.
2010-11-03Nano versionSimon McVittie2-1/+6
2010-11-03Prepare version 0.12.3telepathy-glib-0.12.3Simon McVittie2-4/+12
2010-11-03Merge remote branch 'cassidy/account-crash-31321' into telepathy-glib-0.12Simon McVittie1-3/+5
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2010-11-02tp_account_manager_ensure_account: ref the manager while preparing the ↵Guillaume Desmottes1-3/+5
account (#31321)
2010-11-01Merge branch '012-windows' into telepathy-glib-0.12Simon McVittie1-9/+9
Reviewed-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Reviewed-by: Thomas Flueeli <tflueeli@gmail.com>
2010-10-29TpBaseClient: varargs_helper: allocate @features on the stack, not the heapSimon McVittie1-8/+7
Based on a patch from Thomas Flueeli, who points out that this doesn't work in MSVC 9.
2010-10-29Use G_VA_COPY instead of va_copy, which is C99 but not available everywhereSimon McVittie1-1/+2
Thomas Flueeli points out that in particular, MSVC 9 doesn't have it.
2010-10-26Nano versionSimon McVittie2-1/+6
2010-10-26Prepare version 0.12.2telepathy-glib-0.12.2Simon McVittie2-5/+16
2010-10-25Merge branch '012-build' into telepathy-glib-0.12Simon McVittie11-118/+178
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
2010-10-25fd.o #30730: order tests' and examples' CFLAGS and LIBS consistentlySimon McVittie10-116/+176
- first, things from this source tree, to make sure we don't use an outdated system-wide-installed copy instead - then, things lowest in the stack, ..., things highest in the stack This is essentially the same as danni's patch for #30791, but applied more widely. Also, correctly use CPPFLAGS instead of CFLAGS for -I, -D etc. which are common to C, C++ or anything else that invokes the preprocessor.
2010-10-25Swap order of LIBS for building gtk-doc so that uninstalled libtp-glib is usedDanielle Madeley1-2/+2
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=30791
2010-10-21base-client: don't leak featuresGuillaume Desmottes1-0/+4
2010-10-18Merge branch '012-messages' into telepathy-glib-0.12Simon McVittie3-4/+6
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
2010-10-18Messages example: advertise and test a non-trivial delivery reporting ↵Simon McVittie2-3/+5
support flag It's true, too: every time we fail to deliver a message (i.e. never), we emit a delivery report :-)
2010-10-18fd.o #30949: tp_message_mixin_get_dbus_property: fix DeliveryReportingSupportSimon McVittie1-1/+1
Previously, we'd always say it was 0 due to a typo in the method.
2010-10-15Nano versionSimon McVittie2-1/+6
2010-10-15Prepare version 0.12.1telepathy-glib-0.12.1Simon McVittie2-14/+27
2010-10-15DBusPropertiesMixin: Improve undefined interface messageWill Thompson1-1/+2
I constantly forget to do this, and it takes me ages to figure out what I'm doing wrong. Typically I faff around checking the codegen stuff, make clean and rebuild a few times, grep for what's done for other interfaces, and then finally remember. Reviewed-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-15telepathy.am: fix typo in mailing list nameSimon McVittie1-1/+1
2010-10-15telepathy.am: consider *+ to be a non-release, for Mission ControlSimon McVittie1-2/+2
2010-10-15.gitignore: ignore release-mailSimon McVittie1-0/+1
2010-10-15Automate the release process.Will Thompson3-4/+107
This was originally 8bf825940c834b44e7c7ceb17b26b30e5ff96aba in Gabble. The idea is that you smoke-test the release, then just run % make maintainer-make-release which generates the tarball, the signature, the signed tag, and the release mail, uploads the release to telepathy.freedesktop.org, and then reminds you of the remaining steps (nano version bump, pushing to upstream, and sending the mail). If you want to do all the local bits, but not send anything, just run: % make maintainer-prepare-release then do whatever you want to do with the tarball etc. If you think it's ready, run: % make maintainer-upload-release
2010-10-13message-mixin: add DeliveryReportingSupport to the list of propsGuillaume Desmottes2-2/+9
2010-10-13Merge branch '012-pedantic' into telepathy-glib-0.12Simon McVittie23-26/+24
Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
2010-10-06TpMessage: don't bitfield a gbooleanSimon McVittie1-1/+1
Single-bit bitfields need to be an unsigned type to avoid overflow. In this case there's no point in using a bitfield at all, though.
2010-10-06Remove redundant trailing semicolons from G_DEFINE_TYPE etc.Simon McVittie21-24/+22
ISO C forbids them, and they're an easy thing to get rid of.
2010-10-06fd.o #30644: don't 'return' a void expression from a void functionSimon McVittie1-1/+1
This isn't allowed by C99, but gcc accepts it as an extension and doesn't seem to offer a way to warn about it.
2010-10-01capabilities: check that the self pointer is actually a TpCapabilitiesGuillaume Desmottes1-1/+3
2010-09-28Protocol: Log error message when filters reject parametersWill Thompson1-2/+6
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
2010-09-20Nano version for stable branchSimon McVittie2-2/+7
2010-09-20Prepare version 0.12.0telepathy-glib-0.12.0Simon McVittie2-6/+44
2010-09-20Alter generation of version.xml to work when building out-of-treeSimon McVittie4-5/+9
It's in the srcdir, because that's how gtk-doc works...
2010-09-20Mention the optional Vala dependency in READMESimon McVittie1-0/+1
2010-09-20Upload documentation to the 0.12.x locationSimon McVittie2-1/+3
To be reverted on master after releasing 0.12.0.
2010-09-20Include the telepathy-glib version, and a link to the website, in the docsSimon McVittie4-3/+14
Also mention "API" rather prominently, since searching Google for "telepathy-glib api" doesn't currently find this documentation.
2010-09-20Require Vala 0.10.0 for the Vala bindingsSimon McVittie1-1/+1
It's the only version that the libfolks developers have verified to work properly, so it's safest to depend on it.
2010-09-20configure.ac: if g-i is older than 0.9.6, disallow Vala bindingsSimon McVittie1-0/+4
libfolks is the only major consumer of our Vala bindings for this release cycle, and it needs g-i 0.9.6. Since most of the g-i usage is during our build, I think we're better off having it fail early, rather than producing Vala bindings that turn out not to work.
2010-09-20Don't check documentation completeness in this (soon to be) stable branchSimon McVittie1-3/+5
2010-09-15Nano versionSimon McVittie2-1/+6
2010-09-15Disable warnings about deprecated functions for stable branchtelepathy-glib-0.11.16Simon McVittie1-1/+2
Since this is (about to be) a stable branch, we're unlikely to fix uses of deprecated functions, so we shouldn't warn about them. (To be reverted in master after branching)
2010-09-15Direct bug reports to 0.12 version since we're about to branch itSimon McVittie1-1/+1
2010-09-15Include missing svc-tls section in documentationSimon McVittie1-0/+1