2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	1.30.1

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	.desktop file: Remove now useless X-Osso-Service entry.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Application: Change application ID to org.glom.Glom.

	Instead of org.glom.application.
	This is more generically correct and will look more sane when used in
	an xdg-app manifest.json file.

2015-12-11  Pedro Albuquerque  <palbuquerque73@gmail.com>

	Updated Portuguese translation

2015-12-11  Piotr Drąg  <piotrdrag@gmail.com>

	AppData: Mark strings for translation.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	AppData: Add more screenshots.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	AppData: Use larger screenshot image.

	Because appstream-util validate said its width was too small.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	appdata: Use <image> and <caption> tags.

	This also seems to be the new way to do things.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	appdata: Add <name> and <summary> tags.

	These seem to be new since I created this file.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Add missing file.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Update .gitignore

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	glom_pygda_value_as_boost_pyobject(): Handle GDA_TYPE_NULL explicitly.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	glom_pygda_value_from_pyobject(): Handle Py_None explicitly.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Check for empty() instead of size().

	Found by cppcheck.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	TranslatableItem: Correct switch cases.

	Found by cppcheck.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Add missing explicit.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Utils::get_temp_file_path(): Actually use our pattern.

	Found by cppcheck, which reported an unused variable.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Avoid a comparison of bool with -1.

	This seems to be a (useful) new check in g++ 5.2.

2015-12-11  Murray Cumming  <murrayc@murrayc.com>

	Add missing iostream include.

	Something else must have included this until now.

2015-10-20  Murray Cumming  <murrayc@murrayc.com>

	AX_BOOST_PYTHON: Update for the AX_PYTHON_DEVEL change.

	Because AX_PYTHON_DEVEL now provides PYTHON_LIBS instead of PYTHON_FLAGS,
	this script needs to be updated accordingly.
	This lets AX_BOOST_PYTHON actually find the boost python library
	on newer systems that ignore the -l flags if they appear before the
	source file on the command line.

	I'm not sure why I needed to add PYTHON_LIBS to LIBS in the AC_CACHE_CHECK()
	line, though it apparently wasn't necessary to use PYTHON_LDFLAGS there
	before. I suspect that much of this file doesn't really make sense.

	I have submitted this patch upstream:
	https://savannah.gnu.org/patch/index.php?8776

2015-10-20  Murray Cumming  <murrayc@murrayc.com>

	Makefile*.am: Use PYTHON_LIBS instead of PYTHON_LDFLAGS.

	Because that is what AX_PYTHON_DEVEL now provides.

2015-10-20  Murray Cumming  <murrayc@murrayc.com>

	AX_BOOST_PYTHON: Revert to upstream version.

2015-10-20  Murray Cumming  <murrayc@murrayc.com>

	AX_PYTHON_DEVEL: Use the latest version of this m4 macro.

	Including my correction to makr it provide PYTHON_LIBS instead of
	PYTHON_LDFLAGS:
	to fix this problem properly:
	http://stackoverflow.com/questions/31304553/linker-error-with-libboost-python-py34-on-ubuntu-15-04/31330681#31330681