pidgin/pidgin

Handle URL clicks in About dialog

16 months ago, Elliott Sales de Andrade
aa93ea1296f3
Parents c3ebebdf879a
Children 4e00a213961c
Handle URL clicks in About dialog

Also, update URLs to point to current locations.

Testing Done:
Opened About dialog, and clicked all the links.

Reviewed at https://reviews.imfreedom.org/r/2192/
--- a/pidgin/pidginabout.c Sun Jan 15 21:31:12 2023 -0600
+++ b/pidgin/pidginabout.c Sun Jan 15 21:35:47 2023 -0600
@@ -496,6 +496,13 @@
}
}
+static void
+pidgin_about_dialog_open_url_cb(G_GNUC_UNUSED TalkatuView *view,
+ const char *url, gpointer data)
+{
+ gtk_show_uri(GTK_WINDOW(data), url, GDK_CURRENT_TIME);
+}
+
/******************************************************************************
* GObject Implementation
*****************************************************************************/
@@ -533,6 +540,8 @@
gtk_widget_class_bind_template_callback(widget_class,
pidgin_about_dialog_response_cb);
+ gtk_widget_class_bind_template_callback(widget_class,
+ pidgin_about_dialog_open_url_cb);
}
static void
--- a/pidgin/resources/About/about.md Sun Jan 15 21:31:12 2023 -0600
+++ b/pidgin/resources/About/about.md Sun Jan 15 21:35:47 2023 -0600
@@ -5,16 +5,14 @@
### Helpful Resources
* [Website](https://pidgin.im)
- * [Frequently Asked Questions](https://developer.pidgin.im/wiki/FAQ)
+ * [Frequently Asked Questions](https://pidgin.im/help/)
* IRC Channel: #pidgin on irc.libera.chat
* XMPP MUC: devel@conference.pidgin.im
**Help for Oracle Employees** is available from your normal internal helpdesk or IT department. The Pidgin developer and user communities cannot assist you in the configuration or use of Pidgin within Oracle, as we know nothing of Oracle's infrastructure.
-**Help from other Pidgin users** is available by e-mailing [support@pidgin.im](mailto:support@pidgin.im).
-
-This is a **public** mailing list with a **public** [archive](https://pidgin.im/pipermail/support/).
+**Help from other Pidgin users** is available on [our Discourse](https://discourse.imfreedom.org/c/pidgin/5).
-We can't help with third-party protocols or plugins, but you may be able to find support via the [ThirdPartyPlugins WIKI Page](https://developer.pidgin.im/wiki/ThirdPartyPlugins).
+We can't help with third-party protocols or plugins, but you may be able to find support via the [Third Party Plugins Page](https://pidgin.im/plugins/).
-The list's primary language is English. You are welcome to post in another language, but the responses may be less helpful.
+The Discourse's primary language is English. You are welcome to post in another language, but the responses may be less helpful.
--- a/pidgin/resources/About/about.ui Sun Jan 15 21:31:12 2023 -0600
+++ b/pidgin/resources/About/about.ui Sun Jan 15 21:35:47 2023 -0600
@@ -103,6 +103,7 @@
<property name="margin-end">12</property>
<property name="wrap-mode">word</property>
<property name="buffer">main_buffer</property>
+ <signal name="open-url" handler="pidgin_about_dialog_open_url_cb" swapped="no"/>
</object>
</child>
</object>