about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/command/cmd_defs.c2
-rw-r--r--src/common.c2
-rw-r--r--src/ui/console.c2
-rw-r--r--src/xmpp/stanza.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c
index 6a1cb006..c6561949 100644
--- a/src/command/cmd_defs.c
+++ b/src/command/cmd_defs.c
@@ -1037,7 +1037,7 @@ static struct cmd_t command_defs[] =
         CMD_ARGS(
             { "<url>", "The url to make tiny." })
         CMD_EXAMPLES(
-            "Example: /tiny http://www.profanity.im")
+            "Example: /tiny https://profanity-im.github.io/")
     },
 
     { "/who",
diff --git a/src/common.c b/src/common.c
index 3e1b51b5..5aed9295 100644
--- a/src/common.c
+++ b/src/common.c
@@ -269,7 +269,7 @@ file_getline(FILE *stream)
 char*
 release_get_latest(void)
 {
-    char *url = "http://www.profanity.im/profanity_version.txt";
+    char *url = "https://profanity-im.github.io/profanity_version.txt";
 
     CURL *handle = curl_easy_init();
     struct curl_data_t output;
diff --git a/src/ui/console.c b/src/ui/console.c
index af51465b..c03a8bb7 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -442,7 +442,7 @@ cons_check_version(gboolean not_available_msg)
         if (relase_valid) {
             if (release_is_new(latest_release)) {
                 win_println(console, THEME_DEFAULT, '-', "A new version of Profanity is available: %s", latest_release);
-                win_println(console, THEME_DEFAULT, '-', "Check <http://www.profanity.im> for details.");
+                win_println(console, THEME_DEFAULT, '-', "Check <https://profanity-im.github.io> for details.");
                 win_println(console, THEME_DEFAULT, '-', "");
             } else {
                 if (not_available_msg) {
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c
index 615de44f..affb6ff4 100644
--- a/src/xmpp/stanza.c
+++ b/src/xmpp/stanza.c
@@ -1954,7 +1954,7 @@ stanza_attach_caps(xmpp_ctx_t *const ctx, xmpp_stanza_t *const presence)
 
     char *sha1 = caps_get_my_sha1(ctx);
     xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1");
-    xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://www.profanity.im");
+    xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://profanity-im.github.io");
     xmpp_stanza_set_attribute(caps, STANZA_ATTR_VER, sha1);
     xmpp_stanza_add_child(presence, caps);
     xmpp_stanza_release(caps);