How if geany_plugin_register_proxy() has changed behavior?
By those proxy plugins checking the API version and changing the extensions. It's either that or we bump the ABI version and break all plugins and still have to update the proxy plugins.
The code would look like:
```c ... #if GEANY_API_VERSION >= 230 const gchar *patterns[] = { "*.so", "*.dll", "*.plugin", NULL }; #else const gchar *patterns[] = { "so", "dll", "plugin", NULL }; #endif geany_plugin_register_proxy(plugin, patterns); ... ```