Benoit Marty
feed0ada86
FileViewer: fix coloration issue for logs files.
2024-01-26 11:45:01 +01:00
Benoit Marty
8a2490f1e8
Merge pull request #2294 from element-hq/feature/bma/fix
...
Ensure login and password exclude `\n`
2024-01-26 10:11:51 +01:00
Jorge Martin Espinosa
17f22d143b
Add 'send private read receipts' option in advanced settings ( #2290 )
...
* Add 'send private read receipts' option in advanced settings
* Create `SessionPreferencesStore` that stores the settings for the current use separate from those of the app.
* Rename `PreferencesStore` to `AppPreferencesStore` to split the preferences.
---------
Co-authored-by: ElementBot <benoitm+elementbot@element.io >
2024-01-26 10:06:26 +01:00
Benoit Marty
9e1ad60bff
Ensure login and password exclude \n. #2263
2024-01-25 18:00:41 +01:00
Benoit Marty
c0da3fb45e
Merge pull request #2292 from element-hq/feature/bma/gitSha
...
Git sha and branch in log
2024-01-25 17:40:43 +01:00
Benoit Marty
d8ddde458b
Fix test, there is a new data sent.
2024-01-25 16:46:44 +01:00
Benoit Marty
fc60b79249
Remove extra new line.
2024-01-25 16:46:24 +01:00
Benoit Marty
644c4d3570
Move FakeVersionFormatter to the test sourceSet.
2024-01-25 14:36:42 +01:00
Benoit Marty
410a326557
Add test for DefaultVersionFormatter
2024-01-25 14:34:19 +01:00
Benoit Marty
f47b9827c5
Restore branch and git sha, to use it in logs and in rageshakes.
...
Remove quite useless `gitRevisionDate`.
2024-01-25 14:16:21 +01:00
Benoit Marty
66ed3f2e3f
Fix Compose issues.
2024-01-25 11:10:01 +01:00
Benoit Marty
647c431f59
Change type of ViewFileState.lines from ImmutableList<String> to AsyncData<List<String>> to properly handle loading and error states.
2024-01-25 10:21:28 +01:00
Benoit Marty
6c6c215cd6
Add some Divider around the "View logs" item.
2024-01-25 09:49:36 +01:00
Benoit Marty
75adfb8043
Fix test compilation issue.
2024-01-25 09:32:44 +01:00
Benoit Marty
4f8edce538
View Folders and files
...
Add test
Add test
2024-01-24 23:11:52 +01:00
Jorge Martin Espinosa
14fc747e80
Update timeline items read receipts when the room members are loaded ( #2194 )
...
* Update timeline items' sender info and read receipts when the room members info is loaded
* Only update this info if we have loaded the room members
2024-01-24 08:07:15 +01:00
Benoit Marty
3faaf208b4
Merge pull request #2264 from element-hq/renovate/io.nlopez.compose.rules-detekt-0.x
...
Update dependency io.nlopez.compose.rules:detekt to v0.3.10
2024-01-23 18:55:02 +01:00
Jorge Martin Espinosa
f9c5cd07a9
Return cached room members before fetching new ones, do it in batches ( #2274 )
...
* Use cached users from the Rust SDK.
Also lazy load received users by batches.
* Create `RoomMemberListFetcher` to wrap all the room member loading logic
* Ensure we clear `RoomMember` Rust references if the fetching coroutine is canceled
2024-01-23 18:23:20 +01:00
Benoit Marty
30cea9c70a
Always use the latest... fix.
2024-01-23 18:13:33 +01:00
Benoit Marty
cff076b508
Fix detekt issue:
...
Lambda parameters in a @Composable that are referenced directly inside of restarting effects can cause issues or unpredictable behavior.
If restarting the effect is ok, you can add the reference to this parameter as a key in that effect, so when the parameter changes, a new effect is created.
However, if the effect is not to be restarted, you will need to use `rememberUpdatedState` on the parameter and use its result in the effect.
See https://mrmans0n.github.io/compose-rules/rules/#be-mindful-of-the-arguments-you-use-inside-of-a-restarting-effect for more information. [LambdaParameterInRestartableEffect]
2024-01-23 18:13:33 +01:00
Benoit Marty
fa09b70411
Change type of SecureBackupEnableState.enableAction from AsyncData to AsyncAction
2024-01-23 18:13:33 +01:00
Benoit Marty
83267173c7
Merge pull request #2278 from element-hq/feature/bma/reportProblemFromOnBoarding
...
Add a report problem text button to the OnBoarding screen.
2024-01-23 17:23:54 +01:00
Benoit Marty
13ca096d7a
Add a report problem text button to the OnBoarding screen #2275 .
2024-01-23 15:55:32 +01:00
Benoit Marty
7ed20f9aab
Remove unnecessary parenthesis.
2024-01-23 14:27:06 +01:00
Benoit Marty
746719d961
@Suppress("LargeClass") for test.
2024-01-23 14:25:16 +01:00
Benoit Marty
f9aa178388
Fix complexity error by extracting condition to a val.
2024-01-23 14:24:40 +01:00
Benoit Marty
cdbfe8f92c
Fix API break: use new methods canUserRedactOwn and canUserRedactOther.
2024-01-23 13:32:13 +01:00
Benoit Marty
b95e13be4b
Merge pull request #2265 from element-hq/bma/notificationCount
...
Iterate on notification count
2024-01-23 12:13:23 +01:00
Benoit Marty
51c40f2b13
Make isTimestampHighlighted a computed val.
2024-01-23 11:20:10 +01:00
Jorge Martin Espinosa
06439536a8
Edited text message bubbles should resize when edited ( #2272 )
...
* Make `ContentAvoidingLayoutScopeInstance` scope aware so message bubbles are resized when edited.
* Move back to using `Layout` instead of `SubcomposeLayout`
2024-01-22 17:53:10 +01:00
Benoit Marty
ca1f907ec5
Use new Rust fields numUnreadMessages and numUnreadMentions, and iterate on the room badge rendering.
2024-01-22 15:48:46 +01:00
Benoit Marty
38515a9718
Fix detekt issue:
...
Use `?.let {}` instead of if/else with a null block when checking for nullable values [UseLet]
2024-01-22 14:21:49 +01:00
Benoit Marty
2acd00bcd8
Introduce RoomListRoomSummaryFactory and remove RoomListRoomSummaryPlaceholders.
2024-01-22 11:29:54 +01:00
Benoit Marty
5bcef21154
Remove default value for constructor of RoomListRoomSummary.
2024-01-22 11:11:44 +01:00
Benoit Marty
3ec86f9b5f
Ensure there is no timestamp in RoomListRoomSummary if lastMessage is null.
2024-01-22 11:05:25 +01:00
Benoit Marty
e72b5c4614
Ensure roomId are unique in the list.
2024-01-22 11:02:45 +01:00
Benoit Marty
9a9beeb532
Use aRoomListRoomSummary function instead of invoking the constructor.
2024-01-22 11:02:13 +01:00
Benoit Marty
0334da7a14
fun aRoomListRoomSummary: make internal, add all fields and reorder to match RoomListRoomSummary constructor order.
2024-01-22 10:59:42 +01:00
Benoit Marty
ca5850e0e5
Do not use the function for preview in test.
2024-01-22 10:49:19 +01:00
Benoit Marty
f42e220d55
Merge pull request #2130 from element-hq/feature/bma/roomListBadge
...
Some rework on the codebase
2024-01-22 10:17:38 +01:00
bmarty
d2a4c737a6
Sync Strings from Localazy
2024-01-22 00:10:44 +00:00
Benoit Marty
846fd0106e
Preview with a last message by default.
2024-01-19 17:59:18 +01:00
Benoit Marty
32dc7bca23
Merge pull request #2221 from element-hq/feature/bma/displayNameAmbiguous
...
Display name disambiguation
2024-01-19 17:42:32 +01:00
Benoit Marty
5e5eddd537
Merge pull request #2244 from element-hq/feature/bma/encryptedDb2
...
Encrypted db
2024-01-19 17:40:23 +01:00
Jorge Martin Espinosa
ac3201b317
Remove some state events at the start of DMs ( #2252 )
...
* Remove some initial events for DMs
2024-01-19 17:34:27 +01:00
Jorge Martin Espinosa
854622b85f
Make the room settings screen update automatically ( #2197 )
...
* Make the room settings screen update automatically
2024-01-19 17:34:06 +01:00
Benoit Marty
ccec00515d
Improve aRoomListRoomSummary method.
2024-01-19 16:51:05 +01:00
Benoit Marty
31b2c55bee
Remove default value of RoomSummaryDetails constructor, and iterate on fixture functions.
2024-01-19 16:46:42 +01:00
Benoit Marty
49abbfce7f
Remove dead code.
2024-01-19 16:46:42 +01:00
Benoit Marty
82a3750cd8
Remove notificationMode to userDefinedNotificationMode to match SDK name.
2024-01-19 16:46:42 +01:00