Hi all,
in recent GLib versions, passing non-NULL arguments to g_win32_get_package_installation_directory() is deprecated and probably won't work anymore with GLib 2.20 (or maybe one of the next releases).
So, it'd be nice if you could change your code to pass two NULL arguments or even better use g_win32_get_package_installation_directory_of_module() instead, (http://library.gnome.org/devel/glib/stable/glib-Windows-Compatibility-Functi...)
Affected plugins:
geanygdb/src/geanydebug.c:324: gchar *install_dir = g_win32_get_package_installation_directory ("geany", NULL);
geany-mini-script/src/gms.c:268: gchar *install_dir = g_win32_get_package_installation_directory ("geany", NULL);
geanyprj/src/geanyprj.c:134: gchar *install_dir = g_win32_get_package_installation_directory ("geany", NULL);
Thanks, Enrico