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:

...
#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);
...


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.