Florian Renaud
ee7c0593ba
Fix copyright
2022-08-25 14:37:06 +02:00
Florian Renaud
cac4df7d66
Improve createRoomThreePidEvents for clarity
2022-08-25 14:28:17 +02:00
Florian Renaud
eab4ebc3b1
Remove roomCreatorUserId and use current userId by default
2022-08-25 14:16:20 +02:00
Florian Renaud
90d688c222
Remove useless explicit field type
2022-08-25 14:07:50 +02:00
Florian Renaud
2be2a05795
Change visibility of LocalRoomThirdPartyInviteContent to internal
2022-08-25 14:05:25 +02:00
Florian Renaud
110cabaca1
Remove useless apply in CreateLocalRoomStateEventsTask
2022-08-25 14:00:58 +02:00
Florian Renaud
5d1124aa95
Update doc
2022-08-25 13:57:50 +02:00
Florian Renaud
128ff0d6ec
Extract condition to reduce code complexity
2022-08-25 13:57:50 +02:00
Florian Renaud
cbf9dbf290
Verify tombstone event
2022-08-25 13:57:50 +02:00
Florian Renaud
725537d8fe
Remove safe call
2022-08-25 13:57:50 +02:00
Florian Renaud
3905e564bd
Add unit tests for CreateRoomFromLocalRoomTask
2022-08-25 13:57:49 +02:00
Florian Renaud
882065f6cd
Add unit tests for CreateLocalRoomStateEventsTask
2022-08-25 13:57:49 +02:00
Florian Renaud
e22ce0d842
Set stateKey as empty by default
2022-08-25 13:57:49 +02:00
Florian Renaud
dee8484618
Create local room state events in dedicated task
2022-08-25 13:57:49 +02:00
Florian Renaud
7216f6bd64
Fix local events generation following the specification
2022-08-25 13:57:49 +02:00
Florian Renaud
5df71c6161
Update CreateRoomParams from the potential FeaturePreset before persisting
2022-08-25 13:57:49 +02:00
Florian Renaud
c96343f1d7
Persists CreateRoomParams into LocalRoomSummaryEntity
2022-08-25 13:57:49 +02:00
Florian Renaud
69917ebc2e
Start DM - Handle third party invites
2022-08-25 13:57:49 +02:00
Florian Renaud
b14e3c61b3
Start DM - Fix first message not encrypted
2022-08-25 13:57:49 +02:00
Florian Renaud
72896f1c8a
Create the DM when sending an event
2022-08-25 13:57:49 +02:00
Benoit Marty
973a5f1d6e
Version++
2022-08-23 17:02:24 +02:00
Benoit Marty
6c2885ff39
Granfra's review
2022-08-23 16:36:39 +02:00
Benoit Marty
58954ed590
Fix Exception: java.lang.IllegalArgumentException: Configurations cannot be different if used to open the same file.
...
See for instance https://github.com/matrix-org/element-android-rageshakes/issues/41975
2022-08-23 15:36:17 +02:00
Adam Brown
b50b6daca1
using wider range network error when deciding to forward to the edit server instead of just unknown host
...
- will also capture timeouts
2022-08-22 17:24:11 +01:00
Adam Brown
841ee33c82
Merge pull request #6837 from vector-im/feature/adm/missing-notifications
...
Missing notifications due to stuck background workers
2022-08-22 17:20:04 +01:00
Adam Brown
9b57630eae
Merge pull request #6873 from vector-im/feature/adm/allow-trusting-certificates
...
FTUE - Fix trusting certificates during edit server flow
2022-08-22 11:47:50 +01:00
Benoit Marty
e86058b299
Merge pull request #6884 from vector-im/feature/bma/sync_thread_investigation
...
Ensure sync thread is started
2022-08-22 12:09:54 +02:00
dependabot[bot]
8a2894f038
Bump libphonenumber from 8.12.53 to 8.12.54
...
Bumps [libphonenumber](https://github.com/google/libphonenumber ) from 8.12.53 to 8.12.54.
- [Release notes](https://github.com/google/libphonenumber/releases )
- [Changelog](https://github.com/google/libphonenumber/blob/master/making-metadata-changes.md )
- [Commits](https://github.com/google/libphonenumber/compare/v8.12.53...v8.12.54 )
---
updated-dependencies:
- dependency-name: com.googlecode.libphonenumber:libphonenumber
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-08-22 05:58:19 +00:00
Benoit Marty
fc4f4f7131
Add prefix to the name of the Thread the app is creating
2022-08-19 14:46:51 +02:00
Benoit Marty
eeeb569ae0
Add prefix to the name of the Thread the app is creating
2022-08-19 10:07:34 +02:00
Benoit Marty
0b1b228524
Fix #6782 . Ensure SyncThread is started
2022-08-19 09:55:14 +02:00
Benoit Marty
4ffab7fc13
API: return String instead of printing out to logcat.
2022-08-18 15:09:48 +02:00
Benoit Marty
ec3512fd5b
Increase some log level
2022-08-18 14:58:19 +02:00
Adam Brown
457f7fffee
promoting the accept certificate to an explict ViewEvent
...
- allows a retryAction to be provided to the event to avoid mutatble state within the view model along with providing a clear path of execution
2022-08-18 11:41:19 +01:00
Adam Brown
cc74dcfb90
Merge pull request #6589 from vector-im/dependabot/gradle/io.realm-realm-gradle-plugin-10.11.1
...
Bump realm-gradle-plugin from 10.11.0 to 10.11.1
2022-08-17 16:19:14 +01:00
Adam Brown
1fd1a4e824
fixing SyncWorker becoming stuck in failure state on uncaught exception
...
- the sync worker makes use of the CoroutineWorker which does not stop when the work completes, this means we often append to the existing worker. When appending by default the previous worker result payload is merged with (or in our case overwrites) the input data instead, meaning any failure state is set and kept until the worker stops, which in turns causes the sync worker to never sync
- the fix is to make use of an input merge that always favour the request input data instead of the previous worker results
2022-08-17 15:22:28 +01:00
Adam Brown
a56a7adb46
including the worker failure message in the logs and including throwable class name
2022-08-17 15:18:05 +01:00
Benoit Marty
ea465a1b86
Fix false positive on string template suspicious usage.
2022-08-16 16:06:08 +02:00
Benoit Marty
6089d24409
Fix some string template issue.
2022-08-16 16:05:50 +02:00
Florian Renaud
9eb6969456
Use Content models in CreateRoomBodyBuilder
2022-08-12 13:10:49 +02:00
Florian Renaud
a1152ff72c
Improve RoomHistoryVisibility enum mapping
2022-08-12 13:10:49 +02:00
Florian Renaud
a124b514b8
Improve GuestAccess enum mapping
2022-08-12 13:10:49 +02:00
Florian Renaud
969689cdb9
Use CreateRoomStateEvent in RoomFeaturePreset.setupInitialStates
2022-08-12 13:10:49 +02:00
Maxime NATUREL
de240b7318
Fixing comment in beacon content model
2022-08-10 15:28:51 +02:00
Adam Brown
defd848363
updating version for next release cycle
2022-08-10 12:30:38 +01:00
Adam Brown
58d47df37b
Merge pull request #6736 from vector-im/feature/adm/non-ascii-username
...
Fixes crash when entering non ascii username during account creation
2022-08-09 11:52:02 +01:00
dependabot[bot]
30a8f22028
Bump libphonenumber from 8.12.52 to 8.12.53
...
Bumps [libphonenumber](https://github.com/google/libphonenumber ) from 8.12.52 to 8.12.53.
- [Release notes](https://github.com/google/libphonenumber/releases )
- [Changelog](https://github.com/google/libphonenumber/blob/master/making-metadata-changes.md )
- [Commits](https://github.com/google/libphonenumber/compare/v8.12.52...v8.12.53 )
---
updated-dependencies:
- dependency-name: com.googlecode.libphonenumber:libphonenumber
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-08-04 23:10:43 +00:00
Adam Brown
825ba77bb2
taking into account non ascii characters as invalid username error
2022-08-04 11:58:01 +01:00
Adam Brown
3fe7a9d8d5
Merge pull request #6588 from vector-im/dependabot/gradle/io.gitlab.arturbosch.detekt-1.21.0
...
Bump io.gitlab.arturbosch.detekt from 1.20.0 to 1.21.0
2022-08-02 12:56:45 +01:00
SpiritCroc
3845e1435c
Fix cleartext leak in log
...
Change-Id: Ifb9faaa52f63bcf9c88a8499c2b078dd1a2de62e
2022-08-01 13:00:30 +02:00