Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Thu, 25 Apr 2024 20:38:08 UTC Commit: 8b17184e6a2eecfd598367d9f9783e9abbcd984f https://github.com/geany/geany-plugins/commit/8b17184e6a2eecfd598367d9f9783e...
Log Message: ----------- webhelper: Update minimal requirements
GTK, GLib, GIO, Gdk-Pixbuf, WebKit, all those are actually minimal dependencies of the code (although arguably GIO is always at the same version than GLib, so having something different there is somewhat of a lie). Geany is merely based on the PLUGIN_VERSION_CHECK(), which might or might not be appropriate.
Modified Paths: -------------- build/webhelper.m4 webhelper/README
Modified: build/webhelper.m4 7 lines changed, 3 insertions(+), 4 deletions(-) =================================================================== @@ -2,12 +2,11 @@ AC_DEFUN([GP_CHECK_WEBHELPER], [ GP_ARG_DISABLE([WebHelper], [auto])
- GTK_VERSION=2.16 - dnl 2.22 for glib-mkenums' @basename@ template + GTK_VERSION=3.0 GLIB_VERSION=2.38 - GIO_VERSION=2.18 + GIO_VERSION=2.30 GDK_PIXBUF_VERSION=2.0 - WEBKIT_VERSION=1.1.18 + WEBKIT_VERSION=2.18
AC_PATH_PROG([GLIB_MKENUMS], [glib-mkenums], [no]) AC_SUBST([GLIB_MKENUMS])
Modified: webhelper/README 6 lines changed, 3 insertions(+), 3 deletions(-) =================================================================== @@ -26,9 +26,9 @@ Prominent features Requirements ============
-This plugin requires GTK+ (>= 2.16), GLib (>= 2.16), GIO (>= 2.18), -GdkPixbuf (>= 2.0), WebKitGTK (>= 1.1.18), and obviously Geany (>= 0.20) to -work. If you intend to build it yourself, you will need to get the development +This plugin requires GTK3, GLib (>= 2.38), GIO (>= 2.30), GdkPixbuf, +WebKit2GTK (either API 4.0 or 4.1), and obviously Geany (>= 1.25) to work. +If you intend to build it yourself, you will need to get the development files of these libraries. You can find these packages at http://www.geany.org/, http://www.gtk.org/ and http://www.webkitgtk.org/.
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).