2015-12-11 Murray Cumming 1.30.1 2015-12-11 Murray Cumming .desktop file: Remove now useless X-Osso-Service entry. 2015-12-11 Murray Cumming 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 Updated Portuguese translation 2015-12-11 Piotr Drąg AppData: Mark strings for translation. 2015-12-11 Murray Cumming AppData: Add more screenshots. 2015-12-11 Murray Cumming AppData: Use larger screenshot image. Because appstream-util validate said its width was too small. 2015-12-11 Murray Cumming appdata: Use and tags. This also seems to be the new way to do things. 2015-12-11 Murray Cumming appdata: Add and tags. These seem to be new since I created this file. 2015-12-11 Murray Cumming Add missing file. 2015-12-11 Murray Cumming Update .gitignore 2015-12-11 Murray Cumming glom_pygda_value_as_boost_pyobject(): Handle GDA_TYPE_NULL explicitly. 2015-12-11 Murray Cumming glom_pygda_value_from_pyobject(): Handle Py_None explicitly. 2015-12-11 Murray Cumming Check for empty() instead of size(). Found by cppcheck. 2015-12-11 Murray Cumming TranslatableItem: Correct switch cases. Found by cppcheck. 2015-12-11 Murray Cumming Add missing explicit. 2015-12-11 Murray Cumming Utils::get_temp_file_path(): Actually use our pattern. Found by cppcheck, which reported an unused variable. 2015-12-11 Murray Cumming Avoid a comparison of bool with -1. This seems to be a (useful) new check in g++ 5.2. 2015-12-11 Murray Cumming Add missing iostream include. Something else must have included this until now. 2015-10-20 Murray Cumming 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 Makefile*.am: Use PYTHON_LIBS instead of PYTHON_LDFLAGS. Because that is what AX_PYTHON_DEVEL now provides. 2015-10-20 Murray Cumming AX_BOOST_PYTHON: Revert to upstream version. 2015-10-20 Murray Cumming 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