1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-06 19:16:35 +01:00

Add last seen and public key fields for group peers and add whois command

This commit is contained in:
Jfreegman
2015-09-13 23:15:58 -04:00
parent 97d5fb84fc
commit 2e4c86be4b
8 changed files with 129 additions and 7 deletions

View File

@@ -250,6 +250,7 @@ static void help_draw_group(ToxWindow *self)
wprintw(win, " /rejoin : Rejoin the group\n");
wprintw(win, " /topic <msg> : Set group topic (show current topic if no msg)\n");
wprintw(win, " /whisper <nick> <msg> : Send private message to nick\n");
wprintw(win, " /whois <nick> : Display info about nick.\n");
wattron(win, A_BOLD);
wprintw(win, " Moderator commands:\n");
@@ -324,7 +325,7 @@ void help_onKey(ToxWindow *self, wint_t key)
break;
case 'r':
help_init_window(self, 24, 80);
help_init_window(self, 25, 80);
self->help->type = HELP_GROUP;
break;