Gil Eluard
2ef916e38b
[Spaces] Show spaces in left panel #4509
...
- moved space filtering to MatrixKit
2021-07-30 06:56:37 +02:00
Gil Eluard
3c1084963d
[Spaces] Show suggested in room lists #4501
...
- Show suggested rooms section in home screen (no actions)
- Show suggested rooms section in rooms screen (no actions)
2021-07-29 23:24:34 +02:00
Gil Eluard
becd524288
Merge branch 'gil/4494_space_menu' into gil/4501_show_suggested_in_room_lists
...
# Conflicts:
# Riot/Modules/Common/Recents/DataSources/RecentsDataSource.m
2021-07-27 20:14:53 +02:00
Gil Eluard
030f85917f
[Spaces] Show spaces in left panel #4509
...
- filter rooms using `MXSpaceService` new API
2021-07-27 19:53:41 +02:00
Gil Eluard
00befeca34
[Spaces] Show spaces in left panel #4509
...
- filter rooms using `MXSpaceService` new API
- Added logs
2021-07-27 19:50:36 +02:00
Gil Eluard
f83a8beb51
Merge branch 'gil/4494_space_menu' into gil/4501_show_suggested_in_room_lists
2021-07-26 12:03:49 +02:00
Gil Eluard
f61a5751d2
Merge branch 'element_4509' into gil/4509_show_spaces_in_left_panel
2021-07-26 12:03:04 +02:00
SBiOSoftWhare
67e9e4a9fa
RecentsDataSource: Factorize section reset management and do not make it in refreshRoomsSection method.
2021-07-23 10:42:08 +02:00
Gil Eluard
5ed117e054
[Spaces] Show suggested in room lists #4501
...
- Request space suggested rooms in `RecentsDataSource`
2021-07-22 22:35:15 +02:00
Gil Eluard
5937917c01
[Spaces] Show spaces in left panel #4509
...
- Display the none hierarchical list of spaces in the left panel
- Space switching when new space selected
- Refresh space list and recents data after sync
2021-07-15 14:10:01 +02:00
Doug
6efff0af1d
Remove uninitialised header views.
2021-07-07 15:05:40 +01:00
Doug
b8a4a526b3
Remove custom section header for room directory from RecentsDataSource.
2021-07-07 14:31:52 +01:00
Doug
542533aa1b
Don't include directorySection in RecentsDataSource when in RecentsDataSourceModeRooms mode.
2021-07-07 11:48:23 +01:00
ismailgulek
7a0bd344eb
Hide invited rooms in recents if auto-accept option enabled
2021-06-21 14:51:09 +03:00
manuroe
db999b760d
Update Riot/Modules/Common/Recents/DataSources/RecentsDataSource.m
...
Co-authored-by: ismailgulek <ismailgulek@users.noreply.github.com >
2021-06-18 16:34:38 +02:00
manuroe
af23757cca
Room lists: Avoid app freezes by building them on a separated thread
...
#3777
2021-06-18 15:49:20 +02:00
Stefan Ceriu
43f6c44c78
Adopt consolidated logging mechanism ( #4370 )
...
* Adopted the new MXLog and replaced NSLog throughout the application - vector-im/element-ios/issues/4351
* Replaced NSLog() and print() usages with MXLog.debug()
* Added swiftlint rules for NSLog(), print(), println() and os_log()
* Escape paths used to run script build phases for swiftlint and swiftgen
2021-06-03 11:30:07 +03:00
SBiOSoftWhare
80ed19cadd
RecentsDataSource: Present the secure backup banner only if key backup is disabled.
2021-05-18 11:05:19 +02:00
SBiOSoftWhare
e25adbd8fd
RecentsDataSource: Do not display secure backup banner when keys upload is in process.
2021-05-17 15:44:29 +02:00
SBiOSoftWhare
e41e4978a3
RecentsDataSource: Hide spaces from home and room list but keep space invites.
2021-04-29 16:38:45 +02:00
Johannes Marbach
35cd428822
Fix memory leak in [RecentsDataSource dataSource:didStateChange:]
...
The block passed into `[MXSession listenToEventsOfTypes:onEvent:]` is stored with a strong
reference in the `listenerBlock` property of `MXSessionEventListener`. The method also
returns the listener and it is then stored into the `roomTagsListenerByUserId` dictionary
on `self`. Since a strong reference to `self` is captured in the block that means the block
retains `self` (via the capture) and `self` retains the block (via `roomTagsListenerByUserId`)
so there is a memory leak.
The bug is most easily reproduced during testing #4168 which involves closing the current
and creating a new session.
Signed-off-by: Johannes Marbach <n0-0ne+github@mailbox.org >
2021-04-08 20:54:03 +02:00
Gil Eluard
7d7a546166
Retrying & deleting failed messages
...
- Added unsent notice to tab bar room items
2021-03-11 09:01:44 +01:00
Gil Eluard
f00281c20f
Retrying & deleting failed messages
...
- Update after code review
2021-03-10 22:19:04 +01:00
Gil Eluard
3ab8635344
Update Riot/Modules/Common/Recents/DataSources/RecentsDataSource.m
...
Co-authored-by: manuroe <manuroe@users.noreply.github.com >
2021-03-10 21:31:24 +01:00
Gil Eluard
84d49f1344
Merge branch 'element_4014' into element_4013
...
# Conflicts:
# Riot/Modules/Room/DataSources/RoomDataSource.m
2021-03-09 13:22:13 +01:00
SBiOSoftWhare
5e724b893f
Update PublicRoomsDirectoryDataSource with RiotSettings.shared.showNSFWPublicRooms value where needed.
2021-03-03 16:33:11 +01:00
Gil Eluard
5cb904d2ee
Retrying & deleting failed messages
...
- Display an exclamation mark (on a red background). In case of a multi-line message
- When a message with an error is selected, show a bottom bar with the 4 following actions: Retry - Delete - Edit - Copy
- If users press on Delete, a confirmation dialog is displayed
- When error messages occur, a general error message appears above the composer. Selecting Delete will delete all error messages. Pressing on Retry will attempt to resend error messages
- If users press on Delete, a confirmation dialog is displayed
- In room lists, decorate rooms with errored messages with the error icon. Rooms with errors should be sorted first
2021-03-02 21:56:50 +01:00
manuroe
c27259936c
MXSession: Make sure vc_canSetupSecureBackup is reusable
...
Put specific additional check out of this method
2020-10-01 16:46:32 +02:00
SBiOSoftWhare
1f6743f612
Remove old AppDelegate imports.
2020-08-31 19:38:06 +02:00
ismailgulek
83a29d1bee
Namespace some settings
2020-08-03 16:07:39 +03:00
manuroe
fbf8ed83b6
BuildSettings: Add options for Room directory
2020-07-31 15:14:26 +02:00
SBiOSoftWhare
fe468c0c09
Theme: Update disclosure indicator with theme color.
2020-07-16 23:16:11 +02:00
SBiOSoftWhare
ece9e77cd8
Refactor cross signing banner.
2020-06-30 21:46:10 +02:00
SBiOSoftWhare
9c66b5428b
RecentsDataSource: Handle key verification setup banner.
2020-06-30 17:33:42 +02:00
SBiOSoftWhare
dfb5627126
Refactoring secure backup references.
2020-06-26 14:13:37 +02:00
SBiOSoftWhare
f3f1654007
Refactoring secure backup references.
2020-06-26 13:07:53 +02:00
SBiOSoftWhare
7c749a026f
Fix refactoring.
2020-06-25 17:52:36 +02:00
SBiOSoftWhare
057890dd52
Fix Manu's remarks.
2020-06-25 17:31:46 +02:00
SBiOSoftWhare
2c30d7daa2
RecentsDataSource: Handle secure key backup banner display logic.
2020-06-25 16:01:32 +02:00
ismailgulek
e77aceef7b
Section header views adaptation to safe area insets
...
Signed-off-by: ismailgulek <gulekismail@gmail.com >
2020-04-22 14:00:31 +03:00
Giom Foret
f65b5e735e
Bug Fix Key backup banner is not hidden correctly
...
#2899
2020-01-09 19:17:54 +01:00
SBiOSoftWhare
1371487821
Do not present key backup banner on HomeVIewController if there are no keys to backup
2019-03-05 15:35:39 +01:00
manuroe
9c806c4c6c
Reskin: HomeVC: Use notices colors for badges background in section headers
...
#2292
2019-02-28 22:09:57 +00:00
manuroe
ed3224cba0
Reskin: Text in badges should be white in dark theme
...
#2283
2019-02-21 13:07:37 +01:00
manuroe
5ba30e5913
Key backup: Fix crash when switching tabs if there is a banner on the home tab
...
This is a regression made in #2265 (Key backup: avoid to refresh the home room list on every backup state change).
On other tabs than `self.keyBackupBanner` must be reset to `KeyBackupBannerNone` so that there is no banner section.
2019-02-19 14:51:47 +01:00
manuroe
99439360d4
Key backup: avoid to refresh the home room list on every backup state change
...
A possible mitigation for #2265
2019-02-18 18:27:21 +01:00
manuroe
7c370e5feb
Key backup: Check backup update on the homeserver
...
when opening the home or the settings screen in order to display the right banner and settings.
2019-02-06 17:34:16 +01:00
SBiOSoftWhare
fafc09d862
Fix Manu's comments
2019-02-01 10:15:39 +01:00
SBiOSoftWhare
b9c8d1501d
Handle key backup recover banner display
2019-02-01 09:51:57 +01:00
SBiOSoftWhare
81d80d51fd
Handle key backup setup banner display
2019-01-31 19:52:32 +01:00