diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-05-27 10:39:49 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-05-27 10:46:36 +0200 |
commit | d510f3a4309cf0a42fc135bbf0905f476757a9c8 (patch) | |
tree | 3f21b35ed5489d248a04c7c8f188a01c9f1ec4d9 /src/command | |
parent | 0cff111249ae60f7b9b6662fc7beaed1b5ec8dde (diff) | |
download | profani-tty-d510f3a4309cf0a42fc135bbf0905f476757a9c8.tar.gz |
Final touches for `/avatar set`
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/cmd_defs.c | 2 | ||||
-rw-r--r-- | src/command/cmd_funcs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c index ffc4ec83..599262c1 100644 --- a/src/command/cmd_defs.c +++ b/src/command/cmd_defs.c @@ -2452,7 +2452,7 @@ static struct cmd_t command_defs[] = { "If nothing happens after using this command the user either doesn't have an avatar set at all " "or doesn't use XEP-0084 to publish it.") CMD_ARGS( - { "set <path>", "Set avatar to the img at <path>." }, + { "set <path>", "Set avatar to the image at <path>." }, { "get <barejid>", "Download the avatar. barejid is the JID to download avatar from." }, { "open <barejid>", "Download avatar and open it with command." }) CMD_EXAMPLES( diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index dfe96971..2a8331d1 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -9201,7 +9201,7 @@ cmd_avatar(ProfWin* window, const char* const command, gchar** args) cons_show("Avatar updated successfully"); } #else - cons_show("This version of Profanity has not been built with GDK Pixbuf support enabled"); + cons_show("Profanity has not been built with GDK Pixbuf support enabled which is needed to scale the avatar when uploading."); #endif } else if (g_strcmp0(args[0], "get") == 0) { avatar_get_by_nick(args[1], false); |