| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Added icons: Pinned and muted chats have icons. It's from Twemoji font, I've added
credits in the README.md and source code of ChatlistItem.qml. I prefer to rely on .PNG for this
one because icon might not be installed or exist on the system, and we avoid
the black box problem.
- Modified CMakeLists: added KNotifications as a required library
- Modified build.sh: I cannot comprehend how the install(FILES)
function from cmake works, so I used good old install from GNU coreutils.
It copies usr/ structure and needed files (.desktop and .notifyrc) for
KNotifications to work.
- Aesthetic changes: context menu is shorter now due to the text
being state-aware. You can now also mute a chat so you won't be notified
on incoming messages.
|
|
|
|
|
|
|
|
|
|
| |
- the chatlist is now properly updated on blocking a
contact request or contact.
- A small message is now displayed after blocking a
contact request
- A list of blocked contact can be found on the settings
page, after clicking 'View blocked users'
- The message timestamp is now slightly padded
|
|
|
|
|
|
| |
- layers popping function was hard to
read in main.qml, add a line
- add editable videochat instance setting
|
|
|
|
|
| |
This allows setting file from JavaScript, so C++ remains a thin wrapper to Delta Chat core API.
sendMessage only calls dc_send_msg, and all the attachment logic goes to the JavaScript code.
|
|
|
|
|
|
| |
If QFile::copy() fails because blobdir already contains an image with the same file name (could be something common, e.g., "1.jpg"), we end up sending completely wrong file.
Delta Chat core (dc_send_msg) already does the copying for us and resolves filename conflicts.
|
| |
|
| |
|
| |
|
|
|
|
| |
`dc_send_text_msg` is too limited as it can only send text without attachments.
|
| |
|
| |
|
| |
|
|
|
|
| |
dc_accounts_import_account() is going to be removed from the core.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
HTML API:
- Context::getMessageHtml()
- DcMessage::getSubject()
- DcMessage::hasHtml()
Also implemented:
- DcMessage::getFilemime()
- DcMessage::getShowPadlock()
- DcMessage::getError()
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
They are not supposed to be used as they can be called from account manager, just for completeness.
|
| |
|
|
|
|
| |
This fixes application termination when account is selected.
|
| |
|
|
|