| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
get_mentions() correctly counts utf-8 chars. So the positions of
mentions we get from there are correct.
But in _mucwin_print_mention() we set position equal to byte.
We need to use utf-8 safe functions here.
Regards https://github.com/profanity-im/profanity/issues/1231
|
|\ \ \
| |/ /
|/| | |
Message received without body error log
|
|/ /
| |
| |
| |
| |
| |
| | |
This is not an error, the message has no body because of
XEP-0085: Chat State Notifications.
Changed log level from error to info.
|
|\ \
| | |
| | | |
OMEMO: Don't encrypt to yourself (MUC)
|
| | |
| | |
| | |
| | | |
Use connection_get_barejid instead of connection_get_fulljid.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
As defined in XEP-0384 the application should not encrypt the message to own
devices. Within a groupchat, yourself are a recipients as well.
We will check the recipients and filter out the own device of the own jid.
This Pull Request will fix Issue: #1541
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This bug was introduced in 1ec606540eb0f474f3d968d3566a7c56d778a367 when
`g_strdup_printf` was used instead of `asprintf`.
Problem discoverd by raspeguy.
Mistake discovered by optmzr and Martin.
Thanks to everybody involved!
|
|\ \ \
| | | |
| | | | |
Restart OMEMO Session after lost connection
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When the connection has been re-established, chat and groupchat with OMEMO
should restat the OMEMO Session.
Fix: #1530
* Added HAVE_OMEMO
* clang-format and user output
|
|\ \ \
| | | |
| | | | |
OMEMO - Notify user when unable to publish own device list
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If we are not able to publish our own device list, we just ignored it.
This commit will show at least an error message and informs the user that this
device is currently not in the list of devices.
See Issue: #1538
Next task will be to handle the <precondition-not-met/> conflict properly.
|
|\ \ \
| | | |
| | | | |
Feature - attention flag
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Display the `[ATTENTION]` hint in the titlebar for both chatwins and
mucwins.
* Use THEME_TITLE_TEXT instead of THEME_TITLE_ENCRYPT
* Have separate function `_show_attention` and don't do it in unrelated
`_show_privacy`.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
When the user enables or disabled the attention flag, a message will be
displayed in the chat window.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Attention flag for groupchat and display the windows via "/wins attention"
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
User is able to toggle a flag for chat windows. This flag should be used to mark
the window for "Attention".
Use Ctrl+f to mark the window.
|
|\ \ \
| |/ /
|/| | |
external editor: don't use absolute paths and allow path search
|
|/ / |
|
|\ \
| | |
| | | |
Display OMEMO device ID
|
| | |
| | |
| | |
| | |
| | | |
Display the OMEMO device ID which has been generated, when the user generated
OMEMO crytographic materials via /omemo gen.
|
|\ \ \
| |/ /
|/| | |
Improved OMEMO logging
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The most loggings has been set to debug. Just in case of error / problem the
logging should be done with log-level ERROR or WARNING.
We will see later, which loggings should be switched to log-level INFO.
This improvement has been done to find OMEMO bugs.
See also: #1070 #1530 #1538
|
|\ \
| | |
| | | |
Fix spelling of "persistent(ly)"
|
|/ / |
|
| |
| |
| |
| |
| | |
Found by DebXWoody.
Led to always be true (which still made it work in most cases).
|
| | |
|
|\ \
| | |
| | | |
Use direct messages instead of MUC-PMs for non-anonymous MUCs
|
| | |
| | |
| | |
| | | |
So users don't get surprised if they don't know the barejid of the nick.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In https://github.com/profanity-im/profanity/issues/1070 we have:
`OMEMO encryption for MUC PM (OMEMO MUCs are not anonymous, so we should
start a regular 1:1 in this case instead of MUC PM. A discussion started
to make this a general feature #1531)`
In https://github.com/profanity-im/profanity/issues/1531 we have the
general issue to start regular 1:1 messages instead of MUC PMs if the
room is non-anonymous.
This is like suggested in https://docs.modernxmpp.org/client/groupchat/.
|
|\ \
| | |
| | | |
Have separate settings for intype (console/titlebar)
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Old: `/intype on|of`
Typing information is printed in console and titlebar.
New: `/intype titlebar|console on|off`
Typing information can be configured in more detail.
Regards https://github.com/profanity-im/profanity/issues/1516
|
| | |
|
|/ |
|
|\
| |
| | |
Apply pre_chat_message_display hook to history
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Our variable `alphabet` contains 62 alphanumeric symbols + '\0'.
When we use sizeof(alphabet) we will get 63 due to that.
But we want to choose a random numbers from the 62 alphanumeric letters only.
This mistake caused us to have strings with a max length of `length`
instead of the exact length.
When doing https://github.com/profanity-im/profanity/issues/1520
this caused our algo for muc reflection to not catch since we expect the
random ID to be exactly 15 symbols long in `message_is_sent_by_us()`.
|
|
|
|
|
|
|
| |
Add OMEMO trust mode capabilities.
* ToFu / first usage
* blind trust
* manual
|
| |
|
|
|
|
| |
Already mentioned in SPONSORS.md.
|
|
|
|
|
|
| |
`/executable set editor /full/path/to/edit`.
Regards https://github.com/profanity-im/profanity/issues/1521
|
| |
|
|
|
|
|
| |
Probably many people render text in their head to markdown
automatically.
|