diff options
author | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2022-05-26 17:49:34 +0300 |
---|---|---|
committer | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2022-05-26 17:49:34 +0300 |
commit | 6a44e188537ee2d70226ad9dba4ae89c15437e2b (patch) | |
tree | 3081b0af49199c6f5b3a8fdc1ff07eac64420476 /tests/unittests | |
parent | b4523d6c42825bda175663730001302adb21b95e (diff) | |
download | profani-tty-6a44e188537ee2d70226ad9dba4ae89c15437e2b.tar.gz |
Add `/avatar set` command to publish avatar
Use `/avatar set <path>` where <path> is an image file to upload a new avatar for the current user. When the avatar is too big it gets scaled down. Scaling code copied from dino. Fixes https://github.com/profanity-im/profanity/issues/1687
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/xmpp/stub_avatar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unittests/xmpp/stub_avatar.c b/tests/unittests/xmpp/stub_avatar.c index ccd9cf4d..453d1863 100644 --- a/tests/unittests/xmpp/stub_avatar.c +++ b/tests/unittests/xmpp/stub_avatar.c @@ -8,3 +8,8 @@ avatar_get_by_nick(const char* nick) { return TRUE; } +gboolean +avatar_set(const char* path) +{ + return FALSE; +} |