2024-01-27  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  2.50.2

2024-01-15  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  meson.build: Update htmlrefpub

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

  meson.build: Don't fail if warning_level=everything

2023-07-11  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Remove AUTHORS, HACKING, README.SUN; add info to README.md

  See gtkmm#140

2023-07-11  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Update pangomm.doap

2023-06-27  Chun-wei Fan  <fanchunwei@src.gnome.org>

  README.win32.md: Make dependencies clearer

  Make it clear that glibmm-2.68 and cairomm-1.16 refer to the C++17 branches of
  glibmm and cairomm, which are the glibmm-2.68.x and cairo-1.16.x or later
  branches/releases, including the master/main branch.

2023-06-27  Chun-wei Fan  <fanchunwei@src.gnome.org>

  README.win32: Convert to MarkDown

  Convert to MarkDown format so that the formatting is easier on the eye, and
  switch to UNIX line endings.
  
  Also update the info in there so that the actual build situation is better
  refleted, especially in regards to Visual Studio builds.  Re-organize items
  for the Meson builds to be under their respective headers for MinGW and Visual
  Studio.

2023-05-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Coverage: Don't use deprecated pango_coverage_ref/unref()

  They are deprecated since pango 1.52.0. It has been possible
  to use g_object_ref/unref() since pango 1.44.0.

2023-05-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Doxyfile.in: Remove obsolete entries

2023-05-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  pangomm.pc.in: Update htmlrefpub

2023-03-25  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  fontset.ccg: Use callback function with C linkage

  Code that mixes up C linkage and C++ linkage has undefined behavior.
  Most compilers make no difference between C and C++ linkage, so it
  has not been an issue so far. But see issue glibmm#1.

2023-03-25  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  meson.build: Simplify if-file-exists test

2023-03-25  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  README.md, CI: meson -> meson setup

2023-03-25  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Doxyfile.in: Don't hide undocumented classes

  Might make the inheritance diagrams less incomplete when Doxygen's
  tag files are not perfect.

2023-01-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  CI: Install all dependencies with apt

  Ubuntu 22.10 contains libsigc++-3.0-dev, libglibmm-2.68-dev
  and libcairomm-1.16-dev.

2023-01-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  meson.build: Simplify lookup of python command

  See libsigcplusplus PR#83

2023-01-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  meson.build: Fix the evaluation of is_git_build on Windows

  See gtkmm#131

2023-01-04  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  Meson build: Don't copy files with configure_file()

  It's deprecated from Meson 0.64. The replacement, fs.copyfile(),
  is not useful here. It only copies from the source directory to
  the build directory.

2022-09-27  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

  meson.build: Detect if we build from a git subtree

  See gtkmm!72 (William Roy)