mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge branch 'master' into readline
This commit is contained in:
commit
372cf822cb
@ -615,7 +615,7 @@ static struct cmd_t command_defs[] =
|
||||
{ "/wrap on|off", "Word wrapping.",
|
||||
{ "/wrap on|off",
|
||||
"------------",
|
||||
"Enable or disable word wrapping.",
|
||||
"Enable or disable word wrapping in the main window.",
|
||||
NULL } } },
|
||||
|
||||
{ "/time",
|
||||
@ -1141,7 +1141,7 @@ cmd_init(void)
|
||||
autocomplete_add(help_ac, "basic");
|
||||
autocomplete_add(help_ac, "chatting");
|
||||
autocomplete_add(help_ac, "groupchat");
|
||||
autocomplete_add(help_ac, "presence");
|
||||
autocomplete_add(help_ac, "presences");
|
||||
autocomplete_add(help_ac, "contacts");
|
||||
autocomplete_add(help_ac, "service");
|
||||
autocomplete_add(help_ac, "settings");
|
||||
|
@ -154,6 +154,10 @@ cmd_connect(gchar **args, struct cmd_help_t help)
|
||||
cons_show("Error evaluating password, see logs for details.");
|
||||
return TRUE;
|
||||
}
|
||||
// strip trailing newline
|
||||
if (g_str_has_suffix(account->password, "\n")) {
|
||||
account->password[strlen(account->password)-1] = '\0';
|
||||
}
|
||||
} else {
|
||||
log_error("popen failed when running eval_password.");
|
||||
cons_show("Error evaluating password, see logs for details.");
|
||||
@ -710,7 +714,7 @@ cmd_help(gchar **args, struct cmd_help_t help)
|
||||
"/rooms", "/tiny", "/who", "/nick", "/privileges", "/info", "/occupants" };
|
||||
_cmd_show_filtered_help("Groupchat commands", filter, ARRAY_SIZE(filter));
|
||||
|
||||
} else if (strcmp(args[0], "presence") == 0) {
|
||||
} else if (strcmp(args[0], "presences") == 0) {
|
||||
gchar *filter[] = { "/autoaway", "/away", "/chat", "/dnd",
|
||||
"/online", "/priority", "/account", "/status", "/statuses", "/who",
|
||||
"/xa" };
|
||||
|
@ -592,7 +592,7 @@ theme_attrs(theme_item_t attrs)
|
||||
case THEME_BLACK_BOLD: result = COLOR_PAIR(52); break;
|
||||
case THEME_MAGENTA: result = COLOR_PAIR(53); break;
|
||||
case THEME_MAGENTA_BOLD: result = COLOR_PAIR(53); break;
|
||||
default: break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (g_hash_table_lookup(bold_items, GINT_TO_POINTER(attrs))) {
|
||||
|
@ -1402,7 +1402,7 @@ cons_help(void)
|
||||
cons_show("/help basic - List basic commands for getting started.");
|
||||
cons_show("/help chatting - List chat commands.");
|
||||
cons_show("/help groupchat - List groupchat commands.");
|
||||
cons_show("/help presence - List commands to change presence.");
|
||||
cons_show("/help presences - List commands to change presence.");
|
||||
cons_show("/help contacts - List commands for manipulating your roster.");
|
||||
cons_show("/help service - List service discovery commands.");
|
||||
cons_show("/help settings - List commands for changing settings.");
|
||||
|
@ -1402,8 +1402,8 @@ ui_outgoing_chat_msg(const char * const from, const char * const barejid,
|
||||
// create new window
|
||||
if (window == NULL) {
|
||||
window = wins_new_chat(barejid);
|
||||
ProfChatWin *chatwin = (ProfChatWin*)window;
|
||||
#ifdef HAVE_LIBOTR
|
||||
ProfChatWin *chatwin = (ProfChatWin*)window;
|
||||
if (otr_is_secure(barejid)) {
|
||||
chatwin->is_otr = TRUE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user