Skip to content

Commit f8d1ae0

Browse files
authored
Merge branch 'master' into ci/cygwin-build
2 parents 178d3f4 + 6ce6942 commit f8d1ae0

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

docs/profanity.1

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,14 @@ The roster is your contact list. By default displayed at the right side on the c
182182
.TP
183183
.BR XEP
184184
XMPP is an extendable protocol. There are core features and optional features described in XMPP Extension Protocols, short XEPs.
185+
.PP
186+
There are various kind of messages.
187+
.TP
188+
1:1 messages are regular messages from one party to another party, from one JID to the other JID. Often you have the other party added to your roster.
189+
.TP
190+
MUC messages are messages from one party to a group chat.
191+
.TP
192+
MUC PM (MUC private message) are messages from one party to another party which are in the same group chat. You might not have the JID of this person in your roster or don't know their JID at all. Communication is done over the MUC via the nick. Only the two parties can see the message. In the Android client Conversations this is displayed as "whispering". If a user leaves a MUC another user can join the MUC with the same nick unless the nick is registered. Which often isn't the case.
185193
.SH SEE ALSO
186194
.B Profanity
187195
itself has a lot of built\-in help. Check the

src/tools/bookmark_ignore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#ifndef BOOKMARK_IGNORE_H
3737
#define BOOKMARK_IGNORE_H
3838

39-
void bookmark_ignore_on_connect();
39+
void bookmark_ignore_on_connect(const char* const barejid);
4040
void bookmark_ignore_on_disconnect();
4141
gboolean bookmark_ignored(Bookmark* bookmark);
4242
gchar** bookmark_ignore_list(gsize* len);

src/ui/ui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ void cons_show_disco_info(const char* from, GSList* identities, GSList* features
288288

289289
void cons_show_disco_contact_information(GHashTable* addresses);
290290

291-
void cons_show_qrcode();
291+
void cons_show_qrcode(const char* const text);
292292

293293
void cons_show_room_invite(const char* const invitor, const char* const room, const char* const reason);
294294
void cons_check_version(gboolean not_available_msg);

0 commit comments

Comments
 (0)