@b4n commented on this pull request.
> + /* metadata */
+ plugin->info->name = _("Web helper");
+ plugin->info->description = _("Display a preview web page that gets updated "
+ "upon document saving and provide web "
+ "analysis and debugging tools (aka Web "
+ "Inspector), all using WebKit.");
+ plugin->info->version = GWH_PLUGIN_VERSION;
+ plugin->info->author = "Colomban Wendling <[email protected]>";
+
+ /* entry points */
+ plugin->funcs->init = gwh_plugin_init;
+ plugin->funcs->cleanup = gwh_plugin_cleanup;
+ plugin->funcs->configure = gwh_plugin_configure;
+
+ /* even though it's not really a good idea to keep all the libraries we load
+ * into memory, this is needed for webkit. first, without this we creash
after
Good catch -- and yeah it's old, but it's also a good time to fix it as any :)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1455#discussion_r2166038249
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1455/review/[email protected]>