I would like to delete at least selected conversations with a contact intentionally.
I think it is dangerous and counter-intuitive, that the history of a conversation is saved although I have deleted the conversation explicitly from the left pane.
Is there some progress on this feature? I think, that it is a very important feature for many people.
I also vote for the fact that you can delete the history without ending the chat.
I found a way using SQLiteBrowser. Completely at YOUR OWN RISK:
~/.local/share/dino/dino.db)messages. Find a message of the chat in question. Note the number for counterpart_id.SELECT * FROM message WHERE counterpart_id = SOMEID; and verify whether those are really the messages you like to remove.DELETE FROM message WHERE counterpart_id = SOMEID;Dino may try to download the last messages from server again and may not be able to decrypt them if you use OMEMO encryption, but otherwise it appears to work.
Most helpful comment
Is there some progress on this feature? I think, that it is a very important feature for many people.