2020-12-19  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  2.36.0

2020-12-19  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Regenerate docs.xml and .defs files

2020-12-11  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Change ABI to atkmm-2.36; Use glibmm-2.68 instead of glibmm-2.66

  So we can use the 2.30-2.34 version numbers for stable releases in
  the atkmm-1.6 ABI series.
  
  We've done similar ABI name changes before.

2020-11-01  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Fix some comments

  * atk/src/editabletext.hg: Improve the description of the relation
  between Text and EditableText.
  * atk/src/relation.ccg: Remove an obsolete TODO comment.

2020-10-01  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Meson build: Fix versioning on macOS

  See libsigcplusplus, pull request 65

2020-07-23  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Use Meson-style DLL and .lib naming if requested

  To make things more consistent and less prone to confusion, if 'USE_MESON_LIBS'
  is specified in the NMake command line, build the DLLs and .lib's that are
  named like the Meson counterparts.  Binaries built with Meson+Visual Studio
  and the ones that are built via NMake using 'USE_MESON_LIBS' are
  interchangeable, provided that they are built with the same Visual Studio
  version.

2020-07-22  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Fix builds from release tarballs

  This will avoid re-generating atkmm.rc and atkmmconfig.h unneedingly, and
  ensure that we do have the version info in those files when we do need to
  generate them.
  
  Also streamline the process so that these files are generated as part of the
  'all' target, so there is no need to run the 'prep-git-build' target explicitly

2020-07-08  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Support ARM64 Windows builds

  This will make the NMake Makefiles capable of building ARM64 binaries of atkmm,
  which can be used on Windows 10 on ARM systems.

2020-06-30  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Apply toolset version for Meson-built deps

  As the Meson build files for Visual Studio apply the toolset version in the
  .lib filenames by default, apply the toolset version in the Meson-built -mm
  .lib files that we link in, just as we did when we we link in the -mm .lib
  files that was built with NMake, by default.
  
  The option 'USE_COMPAT_LIBS' will also mean that we will use the former
  behavior when we link in the Meson-built -mm .lib's, just as we did when we
  link in the NMake-built -mm .lib's.
  
  Also fix the case also when the 'USE_COMPAT_LIBS' option is used and when
  'USE_MESON_LIBS' is not used on Visual Studio 2017, where the toolset version
  was not correctly applied.

2020-06-29  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  doc/reference/: Update for Doxygen >= 1.8.16

  * doc/reference/meson.build: Doxygen 1.8.16 and later does not store
  tag file names in the html files. This requires changes in meson.build
  and in doc-install.pl (in mm-common). Otherwise references to other modules
  won't be updated in the html files when they are installed.
  * doc/reference/Doxyfile.in: Remove PERL_PATH and MSCGEN_PATH.
  Doxygen since version 1.8.0 does not use them.

2020-06-29  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Meson/Visual Studio builds: Include toolset version by default

  This makes the built DLL and .lib's contain the toolset version if the build is
  carried out using Visual Studio 2017 or later, unless the
  'msvc14x-parallel-installable' option is set to be false during configuration.
  
  The reasoning behind this change is that there can be subtle problems when, for
  instance, one tries to link to a Visual Studio 2017-built atkmm when building
  items dependening on atkmm with Visual Studio 2019.  This is unfortunate as
  Microsoft did try hard to make interoperating between binaries built with
  Visual Studio 2015, 2017 and 2019 as easy as possible in terms of ABI and API,
  but unfortunately this can hit the corner cases where this compatibility does
  not work.
  
  As the name suggests, this attempts to make Visual Studio 2017 and 2019
  builds share a single set of underlying C DLLs easier, while avoiding breakages
  caused by such subtle differences.

2020-06-29  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Meson: Use pkg-config to find glibmm for all builds

  Stop manually looking for glibmm for better consistency, as:
  
  -Items that depended on glibmm which added Meson build support after glibmm,
   such as gtkmm and libxml++ also required glibmm to be found via pkg-config
   files, and they still had NMake Makefile support for Visual Studio builds.
  -There could be corner cases on the glibmm libraries that atkmm links to in
   terms of ABI compatibility between Visual Studio 2017 and 2019.

2020-06-16  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Fix header 'installation'

  For Meson-generated source tarballs, we need to look in $(srcroot)/untracked
  for the header files as well.

2020-06-16  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Use toolset version in DLL/.lib naming

  Instead of using the Visual Studio version ('vc150' for Visual Studio 2017),
  use the toolset version ('vc141' for Visual Studio 2017 and 'vc142' for Visual
  Studio 2019, as defined by Microsoft) so that we are more in-line with what
  is now done in the atkmm-2-28 branch.
  
  If using the old naming convention is desired, an NMake command line option
  'USE_COMPAT_LIBS' have been added-note that this will require glibmm and
  libsigc++ to be built with that option enabled.

2020-04-17  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Support building from Meson-generated tarballs

  This adds rules to the NMake Makefiles so that they will also look for the sources in
  untracked/.  One still need to use the 'prep-git-build' target to generate the full
  atkmmconfig.h and atkmm.rc source files for such release tarballs, if PERL is present,
  or manually edit those files from their .in templates to their full counterparts.

2020-04-17  Chun-wei Fan  <fanchunwei@src.gnome.org>

  meson: Use /utf-8 for Visual Studio builds

  We check for its presence and use it if there, which is always the case since we need
  Visual Studio 2017 15.7.x or later.  This avoids warning (error) C4819 being  triggered
  when attempting to build atkmm on East Asian locales of Windows.

2020-04-15  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Add support for building atkmm with Meson

  atkmm can be built with either Autotools or Meson.
  New files have been copied from pangomm and modified.
  
  See MR !7

2020-04-13  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  atk/atkmm.pc.in: Add atkmmconfig.h's install directory

  Add -I${libdir}/@ATKMM_MODULE_NAME@/include to the C flags, so other modules
  can include header files that include atkmmconfig.h.

2020-04-05  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Fix m4 file installation

  It should be in $(sharedir)/atkmm-x.y/proc/m4, not
  $(sharedir)/atkmm-x.y/proc.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Drop gendef from the sources

  We are now using compiler directives to export atkmm symbols for all
  builds, so it's time to drop the venerable gendef fmro the sources.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Stop building and using gendef

  We can now use compiler directives to export symbols from atkmm by
  defining ATKMM_API as __declspec(dllexport) via defing ATKMM_BUILD, so
  we no longer need to use gendef.exe to export the symbols.
  
  The next commit will remove gendef from the atkmm sources.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  atk/atkmm/*.h: Mark methods with ATKMM_API

  This way, we can export symbols in atkmm using compiler directives
  rather than using gendef.exe.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  atk/src/*.hg: Mark classes with ATKMM_API

  This way, we can export the symbols in atkmm with compiler directives
  instead of using gendef.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  atk/atkmmconfig.h.in: Re-organize ATKMM_API definition

  We also activate ATKMM_DLL when we are building with Visual Studio, and
  define ATKMM_API as __declspec(dllexport) when ATKMM_DLL and ATKMM_BUILD
  are defined.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Use 'md', not 'mkdir'

  This avoids confusion with the unixy ones supplied by Cygwin or MSYS64,
  since we could be using tools from there to enable building from GIT
  checkouts.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Fix header "installation"

  We may have the (generated) headers in $(Outdir)\atkmm, so make sure we
  look for the headers from there as well.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: "Install" files in codegen/m4

  This way, we could have the *.m4 files in place so that we can use them
  to build gtkmm directly from a GIT checkout.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Add rules to generate sources

  This allows one to be able to build directly from a GIT checkout, after
  first running the prep-git-build target, by running gmmproc from an
  installation of glibmm master.
  
  Note that in order to perform such a build, one will need *nix/GNU tools
  such as common *nix commands 'cp' and 'rm' etc, along with PERL (with
  XML::Parser) and the GNU m4 tool.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Allow linking to Meson-built glibmm

  The option USE_MESON_LIBS now applies to linking to Meson-built glibmm,
  since it is now buildable with Meson.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Disable warnings C4251 and C4275

  Since we are building against GLib that use __declspec(dllimport) to
  import symbols, we can safely ignore warnings C4251 and C4275, as they
  are harmless in this case as we are certain that we are really using
  those compiler directives.

2020-04-01  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Fix build instruction display

  Some '<' and '>' need to be carat-escaped...

2020-03-17  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Use glibmm-2.66 instead of glibmm-2.64

  We have changed the ABI name in glibmm.

2020-02-27  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Add rules to generate pre-configure items

  This will allow building from GIT checkouts easier, where we need the
  full atkmmconfig.h and atkmm.rc to carry out our builds with NMake.

2020-02-07  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Bump glibmm version

  glibmm master is now versioned at 2.64, so update this accordingly

2020-02-07  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Add option to use Meson-built libsigc++

  This makes it easier for people to build and link against Meson-built
  libsigc++-3.x, by providing an NMake command line option.

2020-02-07  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Use /utf-8

  This avoids error C4819 due to unicode handling issues in the compiler,
  which is often raised when attempting to build in East-Asian locales
  (Chinese, Japanese and Korean).  Since Visual Studio 2017 is required to
  build the C++17/master branch of atkmm, this is enabled for all builds.

2020-02-07  Chun-wei Fan  <fanchunwei@src.gnome.org>

  NMake Makefiles: Split outdir and intdir by toolset version

  This makes things a bit cleaner so that we reduce the likelyhood of
  building and linking against objects and libraries with different CRT
  versions, which is a source of trouble.

2019-09-18  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Use glibmm-2.64 instead of glibmm-2.62

  We have changed the ABI name in glibmm.

2019-07-23  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Hyperlink, Object: Remove deprecated properties

  * atk/src/hyperlink.hg: Remove property_selected_link().
  * atk/src/object.hg: Remove 6 deprecated properties.

2019-07-23  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Object, Text, Value: Add some API

  * atk/src/object.hg: Add get_object_locale(), get/set_accessible_id(),
  property_accessible_table_caption_object() and
  property_accessible_hypertext_nlinks().
  * atk/src/text.hg: Add signal_text_insert() and signal_text_remove().
  * atk/src/value.hg: Add signal_value_changed().

2019-07-23  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Regenerate atk_docs.xml and .defs files

2019-03-21  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Doxyfile.in: Remove obsolete glibmm configuration constants

  They have been removed from glibmm. See issue glibmm#22.

2019-03-19  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Use glibmm-2.62 instead of glibmm-2.60

  We have changed the ABI name in glibmm.

2018-12-30  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  codegen/generate_defs_and_docs.sh: Update for non-source-dir builds

  Most modules (e.g. atk) can be built in a directory separated from the
  source directory. Update the script that generates .defs and doc.xml files
  to handle that.
  The environment variables GMMPROC_GEN_SOURCE_DIR and GMMPROC_GEN_BUILD_DIR
  are read. See comments in init_generate.sh.

2018-11-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  2.29.1

2018-11-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Change the ABI to atkmm-2.30

  So we can use the 2.28 version numbers for stable releases in the
  atkmm-1.6 ABI series.
  We don't need to release a stable ABI-parallel atkmm until
  we need to release gtkmm 4.0, and that won't happen until GTK+ 4.0.0
  happens, and we don't know when that might be.
  
  We've done similar ABI name changes before.

2018-11-01  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Object: Fix the type of property_accessible_role()

  It has been changed in atk.

2018-11-01  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Regenerate .defs and docs.xml files

  and update atk_docs_override.xml.

2018-11-01  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Use glibmm-2.60 instead of glibmm-2.58

  We have changed the ABI name in glibmm.

2018-10-25  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  configure.ac, atkmm.doap: Update bug report address

2018-09-11  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  doc/reference/Doxyfile.in: Use doxygen-extra.css

2018-09-10  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Update .gitignore

2018-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Fix reference documentation generation

  * atk/atkmm/filelist.gmake.am:
  * atk/atkmm/Makefile.am: Split out again the automake-specific part
  which we splitted out from atk/atkmm/filelist.am previously into a
  file of its own.
  * doc/Makefile.am: Include atk/atkmm/filelist.gmake.am so that we
  get a complete set of documentation generated.

2018-08-27  Chun-wei Fan  <fanchunwei@src.gnome.org>

  build: Remove the Visual Studio 2017 projects

  Since the NMake Makefiles are in place, remove the Visual Studio
  projects as they have been superseded.

2018-08-27  Chun-wei Fan  <fanchunwei@src.gnome.org>

  build: Add NMake Makefiles for Visual Studio builds

  This adds the NMake Makefiles to be used to build atkmm using Visual
  Studio 2017 or later, which will supersede the Visual Studio 2017
  projects.  This is done to simplify future maintenance, by making use
  of the atk/src/filelist.am and atk/atkmm/filelist.am, which is shared
  with the autotools build system.

2018-08-22  Chun-wei Fan  <fanchunwei@src.gnome.org>

  build: Split out GNU-specific syntax from atk/atkmm/filelist.am

  This will make atk/atkmm/filelist.am usable for Visual Studio NMake as
  well.

2018-08-22  Chun-wei Fan  <fanchunwei@src.gnome.org>

  build: Rename MSVC_Net2017 to MSVC_NMake

  This is to prepare for the transition of the Visual Studio build files
  to NMake Makefilesm to ease future maintenance.

2018-04-08  Murray Cumming  <murrayc@murrayc.com>

  Require C++17

  Because libsigc++-3.0 (and therefore glibmm) now requires C++17.

2018-03-26  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Use glibmm-2.58 instead of glibmm-2.56

  We have changed the ABI name in glibmm.

2018-02-22  Murray Cumming  <murrayc@murrayc.com>

  2.27.1

2018-02-22  Murray Cumming  <murrayc@murrayc.com>

  Change ABI to atkmm-2.28

  Instead of atkmm-2.26. To match the most recent ATK+ version.

2017-09-14  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Object, Text: Add detail_name to some _WRAP_SIGNAL()s

  * atk/src/object.hg: signal_children_changed() accepts an "add" or "remove"
  detail. signal_property_changed() accepts a property_name parameter.
  signal_state_change() accepts a state_name parameter.
  * atk/src/text.hg: signal_text_changed() accepts an "insert" or "delete"
  detail.

2017-09-14  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Regenerate atk_signals.defs and atk_signals.defs.patch

2017-09-14  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Update codegen/generate_defs_and_docs.sh

2017-09-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Update .gitignore

2017-09-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Regenerate atk_docs.xml and the .defs files

  and add some substitute_enumerator_name elements to atk_docs_override.xml.

2017-09-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  generate_defs_and_docs.sh: Update for atk built with meson

  When atk is built with meson instead of autotools, generated .h and .c
  files are stored in atk/build/atk. Files in that directory shall be read
  when atk_docs.xml and the .defs files are generated.
  
  atk_signals.defs contain manually changed lines. Add a .defs.patch file
  that automatically makes these changes when atk_signals.defs is regenerated.

2017-08-25  Murray Cumming  <murrayc@murrayc.com>

  2.25.4

2017-08-25  Murray Cumming  <murrayc@murrayc.com>

  Use glibmm-2.56 instead of glibmm-2.54.

  We have changed the ABI name in glibmm.

2017-06-26  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Text: Plug memory leaks in get_text_vfunc() and get_selection_vfunc()

  These vfuncs shall delete the returned character array after it has been
  copied to a Glib::ustring. Bug 783360

2017-04-26  Murray Cumming  <murrayc@murrayc.com>

  2.53.3

2017-04-26  Murray Cumming  <murrayc@murrayc.com>

  Text: Move enums into the class.

2017-04-26  Murray Cumming  <murrayc@murrayc.com>

  Relation: Change RelationType to Relation::Type.

2017-04-11  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Fix build when _WRAP_ENUM generates enum class

  Bug 86864

2017-04-07  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Visual Studio builds: Update glibmm ABI version

  We need to bump up the ABI version of glibmm as it was changed in the
  latest unstable series (as we await for GTK+-4.0).

2017-03-30  Murray Cumming  <murrayc@murrayc.com>

  2.25.2

2017-03-22  Murray Cumming  <murrayc@murrayc.com>

  Use glibmm-2.54 instead of glibmm-2.52

  We changed the ABI name of the currently-unstable glibmm series.

2017-03-17  Murray Cumming  <murrayc@murrayc.com>

  Replace remaining uses of Glib::ArrayHandle<> with vector.

  Using Glib::ArrayHandler<>::array_to_vector() and
  Glib::ArrayHandler<>::vector_to_array() instead, and only in the
  implementation instead of in the API.

2017-03-17  Murray Cumming  <murrayc@murrayc.com>

  Text, EditableText: Use vector instead of SListHandle<>.

  Using Glib::SListHandler<>::slist_to_vector() and
  Glib::SListHandler<>::vector_to_slist() instead, and only in the
  implementation instead of in the API.

2017-03-14  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Fix previous commit

  Sorry, I accidentaly committed the PaxHeaders.xxxxx directories, which
  should not be in version control.

2017-03-14  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Visual Studio builds: Require Visual Studio 2017

  As atkmm master needs C++-14 features that is only fully supported on
  Visual Studio 2017, update the projects to become 2017 projects.
  
  Also make sure that we depend on libsigc++-3.x and glibmm-2.52+, and
  make them settings in property sheets so that it is easier to bump these
  versions if they need to be updated in the future.

2017-01-19  Murray Cumming  <murrayc@murrayc.com>

  C++11: Use of auto.

2017-01-19  Murray Cumming  <murrayc@murrayc.com>

  C++11: Use of nullptr.

2017-01-04  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Visual Studio builds: "Install" the .pdb files

  Since we already generate the .pdb file during the build, we should make
  good use of it to help debugging.

2016-11-23  Murray Cumming  <murrayc@murrayc.com>

  2.25.1

2016-11-15  Murray Cumming  <murrayc@murrayc.com>

  Link to the glibmm-2.52 version of glibmm_generate_extra_defs.

2016-11-14  Murray Cumming  <murrayc@murrayc.com>

  Build: Require C++14 instead of C++11.

  Because we now use a glibmm that requires C++14.

2016-11-11  Murray Cumming  <murrayc@murrayc.com>

  Remove deprecated API.

2016-11-11  Murray Cumming  <murrayc@murrayc.com>

  Use the glibmm-2.52 API instead of glibmm-2.4 ABI.

2016-11-11  Murray Cumming  <murrayc@murrayc.com>

  Change ABI from atkmm-1.6 to atkmm-2.26

  This installs in parallel with atkmm-1.6.

2016-07-19  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Build: Fix silent builds

  * configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds.
  Replace MM_AX_CXX_COMPILE_STDCXX_11 by MM_AX_CXX_COMPILE_STDCXX (not necessary
  for silent builds).
  * docs/reference/Doxyfile.in: Set QUIET=YES.
  Update for doxygen 1.8.11 (not necessary for silent builds).
  Bug #768797

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

  2.24.2

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

  Require a recent glibmm.

  To use the latest gmmproc.

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

  Regenerate atk_docs.xml.

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

  --enable-warnings=fatal: Use the same warnings as glibmm and gtkmm.

2015-09-22  Murray Cumming  <murrayc@murrayc.com>

  2.24.1

2015-09-21  Murray Cumming  <murrayc@murrayc.com>

  2.24.0

2015-09-17  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Update .gitignore for MSVC-Specific Items

2015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC Builds: Update Project Files

  A newly-added source was missing from the build, so make up for it.

2015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC Builds: Update .sln File to 2013 Format

  The solution file needs to be updated as well...

2015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC Builds: Improve Build Speed and Debugging Experience

  Use multiprocessor compilation, which can cut down build times by quite a
  bit, and use /d2Zi+ to put more useful info into the .pdb's in release
  builds.

2015-09-10  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC Builds: Support Visual Studio 2013 (and later) Only

  atkmm now requires a C++-11-capable compiler in order to build it, which is
  equivilant to Visual Studio 2013 and later, so we:
  
  -Drop the Visual Studio 2005 and 2008 projects
  -Move the 2010 projects to become 2013 projects, as their formats are
   largely the same.

2015-09-03  Murray Cumming  <murrayc@murrayc.com>

  2.23.3

2015-08-22  Murray Cumming  <murrayc@murrayc.com>

  configure.ac: Require the latest glibmm.

  To use the latest gmmproc, which generates more move operations,
  and to have the latest Glib::Object/ObjectBase/Interface which have
  move operations that those generated move operations call.

2015-07-15  Murray Cumming  <murrayc@murrayc.com>

  2.23.2

2015-07-15  Murray Cumming  <murrayc@murrayc.com>

  Require the latest glibmm.

  For the latest gmmproc.

2015-07-15  Murray Cumming  <murrayc@murrayc.com>

  configure.ac: Use MM_AX_CXX_COMPILE_STDCXX_11() from mm-common.

  Instead of a copy of AX_CXX_COMPILE_STDCXX_11().

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

  Require C++11.

  configure.ac: Use AX_CXX_COMPILE_STDCXX_11 to check for compiler
  support for C++11 and use it (--std=c++11 for current versions of
  g++).
  
  Among other reasons, this is because glibmm now requires C++11,
  and its gmmrpoc generates C++11 code.

2015-06-30  Murray Cumming  <murrayc@murrayc.com>

  2.231

2015-06-30  Murray Cumming  <murrayc@murrayc.com>

  configure.ac: Require the latest glibmm.

  To use the latest gmmproc, which generates nicer code for use of
  deprecated C API.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  configure.ac: Re-enable deprecation warnings as errors.

  When using --enable-warnings=fatal.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Text: Add get_string_at_offset(), deprecating other methods for it.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Table: Deprecate get_column/row_at_index().

  The C documentation doesn't have real deprecation documentation for these,
  so neither do we.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Table: Add a get_at() const version and deprecate get_index_at().

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Document: get_document_type(): Really use the deprecated option.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Remove #undefs of ATK_DISABLE_DEPRECATED to use deprecated API.

  This is no longer necessary with the latest gmmproc.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Value: _IGNORE() get_minimum_increment().

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Value: deprecate get_minimum/maximum_range().

  Adding Range so we can add get_range() as their replacement.

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Component: Deprecate add/remove_focus_handler, get_size() and get_position().

2015-06-29  Murray Cumming  <murrayc@murrayc.com>

  Value: Add get_value_and_text(), get_increment(), and set_value().

  Deprecating get_current_value() and set_current_value().

2015-03-24  Murray Cumming  <murrayc@murrayc.com>

  Text: Avoid the new-style deprecation warning.

2015-03-24  Murray Cumming  <murrayc@murrayc.com>

  Regenerated *_docs.xml file.

2015-03-24  Murray Cumming  <murrayc@murrayc.com>

  Regenerated .defs files.

2015-03-24  Murray Cumming  <murrayc@murrayc.com>

  Document: Add get/set_attribute() and deprecate get_document() and get_document_type().

2014-09-22  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC 2008/2010 Projects: Add "Install" Project

  This adds a "install" project for the Visual Studio 2008 and 2010 projects
  so that the builds results can be copied to a common directory together
  with the depedencies so that they can be integrated and tested together,
  and will help to simplify deployment.
  
  * MSVC_Net2008/atkmm-install.vsprops:
  * MSVC_Net2008/install.vcproj:
  * MSVC_Net2010/atkmm-install.props:
  * MSVC_Net2010/install.vcxproj: Add project files and property sheets to
    copy the build results to a common directory in the build root directory.
  * MSVC_Net2008/atkmm.sln:
  * MSVC_Net2010/atkmm.sln: Include the "install" project in the build.
  * MSVC_Net2008/filelist.am: Distribute the newly-added project files and
    property sheets.

2014-09-19  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Overhaul the Visual Studio 2010 Projects

  Give the Visual Studio 2010 Projects an overhaul, by using property sheets
  to consolidate commonly-used items, so to ease future maintenance, and move
  all the projects to MSVC_Net2010.
  
  	* MSVC_Net2010/atkmm-build-defines.props:
  	* MSVC_Net2010/atkmm-version-paths.props: Add property sheets to
  	  consolidate the commonly-used items, so that projects can refer
  	  to them.
  	* MSVC_Net2010/gendef/gendef.vcxproj:
  	* MSVC_Net2010/gendef/gendef.vcxproj.filters:
  	* MSVC_Net2010/atkmm/atkmm.vcxproj:
  	* MSVC_Net2010/atkmm/atkmm.vcxproj.filters: Clean up using the
  	  property sheets, and move to MSVC_Net2010/.  Adjust the file
  	  paths accordingly, and add a PlatformToolset tag so that it would
  	  be easier to support Visual Studio 2012/2013.  Also produce
  	  .pdb files for Release builds.
  	* MSVC_Net2010/atkmm.sln:
  	* MSVC_Net2010/filelist.am: Adjust file paths accordingly.

2014-09-19  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Overhaul the Visual Studio 2008 Projects

  Overhaul the Visual Studio 2008 Projects by using property sheets to
  consolidate commonly-used items, so that projects can refer to them, which
  will help to simplify future maintenance, and move all the projects to
  MSVC_Net2008/.
  
  	* MSVC_Net2008/atkmm-build-defines.vsprops:
  	* MSVC_Net2008/atkmm-version-paths.vsprops: Added property sheet
  	  files used to consolidate commonly-used items to be referred to
  	  from the projects.
  	* MSVC_Net2008/gendef/gendef.vcproj:
  	* MSVC_Net2008/atkmm/atkmm.vcproj: Move to MSVC_Net2008/, and
  	  clean up by using the property sheets.  Adjust the source file
  	  paths accordingly.
  	* MSVC_Net2008/atkmm.sln:
  	* MSVC_Net2008/filelist.am: Adjust file paths accordingly.

2014-09-17  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Cleanup and Fix Visual Studio 2008/2010 Projects

  We don't need to include blank.cpp in our builds, as the IDE recognize .cc
  files, and building with /vd2 brings more trouble than benefit, causing
  weird crashes.
  
  	* MSVC_Net2008/gendef/gendef.vcproj: Don't include blank.cpp in the
  	  builds, it's not needed.
  	* MSVC_Net2008/atkmm/atkmm.vcproj: Don't include blank.cpp in the
  	  builds, it's not needed.  Don't compile with /vd2 as it is a
  	  source of weird crashes, such as in the gtkmm demo program.
  	* MSVC_Net2010/atkmm/atkmm.vcxproj: Don't compile with /vd2 as it
  	  is a source of weird crashes, such as in the gtkmm demo program.

2014-09-11  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  doap: Add description, download-page, bug-database, programming-language

2014-07-30  Olav Vitters  <olav@vitters.nl>

  doap category core

2013-09-09  Chun-wei Fan  <fanchunwei@src.gnome.org>

  Update the MSVC Project Files

  * MSVC_Net2005/gendef/gendef.vcproj:
    MSVC_Net2008/gendef/gendef.vcproj:
    MSVC_Net2010/gendef/gendef.vcxproj:
    MSVC_Net2005/atkmm/atkmm.vcproj:
    MSVC_Net2008/atkmm/atkmm.vcproj:
    MSVC_Net2010/atkmm/atkmm.vcxproj: Clean up the project files by purging
    unneeded entries, macros and whitespace.
  
    Also improve on the project files by adding to the
    AdditionalIncludeDirectories and AdditionalLibraryDirectories so that
    they can find and use the deps from a local build directory instead
    of using builds in the global include and libs path.  This is useful when
    we are building an unstable release as unstable releases usually require
    the latest unstable releases of their respective deps, which we do not
    usually want to place where they are used globally.
  
    Fix the last commit to the ChangeLog file, as I forgot to change the
    email address in my last commit.

2013-09-09  Chun-wei Fan  <fanchunwei@src.gnome.org>

  MSVC Solution Files: Use DOS Line Endings

  * MSVC_Net2005/atkmm.sln:
  * MSVC_Net2008/atkmm.sln:
  * MSVC_Net2010/atkmm.sln: Use DOS/Windows line endings as Visual
    Studio expects .sln files to have DOS/Windows line endings in order to
    determine the Visual Studio version to use to open the .sln files.

2013-06-27  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Update .gitignore.

  * .gitignore: Add files that are copied to or generated in doc/ and
  MSVC_Net2010/atkmm/.

2013-06-27  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Update Doxyfile.in.

  * doc/reference/Doxyfile.in: Update for doxygen 1.8.3. Make it more similar
  to glibmm's and mm-common/skeletonmm's Doxyfile.in.

2013-06-27  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Update atk_docs.xml and most .defs files.

  * codegen/extradefs/generate_extra_defs_atk.cc: Added get_defs() for new
  ATK_TYPEs.
  * atk/src/atk_docs.xml:
  * atk/src/atk_enums.defs:
  * atk/src/atk_methods.defs: Generated by generate_defs_and_docs.sh.
  * atk/src/atk_signals.defs: Generated by generate_defs_and_docs.sh. Two lines
  modified manually (indicated by comments).

2013-06-27  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Add the generate_defs_and_docs.sh script.

  * codegen/generate_defs_and_docs.sh: New file. Script that generates
  atk_docs.xml and most .defs files.
  * codegen/Makefile.am: Distribute generate_defs_and_docs.sh.

2013-06-25  Kjell Ahlstedt  <kjell.ahlstedt@bredband.net>

  Atk::Text: Deprecate get_text_before_offset(), get_text_after_offset().

  * configure.ac: Don't treat the deprecated-declarations warning as an error,
  not even when --enable-warnings=fatal.
  * atk/src/text.hg: Deprecate get_text_before_offset() and
  get_text_after_offset() and the corresponding virtual functions. They have
  been deprecated in atk. Bug #703027.

2013-04-24  Murray Cumming  <murrayc@murrayc.com>

  2.22.7

2012-10-26  José Alburquerque  <jaalburqu@svn.gnome.org>

  Remove the use of g_type_init() because it has been deprecated.

  	* codegen/extradefs/generate_extra_defs_atk.cc: The docs for the
  	function says that the GType system is initialized automatically now
  	as of glib-2.36.

2011-10-26  Murray Cumming  <murrayc@murrayc.com>

  2.22.6

2011-10-25  Murray Cumming  <murrayc@murrayc.com>

  Add #includes needed with the latest glibmm.

  	* atk/src/action.hg:
  	* atk/src/component.hg:
  	* atk/src/document.hg:
  	* atk/src/object.hg:
  	* atk/src/relation.hg:
  	* atk/src/selection.hg:
  	* atk/src/stateset.hg:
  	* atk/src/streamablecontent.hg:
  	* atk/src/table.hg:
  	* atk/src/text.hg:
  	* atk/src/value.hg: Add individual includes now that gmmproc does not
  	add #include glibmm.h at the top of every generated header.

2011-09-22  Krzesimir Nowak  <qdlacz@gmail.com>

  Don't use obsolete macros.

  * autogen.sh: Warn about everything during autoreconf.
  * configure.ac: Replaced obsolete macros with their modern counterparts.

2011-03-30  Murray Cumming  <murrayc@murrayc.com>

  2.22.5

2011-03-30  Murray Cumming  <murrayc@murrayc.com>

  Use the latest mm-common.

  	* configure.ac: Require the latest version.
  	* doc/Makefile.am: Don't specify the mm-common .pl files to distribute
  	because mm-common now does this automatically.

2011-03-26  Kalev Lember  <kalev@smartlink.ee>

  Install the m4 files without --enable-maintainer-mode

  * Makefile.am: Install the convert.m4 files even if we aren't in
  maintainer mode; this makes sure distro packages pick up the files.

2011-03-25  Murray Cumming  <murrayc@murrayc.com>

  2.22.4

2011-03-25  Murray Cumming  <murrayc@murrayc.com>

  Avoid a tarball dependency on mm-common.

  * configure.ac: Add a call to MM_CONFIG_DOCTOOL_DIR() telling it to
  copy the files locally and use them from there.
  * doc/Makefile.am: Dist the copied files, so that the build does not
  try to use the versions installed by mm-common.

2011-03-23  Murray Cumming  <murrayc@murrayc.com>

  2.22.3

2011-01-08  Murray Cumming  <murrayc@murrayc.com>

  2.22.2

2011-01-07  Murray Cumming  <murrayc@murrayc.com>

  Allow other modules to use the m4 files.

  * codegen/Makefile.am: Install the m4 files, like gtkmm installs its files.
  * atk/atkmm.pc.in: Add the gmmproc4mdir variable so that other modules such
  as gtkmm and cluttermm can get the path to the m4 file, to avoid
  duplicating its contents.

2011-01-07  Murray Cumming  <murrayc@murrayc.com>

  Fix the build with --enable-warnings=fatal.

  	* configure.ac: Add no-long-long to avoid a warning caused by a newer glib.
  	Also avoid use of deprecated GLIBMM API and make sure that GSEAL is defined.

2010-11-20  Murray Cumming  <murrayc@murrayc.com>

  2.22.1

2010-11-20  Murray Cumming  <murrayc@murrayc.com>

  Add and distribute COPYING.tools containing the GPL.

  * COPYING.tools: This is necessary because the MSVC gendef.cc tool sources
  are under the GPL, not LGPL. They don't affect the licensing of the library
  itself.

2010-10-01  Armin Burgmeier  <armin@arbur.net>

  Add support for MSVC 2010 and 64 bit to MSVC project files

  2010-10-01  Armin Burgmeier  <armin@arbur.net>
  
  	* MSVC_Net2005/atkmm.sln:
  	* MSVC_Net2005/atkmm/atkmm.vcproj:
  	* MSVC_Net2005/gendef/gendef.vcproj:
  	* MSVC_Net2008/atkmm.sln:
  	* MSVC_Net2008/atkmm/atkmm.vcproj:
  	* MSVC_Net2008/gendef/gendef.vcproj:
  	* MSVC_Net2010/atkmm.sln:
  	* MSVC_Net2010/atkmm/atkmm.rc.in:
  	* MSVC_Net2010/atkmm/atkmm.vcxproj:
  	* MSVC_Net2010/atkmm/atkmm.vcxproj.filters:
  	* MSVC_Net2010/filelist.am:
  	* MSVC_Net2010/gendef/gendef.cc:
  	* MSVC_Net2010/gendef/gendef.vcxproj:
  	* MSVC_Net2010/gendef/gendef.vcxproj.filters:
  	* Makefile.am:
  	* configure.ac: Add support for MSVC 2010 and 64 bit.

2010-09-27  Murray Cumming  <murrayc@murrayc.com>

  2.22.0

2010-09-26  Armin Burgmeier  <armin@arbur.net>

  Fix MSVC project files

  2010-09-26  Armin Burgmeier  <armin@arbur.net>
  
  	Fix MSVC project files.
  
  	* MSVC_Net2005/atkmm.sln:
  	* MSVC_Net2008/atkmm.sln:

2010-09-20  Murray Cumming  <murrayc@murrayc.com>

  2.21.1

2010-06-28  Murray Cumming  <murrayc@murrayc.com>

  Documentation: Added main page.

  * atk/atkmm.h: Added text based on pangomm.h from pangomm.

2010-06-23  Murray Cumming  <murrayc@murrayc.com>

  2.21.1

2010-06-23  Murray Cumming  <murrayc@murrayc.com>

  Reduce version to 2.21, because atkmm has not broken ABI (yet?)

  * configure.ac: Reduce the tarball version.

2010-06-23  Murray Cumming  <murrayc@murrayc.com>

  Correct the ChangeLog. It is not autogenerated.

2010-06-23  Daniel Elstner  <danielk@openismus.com>

  Create new atkmm module, split off from gtkmm

