Commit Graph

4965 Commits

Author SHA1 Message Date
Nicolas Mauri 1c9d998dae Code cleanup 2023-01-13 15:29:51 +01:00
Nicolas Mauri 9896fb124b Fix how is resent a voice broadcast chunk 2023-01-13 08:33:30 +01:00
David Langley e79fd71bd5 Merge pull request #7223 from vector-im/langleyd/7222_fix_location_sharing_permissions_request
Langleyd/7222 fix location sharing permissions request
2023-01-12 09:15:24 +00:00
Phl-Pro e2a635f961 Handle VoIP buttons when VB is used (#7225) 2023-01-10 14:24:46 +00:00
Alfonso Grillo 3f97f89e0a Merge pull request #7231 from vector-im/alfogrillo/render_poll_end_event
Render poll ended event in the timeline (PSG-196)
2023-01-10 14:49:13 +01:00
Alfonso Grillo c156f76ec5 Refine MXKEventFormatter 2023-01-10 12:20:34 +01:00
Alfonso Grillo d965becd7a Fix poll.end read receipts 2023-01-10 12:20:34 +01:00
Alfonso Grillo 43d4ceb101 Cleanup code 2023-01-10 12:20:34 +01:00
Alfonso Grillo 64f904f8dd Fix reactions layout 2023-01-10 12:19:39 +01:00
Alfonso Grillo c18f3a1be5 Fix reload bug 2023-01-10 12:18:00 +01:00
Alfonso Grillo d982174efe Push poll.end event to PollAggregator 2023-01-10 12:17:15 +01:00
Alfonso Grillo 96fca04471 Remove filter for poll.end events 2023-01-10 12:17:15 +01:00
Yoan Pintas c3322ea747 Delete an existing broadcast (#7219) 2023-01-10 09:32:18 +00:00
Nicolas Mauri aedd289169 Pause voice broadcast listening on new voice broadcast recording (#7192) 2023-01-09 17:41:21 +01:00
Nicolas Mauri e17dd2eca1 Merge pull request #7245 from vector-im/nimau/7235_prevent_new_voicemessage_during_VB
Send voice message should not be allowed during a voice broadcast recording (#7235)
2023-01-09 17:13:53 +01:00
Nicolas Mauri 56ef64009d Merge pull request #7243 from vector-im/nimau/7179_VB_reactions
add support for reactions on VB (#7179)
2023-01-09 17:09:33 +01:00
Nicolas Mauri 15c68bfe3d Ensures that we only support reactions for a start event 2023-01-09 14:46:26 +01:00
Nicolas Mauri b8923460df Allow to add reactions on VB using a long press gesture 2023-01-09 14:18:31 +01:00
Nicolas Mauri bbb13516bf Send voice message should not be allowed during a voice broadcast recording (#7235) 2023-01-06 17:45:48 +01:00
Nicolas Mauri cf28034dad Fix clearCache method on VoiceMessageAttachmentCacheManager 2023-01-06 16:14:43 +01:00
Nicolas Mauri 94d14c581c add support for reactions on VB (#7179) 2023-01-06 12:18:19 +01:00
Nicolas Mauri ad66f0fad2 Merge pull request #7242 from vector-im/nimau/7240_voice_message_temp_file_not_deleted
Fix temporary file deletion for a voice message (#7240)
2023-01-06 09:29:32 +01:00
Nicolas Mauri 6c1a5434ad Fix temporary file deletion for a voice message (#7240)
Signed-off-by: Nicolas Mauri <nicolasm@element.io>
2023-01-05 16:43:04 +01:00
Nicolas Mauri 93f53e2120 fixed a crash when a new DM room is created (#7232)
Signed-off-by: Nicolas Mauri <nicolasm@element.io>
2023-01-05 10:47:01 +01:00
Alfonso Grillo 724c07d352 Merge pull request #7221 from vector-im/alfogrillo/fix_navigation_to_replied_message
Fix navigation from replies
2023-01-04 16:16:08 +01:00
David Langley 4a6f346f1e Update Riot/Modules/LocationSharing/LocationManager.swift
Co-authored-by: Alfonso Grillo <alfogrillo@element.io>
2023-01-03 17:54:02 +00:00
David Langley d08a967054 remove unnecessary function 2023-01-03 16:55:28 +00:00
David Langley 1639fccdd1 Revert "remove unnecessary function"
This reverts commit caa6755d2b.
2023-01-03 16:54:41 +00:00
David Langley caa6755d2b remove unnecessary function 2023-01-03 16:54:03 +00:00
David Langley d76d450365 Fix both issues as outlined in 7222 2023-01-03 16:52:25 +00:00
Alfonso Grillo 8cb0d39df4 Fix module navigation 2023-01-03 15:39:08 +01:00
Johannes Marbach dc4b8350ce Fix hidden live location timeline tiles after text messages
This prevents `MXEventTypeBeaconInfo` events from being added into other
bubble cell data objects.

Previously, when starting a live location share right after
sending a text message, the beacon info event would get appended into the text
message's bubble cell data which prevented it from rendering.

Similarly, when restarting the app in such a situation the events would be getting
reprocessed _in backwards order_ which meant the final beacon info landed in
its own bubble cell data (causing it to render) but a beacon info right before the
text message would now get combined with the text message causing it to go hidden.
2023-01-03 13:57:23 +01:00
Alfonso Grillo 7b25ef20ee Amend comment 2023-01-03 13:25:56 +01:00
Alfonso Grillo 27c43d38c7 Fix navigation to replied message 2023-01-02 19:49:52 +01:00
Gil Eluard d66ee4c627 Merge pull request #7185 from vector-im/gil/6059-Load_thread_list_using_server-side_sorting_and_pagination
Load the thread list using server-side sorting and pagination
2022-12-28 10:36:19 +01:00
Phl-Pro 22aceb6040 VoiceBroadcast: Manage app crash cases when recording (#7188)
* Cancel automatically a Voice Broadcast from a room after an app crash
* We limit for the moment the uncompleted voice broadcast cleaning to the breadcrumbs rooms list

By considering potential performance issues, we decided to limit the uncompleted VB cleaning in the recents list service:
- we run the process only once when the application is resumed
- we run the process only on the breadcrumbs rooms list

This prevent us from checking several times in parallel the same room (because a room may be listed in several recents sections)
This prevent us from checking several times the same room (each room should be checked only once after the app resume)
If a room is not checked from the recents list, a sanity check is still done in RoomViewController (to clean the room when the user opens it)
2022-12-23 15:25:52 +01:00
Yoan Pintas 4779c4b5fb [Voice Broadcast] Add chunk after decrypting the event. (#7181) 2022-12-19 19:32:01 +01:00
Yoan Pintas f6670ec5d0 Update the room description in the rooms list in case of live broadcast (incoming or outgoing) (#7160) 2022-12-19 19:26:55 +01:00
Gil Eluard 8934be147b Load the thread list using server-side sorting and pagination 2022-12-19 14:56:06 +01:00
Mauro Romito 7125cc60ee Merge branch 'develop' into mauroromito/inline_code 2022-12-16 10:09:31 +01:00
Mauro Romito 3f3b7db4b6 updated package and added background color 2022-12-15 18:45:33 +01:00
Mauro Romito 71ceb2fc40 fix that works both iOS 15 and iOS 16 2022-12-15 16:33:25 +01:00
Velin92 1877206ab1 Merge pull request #7170 from vector-im/mauroromito/7109_fix_formatted_links
Fix for formatted links appearing in black
2022-12-15 12:37:38 +01:00
Mauro Romito 43729bd3a4 better comment 2022-12-15 12:36:44 +01:00
Mauro Romito 29b5915323 Revert "removed underline from links"
This reverts commit ce9a64a1dc.
2022-12-15 04:29:49 +01:00
Mauro Romito ce9a64a1dc removed underline from links 2022-12-15 04:28:01 +01:00
Mauro Romito aea1be4512 code improvement 2022-12-15 03:40:15 +01:00
Mauro Romito 6dca14ac2e better comment 2022-12-15 03:37:15 +01:00
Mauro Romito 0d569a28ff removed unused code 2022-12-15 01:44:26 +01:00
Mauro Romito da9b181fed fix 2022-12-15 01:41:45 +01:00