2012-10-09  Daniel P. Berrange  <berrange@redhat.com>

	Update deps in README and date in NEWS

	Add missing BR on libosinfo-devel to RPM spec

2012-09-20  Michal Privoznik  <mprivozn@redhat.com>

	spec: Cleanup for rpmlint
	In order to prevent warnings and errors from rpmlint we need
	to cleanup spec file: capitalization summary and spell check
	(s/runtime/run-time/)

	Create manpage for virtxml

2012-09-18  Michal Privoznik  <mprivozn@redhat.com>

	spec: Remove unused rules
	and update to reflect virtxml binary.

	domain.c: Document @error on public APIs
	to prevent warnings when generating the documentation.

	Create basic documentation
	In fact, it's only bare skeleton for gtkdoc

2012-09-17  Michal Privoznik  <mprivozn@redhat.com>

	Implement resources setting
	Users can choose between minimum and recommended values
	for VCPU count and amount of RAM. Moreover, recommended
	values should inherit defaults from the minimum.

	virtxml: Detect platform from libvirt connection URI
	as in nearly all cases users will install the guest
	on current libvirt we've just obtained capabilities from.

	virtxml: Detect OS from given ISO
	In some cases telling OS version is redundant as ISO image
	with specified OS is passed some arguments later as disk.
	Don't require --os then.

	virtxml: Init variables
	to avoid their uninitialized usage.

2012-09-14  Christophe Fergeau  <cfergeau@redhat.com>

	build: allow building with newer glibc-headers and -O0
	Fix copied from libvirt, commit by Eric Blake.

	glibc 2.15 (on Fedora 17) coupled with explicit disabling of
	optimization during development dies a painful death:

	/usr/include/features.h:314:4: error: #warning _FORTIFY_SOURCE requires
	compiling with optimization (-O) [-Werror=cpp]

	Work around this by only conditionally defining _FORTIFY_SOURCE,
	in the case where glibc can actually use it.  The trick is using
	AH_VERBATIM instead of AC_DEFINE.

2012-09-12  Michal Privoznik  <mprivozn@redhat.com>

	add_disk_full: Only set error if !NULL

	get_supported_disk_bus_types: NULL is valid list
	There is no need to check return value of g_hash_table_get_keys()
	which is passed to g_list_copy as even NULL is valid list in glib.

	init_check: Ignore DB loading errors
	Osinfo DB loader returns an error if users have a malformed XML file.
	However, it doesn't affect loading of other files, so we should not
	make those errors fatal. In addition, if osinfo DB is empty users
	will obtain appropriate error on very next API involving querying
	the DB.

2012-09-11  Michal Privoznik  <mprivozn@redhat.com>

	virtxml: Drop direct libvirt usage
	and switch to libvirt-gobject when connecting to libvirtd
	and fetching capabilities.

	style: Use two blank lines between functions

	disk_add: Don't hardcode 'qemu' driver
	but depend on domain virt type instead.

2012-09-10  Michal Privoznik  <mprivozn@redhat.com>

	domain: Introduce interface support
	Let users add NICs to domains.

	examples: Create an example of usage program

	domain: Introduce disk support
	Let users add either files or devices as disks to domains.

	Load osinfo DB on init
	as we need this DB later to find an OS or hypervisor and supported
	devices.

2012-07-31  Daniel P. Berrange  <berrange@redhat.com>

	Add GIT ignore file

	Introduce APIs for setting up optimal virt type / os type / arch

2012-07-30  Daniel P. Berrange  <berrange@redhat.com>

	Import basic library framework
