diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | share/doc/readme.md | 2 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 8aeacff2..a402f565 100644 --- a/configure.ac +++ b/configure.ac @@ -201,7 +201,7 @@ dnl ********************************************************************* # we might get undefined macro without this test if test "$gtkfe" = yes ; then - AM_PATH_GTK_2_0(2.10.0, havegtk=yes, havegtk=no) + AM_PATH_GTK_2_0(2.14.0, havegtk=yes, havegtk=no) if test "$havegtk" = no; then gtkfe=no diff --git a/share/doc/readme.md b/share/doc/readme.md index b474bc9f..656e1dff 100644 --- a/share/doc/readme.md +++ b/share/doc/readme.md @@ -19,7 +19,7 @@ in general. HexChat runs on most BSD and POSIX compliant operating systems. ## Requirements: - * GTK+ 2.10 + * GTK+ 2.14 * GLib 2.14 HexChat is known to work on, at least: diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c index 355c2ef7..896ab143 100644 --- a/src/fe-gtk/fe-gtk.c +++ b/src/fe-gtk/fe-gtk.c @@ -117,7 +117,7 @@ static const GOptionEntry gopt_entries[] = {"no-plugins", 'n', 0, G_OPTION_ARG_NONE, &arg_skip_plugins, N_("Don't auto load any plugins"), NULL}, {"plugindir", 'p', 0, G_OPTION_ARG_NONE, &arg_show_autoload, N_("Show plugin/script auto-load directory"), NULL}, {"configdir", 'u', 0, G_OPTION_ARG_NONE, &arg_show_config, N_("Show user config directory"), NULL}, - {"url", 0, 0, G_OPTION_ARG_STRING, &arg_url, N_("Open an irc://server:port/channel URL"), "URL"}, + {"url", 0, 0, G_OPTION_ARG_STRING, &arg_url, N_("Open an irc://server:port/channel?key URL"), "URL"}, #ifndef WIN32 /* uses DBUS */ {"command", 'c', 0, G_OPTION_ARG_STRING, &arg_command, N_("Execute command:"), "COMMAND"}, {"existing", 'e', 0, G_OPTION_ARG_NONE, &arg_existing, N_("Open URL or execute command in an existing HexChat"), NULL}, |