2023-03-12 Kjell Ahlstedt <
[email protected]>
2.66.6
2023-02-22 Kjell Ahlstedt <
[email protected]>
Doxyfile.in: Don't hide undocumented classes
Might make the inheritance diagrams less incomplete when Doxygen's
tag files are not perfect.
2023-02-22 Kjell Ahlstedt <
[email protected]>
Glib::Dispatcher: Remove a g_warning()
Don't warn when a Dispatcher is deleted while messages are pending.
Fixes #108
2023-02-22 Kjell Ahlstedt <
[email protected]>
README.md: meson -> meson setup
2023-01-13 Kjell Ahlstedt <
[email protected]>
meson.build: Simplify if-file-exists test
2023-01-09 Chun-wei Fan <
[email protected]>
generate_wrap_init.pl.in: Disable warning C4273
... for Visual Studio builds, as GLib 2.75.x and later applied
__declspec(dllimport) via macros to DLL builds of the GLib libraries,
meaning that when we put the GQuark and GType function prototypes into
wrap_init.cc warning C4273 will be raised as the prototypes in
wrap_init.cc does not have any dllimport decorations (and would not have
otherwise mattered).
This allows builds with '-Dwarnings=fatal' to proceed with Visual Studio
builds.
Please see: MR!57.
2023-01-04 Kjell Ahlstedt <
[email protected]>
meson.build: Simplify lookup of python command
See libsigcplusplus PR#83
2023-01-04 Kjell Ahlstedt <
[email protected]>
meson.build: Fix the evaluation of is_git_build on Windows
See gtkmm#131
2023-01-04 Kjell Ahlstedt <
[email protected]>
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-12-31 Kjell Ahlstedt <
[email protected]>
Glib::Module::build_path(): Ignore deprecation of g_module_build_path()
2022-11-05 Kjell Ahlstedt <
[email protected]>
Gio::NetworkMonitor::get_default(): Add refreturn
Fixes #104
2022-10-10 Kjell Ahlstedt <
[email protected]>
Doxyfile.in: Allow more graph nodes
Required for Glib::Object's inheritance diagram.
2022-09-26 Kjell Ahlstedt <
[email protected]>
meson.build: Detect if we build from a git subtree
See gtkmm!72 (William Roy)