ElementBot
b2aa6b1622
Sync Strings from Localazy ( #5610 )
...
Co-authored-by: bmarty <3940906+bmarty@users.noreply.github.com >
2025-10-27 13:53:07 +01:00
Benoit Marty
bb12a6f18b
Merge pull request #5607 from element-hq/feature/bma/notificationStyle
...
Update notification style
2025-10-24 19:20:18 +02:00
Benoit Marty
0250e6fa75
Let notifications uses the brandColor.
2025-10-24 18:22:41 +02:00
ganfra
69b4fdec04
Fix ktlint
2025-10-24 18:15:15 +02:00
Benoit Marty
d8129e72bc
Let notifications uses the brandColor.
2025-10-24 17:04:48 +02:00
ganfra
e689eaf73a
design(space): let divider be full width
...
# Conflicts:
# features/home/impl/src/main/kotlin/io/element/android/features/home/impl/spaces/HomeSpacesView.kt
2025-10-24 16:07:16 +02:00
Benoit Marty
3010f9313b
Merge pull request #5600 from element-hq/feature/bma/deletePinCode
...
Delete pin code only when the last session is deleted
2025-10-24 09:47:57 +02:00
Jorge Martin Espinosa
009ceb8704
Clearing the room list search clears the search term too ( #5603 )
2025-10-24 09:30:10 +02:00
ganfra
6008af36ec
Merge pull request #5599 from element-hq/feature/fga/home_topbar_2
...
Design : update Home TopBar and RoomList Filters
2025-10-23 18:29:40 +02:00
ganfra
2de115d57b
design(home) : better comment on padding
2025-10-23 18:00:33 +02:00
ganfra
05d5ec78bb
design(home) : clean up
2025-10-23 17:22:39 +02:00
Benoit Marty
bc8db88a03
Add unit test on DefaultLockScreenService
2025-10-23 17:20:36 +02:00
ganfra
a5b4f50334
design(home) : allow scrolling to top when clicking on already selected tab
2025-10-23 17:00:40 +02:00
Benoit Marty
e427d8851e
Remove dead code.
2025-10-23 16:52:24 +02:00
Benoit Marty
eee53d8bbf
Delete the PIN code only when the last session is deleted.
2025-10-23 16:48:26 +02:00
Benoit Marty
66d8e6210d
Add default implementation to SessionListener
2025-10-23 16:48:20 +02:00
ganfra
eb2b527236
design(home) : use enterAlwaysScrollBehavior for the RoomListFiltersView
2025-10-23 16:41:43 +02:00
Benoit Marty
44e125dbc7
Add parameter wasLastSession to SessionListener.onSessionDeleted
2025-10-23 16:20:15 +02:00
ganfra
0498c3e4ed
design(home): makes HomeTopBar match design
2025-10-23 16:16:08 +02:00
ganfra
296b85eb2f
design(home): rename RomListTopBar to HomeTopBar
2025-10-23 16:11:26 +02:00
Benoit Marty
c53dabce16
Remove dependency on AppNavigationStateService from DefaultGetCurrentPushProvider
2025-10-23 15:03:04 +02:00
Benoit Marty
52dffa5418
Merge branch 'develop' into feature/bma/metro070
2025-10-23 11:30:25 +02:00
Benoit Marty
fedbc1e70a
Merge pull request #5566 from element-hq/feature/bma/securityAndPrivacy
...
Enable access to security and privacy
2025-10-23 11:29:34 +02:00
Benoit Marty
826cacf209
Remove @Inject, not necessary anymore when class is annotated with @ContributesBinding
2025-10-22 18:52:37 +02:00
Benoit Marty
9ad9efe547
Improve API of interface WellknownRetriever to be able to distinguish between 404 and other errors.
2025-10-22 14:45:15 +02:00
Benoit Marty
acdef75949
Merge remote-tracking branch 'origin/develop' into bma/brandColorFix
2025-10-22 12:27:00 +02:00
Benoit Marty
9e6fd63feb
Add missing tests on CallType and make it internal.
2025-10-22 12:20:06 +02:00
Benoit Marty
4026757201
Add missing tests on DefaultEnterpriseService
2025-10-22 11:55:58 +02:00
Benoit Marty
1587ed5fe2
Fix tests.
2025-10-22 10:18:44 +02:00
Benoit Marty
e7f6a1a5e6
Fix tests.
2025-10-22 10:15:32 +02:00
Benoit Marty
9af694b4a2
Use right colors on ForcedDarkElementTheme
2025-10-22 09:48:07 +02:00
Benoit Marty
82c6aca7e5
Move SemanticColorsLightDark to compound module
2025-10-22 09:35:55 +02:00
Benoit Marty
c2c77aad2a
Improve API and fix theme glitch when switching between accounts.
2025-10-22 09:32:15 +02:00
ganfra
3d203d19e1
misc: fix insets for search room list after offline banner rework
2025-10-21 17:26:43 +02:00
ganfra
68daf8d2cf
misc: display offline banner directly in LoggedInFlowNode (and fix window insets)
2025-10-21 16:05:20 +02:00
Benoit Marty
e122ff96ba
Add missing test.
2025-10-21 14:34:11 +02:00
Benoit Marty
e9969fda56
Iterate on rendering the "Ask to join" option.
2025-10-21 14:31:29 +02:00
Benoit Marty
f8628840ca
Merge pull request #5565 from element-hq/bma/wellknownBrandColor
...
Improve code around Element .well-known configuration
2025-10-21 14:15:30 +02:00
Benoit Marty
64b5b53510
Improve API and documentation
2025-10-21 11:53:36 +02:00
Jorge Martin Espinosa
10bf5f1c8c
Make sure declining a call stops observing the ringing call state ( #5563 )
...
* Add shared `removeCurrentCall` function to `DefaultActiveCallManager`
This centralises the shared call cancellation logic
* Add regression test for the issue
* Make sure the existing iterations of `flatMapLatest` in `observeRingingCall` get cancelled when the active call is null or not ringing anymore by passing null values, then filtering them out
Previously these kept running even if the `activeCall` was no longer valid
* Move the `timedOutCallJob` cancellation inside `removeCurrentCall` too
2025-10-21 11:26:13 +02:00
Jorge Martin Espinosa
cbeb58f00e
Keep the cursor position in room list search when going back ( #5570 )
...
Also, make sure disposing a `MessagesView` doesn't accidentally hide the keyboard once the transition animation is done
2025-10-21 11:25:46 +02:00
Benoit Marty
9d537589ff
Show AskToJoin option if this is the current value, even if the Knock FF is disabled.
2025-10-20 17:26:19 +02:00
Benoit Marty
7cb4a96fbe
Hide "Ask to join" option if Knock feature is disabled.
2025-10-20 17:11:47 +02:00
Benoit Marty
8ffae8d416
Remove Knock FF check to show the Security and Privacy entry point.
2025-10-20 17:11:46 +02:00
Benoit Marty
0e4a3c8d12
Bug reporter: ensure the log are store in the correct folder.
2025-10-20 16:33:49 +02:00
Benoit Marty
64ff19c808
Update API around brandColor.
2025-10-20 16:33:46 +02:00
Benoit Marty
71c853d1a7
Fix test warning ( #5558 )
...
* Introduce JsonProvider.
It will ensure that classes are using the correct Json instances in the unit tests.
* Avoid creating a Json instance many times.
* Update ref.
2025-10-20 12:08:05 +02:00
ElementBot
5f6a93cd1a
Sync Strings ( #5562 )
...
* Sync Strings from Localazy
* Sync strings again
---------
Co-authored-by: bmarty <3940906+bmarty@users.noreply.github.com >
Co-authored-by: Benoit Marty <benoit@matrix.org >
2025-10-20 10:04:46 +00:00
Benoit Marty
ab35235bae
Avoid creating a Json instance many times.
2025-10-20 09:40:47 +02:00
Benoit Marty
241a968d66
Introduce JsonProvider.
...
It will ensure that classes are using the correct Json instances in the unit tests.
2025-10-20 09:40:42 +02:00