Benoit Marty
bb55a5676c
Secure backup
2023-10-27 12:18:40 +02:00
Marco Romano
d7ce326612
Show correct UI when replying to a voice message ( #1658 )
...
Shows voice messages in the room summary.
Shows voice messages in the reply context menu and composer.
Show replies to voice messages in the timeline.
(before this PR voice messages were shown the same as audio messages)
Story: https://github.com/vector-im/element-meta/issues/2106
2023-10-27 11:30:57 +02:00
Benoit Marty
61d59913bb
Merge pull request #1651 from vector-im/feature/bma/uiUpdate
...
Preparatory work for SecureBackup: UI update
2023-10-27 11:03:29 +02:00
David Langley
1db2adae7e
Merge branch 'develop' of https://github.com/vector-im/element-x-android into langleyd/live_waveform
2023-10-27 08:44:25 +01:00
David Langley
510b1f63b9
Simple live waveform implementation.
2023-10-26 23:46:03 +01:00
Marco Romano
a67560c74b
Convert mx waveform to floats as early as possible in the chain ( #1652 )
...
This way we're sure that internally we always deal with [0;1] float samples. the [0;1024] int range is used only at the rust sdk boundary.
2023-10-26 16:58:00 +00:00
Benoit Marty
f9cf3c814d
Fix warning: Composable functions should only be emitting content into the composition from one source at their top level.
2023-10-26 17:49:13 +02:00
Benoit Marty
c93470b6e4
Rename file.
2023-10-26 17:40:51 +02:00
Benoit Marty
b12f9ff3a8
Use DialogLikeBannerMolecule in NotificationSettingsView.
2023-10-26 17:40:51 +02:00
Benoit Marty
243c47682f
Design: extract DialogLikeBannerMolecule from RequestVerificationHeader
2023-10-26 17:40:51 +02:00
Benoit Marty
c6ddc33be7
Preference: Add badge to the icon preference.
2023-10-26 17:40:51 +02:00
Benoit Marty
f34fdcc87b
Design kit: add destructive dialog action
2023-10-26 17:40:51 +02:00
Benoit Marty
1af4bfb1d8
Design kit: add destructive buttons.
2023-10-26 17:40:51 +02:00
Benoit Marty
6f4335bd02
Add RedIndicatorAtom
2023-10-26 17:40:51 +02:00
jonnyandrew
8258bdcf80
Move waveform UI to design system library ( #1649 )
2023-10-26 15:15:42 +00:00
David Langley
e388ea21b6
Merge branch 'develop' into dla/feature/custom_room_notification_settings_list
2023-10-24 17:20:15 +01:00
ganfra
833bff9ba9
Merge branch 'develop' into feature/fga/pin_create_ui
2023-10-19 22:26:21 +02:00
Jorge Martin Espinosa
5e547269e7
Integrate Element Call with widget API ( #1581 )
...
* Integrate Element Call with widget API.
- Add `appconfig` module and extract constants that can be overridden in forks there.
- Add an Element Call feature flag, disabled by default.
- Refactor the whole `ElementCallActivity`, move most logic out of it.
- Integrate with the Rust Widget Driver API (note the Rust SDK version used in this PR lacks some needed changes to make the calls actually work).
- Handle calls differently based on `CallType`.
- Add UI to create/join a call.
---------
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
2023-10-19 15:38:43 +00:00
David Langley
af4a1d3fd6
Merge branch 'develop' of https://github.com/vector-im/element-x-android into dla/feature/custom_room_notification_settings_list
2023-10-18 22:07:14 +01:00
ganfra
f07a687630
Create pin : start handling the text field
2023-10-18 21:20:47 +02:00
Benoit Marty
5f56961fd0
Merge pull request #1556 from vector-im/feature/bma/videoLock
...
Ensure screen does not turn off when playing a video (#1519 )
2023-10-13 14:05:30 +02:00
ganfra
c6a6ccc844
Merge pull request #1554 from vector-im/feature/fga/init_pin_unlock
...
[Pin code] : setup the feature
2023-10-13 12:38:41 +02:00
Benoit Marty
a71fb431d3
Ensure screen does not turn off when playing a video ( #1519 )
2023-10-12 15:53:05 +02:00
Benoit Marty
eebc39fab7
Konsist: add test about PreviewParameterProvider class name and fix existing issues.
2023-10-12 15:03:50 +02:00
Benoit Marty
84594caad3
Use existing BooleanProvider
2023-10-12 15:03:50 +02:00
ganfra
a2ebf39cb5
Pin setup with fake lock
2023-10-11 18:09:16 +02:00
Benoit Marty
308a0c0f57
Konsist: add test to ensure filename match top level Composable View, and fix existing issue
2023-10-10 15:39:22 +02:00
Marco Romano
182511d92c
Optimize use of blurhash algo in bloom modifier ( #1509 )
...
- Reduced to 20px the size of the bitmap we encode the blurhash from.
- Reduced the blurhash components from 5 to 4.
As per suggestions in: https://github.com/woltapp/blurhash#good-questions
2023-10-09 16:24:37 +02:00
Benoit Marty
0d297bd0da
Add preview for InfoListOrganism
2023-10-04 09:16:19 +02:00
Benoit Marty
1518ebc2fe
Move InfoListItemMolecule to the molecules package.
2023-10-04 09:09:46 +02:00
Benoit Marty
a35cbd3cbd
Move InfoListOrganism to the new organisms package.
2023-10-04 09:08:57 +02:00
jonnyandrew
70dfbd7c31
[Rich text editor] Add full screen mode ( #1447 )
...
- Add full screen mode for the rich text editor (RTE). When text formatting options are enabled, the editor can be dragged to full screen.
- Remove `ConstraintLayout` from `textcomposer` module, now made much simpler now the RTE supports being called in multiple layouts matrix-org/matrix-rich-text-editor#822
- Part of vector-im/element-meta#1973
- Includes design from #1315
- Fixes #1293 (through new layout)
- Fixes #1394 (through inclusion of matrix-org/matrix-rich-text-editor#824 )
- Fixes #1259 (through inclusion of matrix-org/matrix-rich-text-editor#820 )
---------
Co-authored-by: ElementBot <benoitm+elementbot@element.io>
2023-09-29 09:11:18 +00:00
Benoit Marty
5964591a19
Fix lint UnnecessaryComposedModifier and make it an error
2023-09-28 16:55:21 +02:00
Benoit Marty
99caa031e8
Replace mutableStateOf by mutableIntStateOf and mutableFloatStateOf. Use intValue and floatValue to avoid unboxing.
2023-09-26 18:07:53 +02:00
David Langley
a9d87da1ff
Add roomsWithUserDefinedRules data and render list
...
- get roomsWithUserDefinedRules from rust
- add to state in the presenter
- render in the edit defaults view as a list
2023-09-22 16:16:52 +01:00
Benoit Marty
38ee16725e
Add animation on the timeline content, to avoid glitch ( #1323 )
2023-09-21 18:43:46 +02:00
Benoit Marty
d2ca528679
Detekt: Rename DayNightPreviews to PreviewsDayNight to follow naming convention.
...
MultiPreview annotations should start with `Previews` as prefix
2023-09-21 08:30:36 +02:00
Benoit Marty
76d448e34b
Detekt: Rename LargeHeightPreview to PreviewWithLargeHeight to follow naming convention.
...
MultiPreview annotations should start with `Preview` as prefix
Detekt: Rename `LargeHeightPreview` to `PreviewWithLargeHeight` to follow naming convention.
Custom Preview annotations should start with `Preview` as prefix
2023-09-21 08:30:15 +02:00
Benoit Marty
c15e47d571
Merge pull request #1392 from vector-im/feature/bma/iterateOnIcons
...
Iterate on icons
2023-09-20 23:20:28 +02:00
Benoit Marty
426bb5b622
Remove unused resource, and use compound icons when possible.
2023-09-20 16:45:38 +02:00
Benoit Marty
d6ea21da22
Migrate other icons to compound icons.
2023-09-20 16:44:59 +02:00
Benoit Marty
21f1fc5a20
Better rendering on screenshot test
2023-09-20 16:44:59 +02:00
Benoit Marty
5fafd51e40
Fix warnings.
2023-09-20 16:44:59 +02:00
Benoit Marty
8fedc40008
Remove VectorIcons object, inline the values.
2023-09-20 16:44:59 +02:00
Benoit Marty
90f5537adc
All icons are now white
2023-09-20 09:08:31 +02:00
Benoit Marty
fd20bf102e
Add Icons preview.
2023-09-20 09:03:57 +02:00
jonnyandrew
2757b5b13d
[Rich text editor] Update code and links style ( #1362 )
2023-09-19 15:40:59 +00:00
Benoit Marty
e01f32091f
Import all the icons from zip file at https://github.com/vector-im/element-x-android/issues/1320
2023-09-19 17:11:57 +02:00
Benoit Marty
1ca050a4f8
Import all the compound icons from https://github.com/vector-im/compound-design-tokens/tree/main/icons .
2023-09-19 17:05:30 +02:00
Benoit Marty
4d7cad592c
Merge pull request #1372 from vector-im/feature/bma/dayNightPreview
...
Day night preview annotation
2023-09-19 14:04:49 +02:00