2011-06-07  Martyn Russell  <martyn@lanedo.com>

	Release 0.11.0

	docs/manpages: Fixed the way we include man pages.
	This is fixed a different way for tracker-0.10.
	This fixes distcheck

2011-06-07  Jürg Billeter  <j@bitron.ch>

	libtracker-sparql-backend: Drop unnecessary connection variable

	libtracker-sparql: Deprecate tracker_sparql_connection_get_direct
	It is equivalent to tracker_sparql_connection_get.

	libtracker-sparql-backend: Drop direct_only flag
	As the connection is a singleton, it does not make sense to have a
	construction flag. Calling tracker_sparql_connection_get and
	tracker_sparql_connection_get_direct in the same process triggered an
	assertion failure. This changes tracker_sparql_connection_get_direct to
	be equivalent to tracker_sparql_connection_get.

	The D-Bus proxies in libtracker-bus use lazy initialization, so they do
	not cause any overhead when constructing the connection.

	Direct-only can still be enforced on the process level by setting
	TRACKER_SPARQL_BACKEND=direct.

2011-06-07  Marek Černocký  <marek@manet.cz>

	Updated Czech translation

2011-06-07  Jürg Billeter  <j@bitron.ch>

	libtracker-bus: Use lazy initialization for D-Bus proxy objects

2011-06-06  Daniel Mustieles  <daniel.mustieles@gmail.com>

	Updated Spanish translation

2011-06-06  Jürg Billeter  <j@bitron.ch>

	libtracker-sparql-backend: Use GError instead of critical warnings
	Direct-only connections do not support updates or statistics. Report
	this limitation using GError instead of return_if_fail.

2011-06-03  Carlos Garnacho  <carlosg@gnome.org>

	tracker-extract: Fix compiler warning

	libtracker-miner: Do not connect anything to cancellable::cancel
	This isn't the right way of handling cancellation, instead let the
	callbacks use the GError just set to do so.

	libtracker-miner: Avoid possible race condition when cancelling extraction
	Operations for files that aren't sent to the extractor were instead finished
	an idle function, which could lead to double frees if the task was cancelled
	right in between (one resulting from cancellable::cancel, the other when
	dispatching the idle function).

	So, instead, don't do that in an idle at all, there is no reason why
	we can't call tracker_miner_fs_file_notify() right away.

2011-06-03  Jürg Billeter  <j@bitron.ch>

	libtracker-direct: Fix use_count on failed initialization