Benoit Marty
706896a4de
Reorder params.
1 year ago
Jorge Martín
c3f49a2451
Split link text into a `ListSupportingText` component.
...
This also requires some internal changes to `ListSupportingText`, `ClickableLinkText` and `TimelineTextView` to match the behaviour and design.
1 year ago
renovate[bot]
bb75539647
Update kotlin to 1.9.10 ( #1123 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 year ago
Marco Romano
633d5282d6
"Create poll" UI ( #1143 )
...
NB: This is missing analytics, which will be added once https://github.com/matrix-org/matrix-analytics-events/pull/85 is merged.
Closes https://github.com/vector-im/element-meta/issues/2011
1 year ago
Benoit Marty
79af05bc08
Use buildAnnotatedStringWithStyledPart and remove copied code.
1 year ago
Florian Renaud
9c6a5bed54
Add unit tests for TimelineItemContentPollFactory
1 year ago
Benoit Marty
64a7fc5f52
Use a safer algorithm, and limit the size of the hashed string.
...
Fix an issue reported by Sonar.
1 year ago
Benoit Marty
7055fea895
Add preview for SunsetPage and fix warnings about Modifiers.
1 year ago
Benoit Marty
3a8eefc927
Fix warning.
1 year ago
Benoit Marty
ff749947f8
Add the Migrate session screen ( #1145 )
1 year ago
Benoit Marty
0ef0accdf6
Localazy: move string `screen_migration_` to ftue/impl module and sync the strings.
1 year ago
Benoit Marty
0c5675e307
Extract Composable to new SunsetPage.
1 year ago
Benoit Marty
8415826a97
Import strings with Localazy.
1 year ago
Florian Renaud
8f2647799e
Use a single preview for radio buttons with checked & unchecked states
1 year ago
Marco Romano
0abda97d6f
ListItem: Don't apply clickable modifier if onClick is null. ( #1146 )
...
If it is applied but disabled (like before this PR) it will hijack all touch input from the view and no other component in it can respond to clicks.
1 year ago
Jorge Martín
4b0f9213d3
Fix lint issues
1 year ago
yostyle
9e17d8f468
Fix PR comments
1 year ago
yostyle
85dd36a681
Update notification settings service interface to match rust SDK
1 year ago
yostyle
1c4198db5a
Update dispatcher
1 year ago
yostyle
eefecaec8b
Update strings
1 year ago
yostyle
eeb6c3f61c
Add feature flag
1 year ago
yostyle
01a0175d40
Update strings
1 year ago
yostyle
82c8acd3dc
Update strings
1 year ago
yostyle
a611766476
Fix edition
1 year ago
yostyle
a3aac9f66a
Rebase on develop
1 year ago
yostyle
856c674361
Update unit tests
1 year ago
yostyle
2c81384894
Rebase on develop
1 year ago
yostyle
83e45adfa5
Add room notification settings
1 year ago
Jorge Martin Espinosa
b326ca28cc
Improve list items: add lists to dialogs, rework `ListItem` customizations ( #1119 )
...
* Improve list items:
- Create `ListItemContent`.
- Create `ListItemStyle`.
- Apply those to `ListItem` components.
- Create helper list item components for checkboxes, switches, radio buttons.
* Create single/multiple selection dialogs.
* Create `SingleSelectionListItem` and `MultipleSelectionListItem`
- Add `subtitle` to `AlertDialogContents`.
- Fix paddings and margins inside dialogs.
- Add `ListOption`.
* Adds small delay before hiding the single selection dialog.
---------
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
1 year ago
Jorge Martin Espinosa
c670fc9e9c
Prevent verification while initial sync is in progress ( #1138 )
...
* Prevent verification while initial sync is in progress
* Add `canVerifySessionFlow` to simplify the check
1 year ago
Marco Romano
9fb0216272
Surface send poll start API from rust sdk ( #1140 )
...
Rust api added in: https://github.com/matrix-org/matrix-rust-sdk/pull/2391
Closes https://github.com/vector-im/element-meta/issues/2010
1 year ago
Jorge Martin Espinosa
648e2c378d
Fix sent videos being cropped ( #1124 )
1 year ago
Benoit Marty
7083abcf09
migrate `object` to `data object` ( #1135 )
1 year ago
renovate[bot]
53840c1009
Update dependency org.matrix.rustcomponents:sdk-android to v0.1.46 ( #1130 )
...
* Update dependency org.matrix.rustcomponents:sdk-android to v0.1.46
* Remove poll end code. The poll end event isn't shown in the timeline anymore.
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Marco Romano <marcor@element.io>
1 year ago
Benoit Marty
c84b1747e7
Handle remarks from PR #1127
1 year ago
Jorge Martin Espinosa
7eb1f1c7bf
When event has no id, just cancel parsing the latest room message ( #1126 )
1 year ago
Benoit Marty
d293cae47f
Implement didRefreshTokens(): update database with updated SessionData.
1 year ago
Benoit Marty
bc57a03a39
Add setting entry point to manage account (OIDC)
1 year ago
Benoit Marty
6928dc6e44
Restore OIDC support.
1 year ago
Benoit Marty
7ea9512642
Simplify code (code review).
1 year ago
Jorge Martin Espinosa
1922c505ef
Make links in messages clickable again ( #1115 )
1 year ago
Florian Renaud
246e9c50e6
Do not handle poll end event
1 year ago
Florian Renaud
886c6526e8
Improve previews
1 year ago
Florian Renaud
81051295a4
Use custom RadioButton
1 year ago
Florian Renaud
079d89ace5
Update UI for poll in the timeline
1 year ago
Benoit Marty
549218eeb2
Button theme: fix small integration mistake on button padding from Figma.
1 year ago
Benoit Marty
d7b22047c6
Code clarity (no change effect): always use when with `ButtonStyle.Filled`, `ButtonStyle.Outlined` and `ButtonStyle.Text` cases.
1 year ago
ganfra
ddf542755f
Fix memory leak : parallelMap can be cancelled so all members were not destroyed
1 year ago
ganfra
380b5302f3
Update rust sdk to 0.1.44
1 year ago
Jorge Martin Espinosa
bfd938a970
Linkify raw links in HTML message contents ( #1102 )
...
* Linkify links in HTML too:
- Creates a `ClickableLinkText` for `String`.
- Adds a `linkify` parameter to the original function, which is `true` by default.
- Does the linkify logic inside that component, if `linkify` is true.
* Add changelog
* Make sure we don't linkify user mentions or room aliases.
* Use remember to avoid re-processing the text for no reason.
1 year ago