aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Use PreserveAspectCrop instead of PreserveAspectFit for imageslink2xt2021-03-141-1/+1
| | | | This seems to be the easiest way to avoid space above and below the image.
* Add support for audio and voice messageslink2xt2021-03-131-1/+23
|
* Move database to ~/.configlink2xt2021-03-131-1/+3
| | | | | | This has the benefit of using absolute paths, which helps with QML objects that don't accept relative paths, such as MediaPlayer.
* README.md: note that WebP support requires a pluginlink2xt2021-03-131-0/+1
|
* Remove SplashPage.qmllink2xt2021-03-063-10/+1
|
* README: better cmake commandslink2xt2021-03-041-10/+6
|
* README.md: add Troubleshooting sectionlink2xt2021-03-031-0/+9
|
* Turn ChatPage and ChatlistPage into scrollable pageslink2xt2021-03-022-6/+2
| | | | This removes unnecessary padding between the window boundary and the scrollbar.
* chatlist: move mousearea to avatarlink2xt2021-03-011-31/+29
| | | | This prevents the error about anchors.fill used on layout-managed item.
* chatlist: do not intercept left buttonlink2xt2021-03-011-5/+1
| | | | | | It makes hard to select chat. Something should be done on mobile platforms without RMB later.
* chatlist: pin, unpin, archive and delete chatslink2xt2021-03-011-0/+35
|
* Implement more context methodslink2xt2021-03-012-0/+31
|
* Add Settings pagelink2xt2021-02-283-0/+45
|
* eventemitter: remove debug outputlink2xt2021-02-271-6/+0
|
* ConfigurePage: stop I/O before configuringlink2xt2021-02-271-0/+1
|
* ConfigurePage: make context a required propertylink2xt2021-02-271-1/+1
|
* Use "system-switch-user" icon for "switch account" actionlink2xt2021-02-271-1/+1
|
* ChatPage.qml: make chatId a required propertylink2xt2021-02-271-1/+1
|
* Switch to 2-page layoutlink2xt2021-02-274-1/+18
| | | | Account switching is an overlay now.
* Replace accounts page when account is selectedlink2xt2021-02-272-5/+5
| | | | | Account management should be moved to an overlay or left panel, not available all the time as a first page.
* Update QtQuick.Dialogs to 1.3link2xt2021-02-251-1/+1
|
* Set FileDialog folder to homelink2xt2021-02-251-0/+1
|
* CMakeLists.txt: install the binarylink2xt2021-02-242-0/+9
|
* Do not build libdeltachat as ExternalProjectlink2xt2021-02-242-55/+57
| | | | | deltachat-core-rust has CMakeLists.txt now and can be used as a module within `kdesrc-build`. The recommended way for building KDeltaChat is using `kdesrc-build` now, README is updated accordingly.
* chatlist: mark context property as requiredlink2xt2021-02-231-1/+1
|
* Mark chat as noticed when selectedlink2xt2021-02-233-0/+12
|
* Add Context::marknoticedChat()link2xt2021-02-222-0/+6
|
* Vertically center number of fresh messageslink2xt2021-02-221-0/+1
|
* chatlist: set avatar colorlink2xt2021-02-221-0/+1
|
* chatlist: display number of fresh messageslink2xt2021-02-221-1/+7
|
* Add Context::getFreshMsgCnt()link2xt2021-02-222-0/+6
|
* README: add link to deltachat-core-rustlink2xt2021-02-221-15/+38
|
* ChatlistPage: display chat avatarslink2xt2021-02-221-2/+12
|
* Uncomment DcChat::getProfileImagelink2xt2021-02-222-4/+5
|
* Add context menu item to accept contact requestslink2xt2021-02-221-0/+4
|
* Add Context::decideOnContactRequestlink2xt2021-02-222-0/+7
|
* Add Context::setChatMuteDurationlink2xt2021-02-222-0/+7
|
* Start configuration when "Login" is clickedlink2xt2021-02-202-1/+9
|
* chatlist: use text2 in summarieslink2xt2021-02-191-1/+1
|
* Implement Context::setConfig()link2xt2021-02-192-0/+9
|
* Context: implement startIo, stopIo and maybeNetworklink2xt2021-02-192-0/+21
| | | | They are not supposed to be used as they can be called from account manager, just for completeness.
* README.md: document how to run with upstream Kirigamilink2xt2021-02-191-0/+25
|
* Use dc_msg_get_override_sender_name()link2xt2021-02-153-2/+17
|
* Do not set button widthlink2xt2020-11-051-2/+0
|
* Display account addresses on accounts pagelink2xt2020-11-051-3/+27
|
* Implement Context.getConfig()link2xt2020-11-052-0/+11
|
* Move accounts model from C++ to QMLlink2xt2020-11-058-208/+166
| | | | | | | C++ models are not well documented and it is easier to manage the model in QML. Now all QObjects are thin wrappers around Delta Chat core structures.
* ChatPage: fix displayed chat namelink2xt2020-10-281-1/+1
|
* Stop I/O when application is closedlink2xt2020-10-281-0/+5
|
* Set parent for Contextlink2xt2020-10-273-4/+4
| | | | This fixes application termination when account is selected.