Commit Graph

3559 Commits

Author SHA1 Message Date
Hocuri e2b2d6bea4 [WIP] Fix "Can't edit shared image" (#2034)
Fix #2032

The problem was that after returning from the image editor, `doReinitializeDraft` was true and therefore we the draft was reinitialized to the originally shared, unedited image.

This was introduced in
https://github.com/deltachat/deltachat-android/pull/1770. I im pretty
sure that what I changed is fine, but we had so many regressions in the
past in this area that we should thoroughly test this change before
merging.

I extended
https://github.com/deltachat/interface/edit/master/user-testing/mailto-links.md
a bit; before merging this PR we should test that everything there still
works.
2021-08-16 12:39:58 +02:00
Asiel Díaz Benítez ffd58739ed Merge pull request #2027 from deltachat/adb-issue-1992
reload adapter's dcChat when chat is modified
2021-08-12 15:05:30 -04:00
Hocuri b8cbc6d3b0 Add some @NonNull annotations, remove unused method (#2028)
This was in an attempt to find the cause for #2026. I didn't succeed,
but this is an improvement, anyway.
2021-08-11 23:13:12 +02:00
Hocuri f7b74e4963 Add simple benchmark & a test framework (#2022)
See #2019, #2020 and #2021 for failed attempts at using a benchmark framework. So, for now I'll just go with timing the results manually. 

For trying this out:
- Backup your current account first, maybe there are some bugs in switching accounts.
- You can run benchmarks on either an emulated device or a real device. For better benchmark results, you should run the benchmark on a real device and make sure that the core is compiled in release mode.
- Disable animations on your device, otherwise the test may fail. (Developer options -> Window animation scale, Transition animation scale & Animatior duration scale -> set all three of them to 0x)
- In Android Studio: File -> Sync project with gradle files
- In Android Studio: Run -> Edit configurations -> `+` -> Android Instrumented test -> Either select a specific class or select "All in Module" -> OK -> Select your configuration in the toolbar -> Click on the green "run" button in the toolbar to run the tests

When the benchmark is done, you will get a result like `MEASURED RESULTS (Benchmark) - Going thorough all 10 chats: 11635,11207,11363,11352,11279,11183,11137,11145,11032,11057`, Paste `11635,11207,11363,11352,11279,11183,11137,11145,11032,11057` into a cell in a LibreOffice spreadsheet, do `Data -> Text to columns`, choose `,` as a separator, hit `OK`, and create a diagram.
2021-08-11 14:01:15 +02:00
adbenitez 3327812628 reload adapter's dcChat when chat is modified 2021-08-10 23:08:12 -04:00
B. Petersen e8cf64d5ea refine changelog 2021-08-10 18:41:01 +02:00
Hocuri 44ffbdbb58 Fix: When searching, entering an archived chat, and going back, go back to search (#2025)
Steps to reproduce the bug:
- Search and select an archived chat
- Press back

Expected: Go back to the search activity.
Actual: Go to the Archived chats list activity. The user has to press
"back" again to get to the search.
2021-08-10 17:06:05 +02:00
Hocuri 5952f30334 Fix: When returning to chat after blocking it, hide request buttons (#2023)
Steps to reproduce the bug:

- Go to a contact request
- Go to the profile
- Block the contact
- Press back

Expected behavior: Only the compose panel is shown, not the request
buttons.
Actual behavior: Both the panel and the request buttons are shown
because the panel visibility is updated, but not the request button's.

I fixed this by always calling `initializeContactRequest()` after
`setComposePanelVisibility()`.
2021-08-10 17:05:43 +02:00
Hocuri 93d9a84cae Fix: When blocking a contact from the profile, update the chatlist (#2024)
Steps to reproduce:

- Go to the profile of a contact
- Block the contact
- Press back twice

Expected behavior: The chat is not shown in the list anymore.
Actual behavior: The chat is shown in the list until the app is
restarted (or if you wait some time)
2021-08-10 17:05:30 +02:00
B. Petersen 521ee30517 update translations 2021-08-09 11:44:34 +02:00
bjoern f2934a330d prepare 1.21.2 testrun 🏃 (#2018)
* update changelog for 1.21.2

* bump version to 1.21.2
2021-08-09 11:40:50 +02:00
B. Petersen d49ae69b55 update translations 2021-08-08 23:41:37 +02:00
bjoern 1c36190c87 validate email-addresses in core (#2015)
successor of #1980,
allowing to add contacts with dotless email-domains to groups;
that is needed eg. for @yggmail
2021-08-08 22:05:34 +02:00
bjoern 726f751cac keep selection when migrating several accounts (#2011)
postpone selection after the last migration
as migrateAccount() currently selects the migrated account.

before, the selectAccount() call was useless
if another migrateAccount() call follows.
2021-08-04 15:05:45 +02:00
Asiel Díaz Benítez 9be90a589e avoid NullPointerException (#2013) 2021-08-04 15:05:33 +02:00
B. Petersen 3d3b1cc03f typo 2021-08-03 01:11:01 +02:00
bjoern 99963ee605 prepare 1.21.1 testrun 🏃 (#2010)
* update changelog for 1.21.1

* bump version to 1.21.1
2021-08-02 23:52:09 +02:00
B. Petersen 7f09ea237d update deltachat-core-rust submodule 2021-08-02 21:57:42 +02:00
bjoern aa1909e519 prepare 1.21.0 (#2009)
* update changelog to 1.21.0

* bump version to 1.21.0
2021-08-02 10:40:18 +02:00
bjoern 0995930636 unify buttons (#2007)
* use standard button style for block/accept

* make existing buttons a little bit nicer

* make 'login' button more outstanding, esp. in dark-mode, where colors are tuned down for now
2021-08-02 10:38:14 +02:00
Asiel Díaz Benítez 099f76a90b set dynamic theme in welcome activity (#2008) 2021-08-02 00:20:34 +02:00
Asiel Díaz Benítez 13dbb3f87c avoid showing compose panel when pressing block button (#2004)
* stop observing DC_EVENT_CONTACTS_CHANGED events before blocking chat so the input bar is not made visible in handleEvent()

* add comment about removing DC_EVENT_CONTACTS_CHANGED observer on blocking

Co-authored-by: B. Petersen <r10s@b44t.com>
2021-08-01 23:29:22 +02:00
Asiel Díaz Benítez 464c30129f update archived chatlist when contact request is blocked, set intent so conversationListFragment can find RELOAD_LIST in extras (#2003) 2021-08-01 22:26:19 +02:00
B. Petersen 474a40f6b7 update help 2021-08-01 22:05:27 +02:00
B. Petersen 1c2ed86e24 update translations 2021-08-01 22:04:50 +02:00
B. Petersen 7e4a94e9aa update deltachat-core-rust submodule 2021-08-01 21:10:01 +02:00
Asiel Díaz Benítez 6bd46a8532 Merge pull request #1985 from deltachat/use-accounts-api
use dc_accounts_t
2021-07-31 16:19:33 -04:00
bjoern 06353ef64d fix potential race condition in chatlist loading (#2001)
this should fix the race condition mentioned at #2000
and in the source code by synchronizing getters/setters of the booleans.
2021-07-31 21:24:20 +02:00
bjoern 6de566ac11 fix chatlist anr (#2000)
* revert unneeded changed introduced at #1975 - the timer is to update relative timestamps, data reloading is not needed and driven by events

* load chatlist async

* debounce chatlist loading

* add comment to the code
2021-07-31 13:56:39 +02:00
Asiel Díaz Benítez 72acc5fffc separate request and archive badges (#1997) 2021-07-30 12:43:10 +02:00
bjoern a7d6dda1a3 hide question from request panel for now (#1996)
* hide question from request panel for now, if needed we can do something more specific in the future

* remove 'Done' toast to avoid problems with lost activity

for whatever reason,
i just got a crash related to the toast that could not find its activity,
probably we should have used the app context and not the activity.

however, the toast was annoying me already,
there is no point in adding it, the change is visible instantly to the user
on the screen.
2021-07-29 23:36:16 +02:00
bjoern 2e9f7e58f2 tweak 'Archived Chats' and 'Requests' (#1991)
* add 'Archived Chats' menu entry

the menu entry is at the place where the 'Contact Requests' were before -
that way, ppl may find existing contact requests easier.

moreover, it is now possible to access 'Archived Chats'
without endless scrolling ;)

* for archived requests, show both tags

* show a hint when 'Archived Chats' is empty

* contact requests do not display unread count; do not retrieve it and do not show text in bold
2021-07-29 10:18:51 +02:00
B. Petersen 2d6459bddf update deltachat-core-rust submodule 2021-07-28 18:30:41 +02:00
bjoern 6d8da07409 Update src/org/thoughtcrime/securesms/connect/AccountManager.java
Co-authored-by: Hocuri <hocuri@gmx.de>
2021-07-28 16:53:03 +02:00
bjoern a6490bf4cb Update src/org/thoughtcrime/securesms/connect/AccountManager.java
Co-authored-by: Hocuri <hocuri@gmx.de>
2021-07-28 16:52:54 +02:00
B. Petersen 1c4b06c501 int can't be @Nullable 2021-07-28 16:44:28 +02:00
B. Petersen 3d4bac8e9a update deltachat-core-rust submodule 2021-07-28 15:22:18 +02:00
B. Petersen 129e7e34b8 update deltachat-core-rust submodule 2021-07-28 15:05:29 +02:00
B. Petersen 8006b68c7a update translations 2021-07-28 15:05:15 +02:00
B. Petersen 531af69c9e update deltachat-core-rust submodule 2021-07-27 15:53:06 +02:00
B. Petersen c94ec36814 remove superfluous string (that change was lost during rebase) 2021-07-27 00:17:16 +02:00
B. Petersen 7959053429 process events belonging to current context only 2021-07-26 21:37:33 +02:00
B. Petersen 0f7984442a adapt AccountsManager to DcAccounts 2021-07-26 21:37:32 +02:00
B. Petersen 634c8d1e49 use accounts event emitter 2021-07-26 21:37:32 +02:00
B. Petersen 78cd6cd8e8 create DcAccounts object on startup, migrate existing accounts 2021-07-26 21:37:32 +02:00
B. Petersen c661cc8385 remove unneeded declarations of ApplicationDcContext 2021-07-26 21:37:32 +02:00
B. Petersen 1d9a6375be always get DcContext via DcHelper 2021-07-26 18:41:42 +02:00
B. Petersen b28a62a1ea remove functions from subclassed DcContext
the functions were part of ApplicationDcContext for no special reason,
however, now standing in the way of avoiding subclassing DcContext
(to use the DcContext objects returned from DcAccounts directly).
2021-07-26 18:41:42 +02:00
B. Petersen 4c679053b9 add dc_accounts_t api to JNI 2021-07-26 18:37:49 +02:00
B. Petersen 974e3b4f4e update translations 2021-07-26 15:08:14 +02:00