react-native-matrix-sdk
Advanced tools
Changelog
1.0.0-alpha24
getLastEventsForAllRooms
caused a crashsendReadReceipt(roomId: string, eventId: string)
in androidmarkRoomAsRead(roomId)
Changelog
1.0.0-alpha22
appId
parameter to registerPushNotification
Changelog
1.0.0-alpha21
registerPushNotifications
to
yourpackagename.(android|ios)Changelog
1.0.0-alpha20
registerPushNotifications
APIChangelog
1.0.0-alpha19
registerPushNotifications
API (android and iOS) /**
* Adds a new pusher (service) to the user at the matrix homeserver. The matrix homeserver will
* use this pusher service to broadcast (push) notifications to the user's device (using FCM, APNS).
* @param appDisplayName
* @param pushServiceUrl
* @param token (FCM ID, or APNS device token)
*/
registerPushNotifications(appDisplayName: string, pushServiceUrl: string, token: string): Promise<void>;
Changelog
1.0.0-alpha18
MXRoomAttributes
name from notificationcount
-> notification_count
, thus fixing that undefined is returned
Changelog
1.0.0-alpha17
Changelog
1.0.0-alpha16
loadMessagesInRoom
works. Instead of needing to register a listener, it now returns the events of the room
as a promise array Promise<MXMessageEvents[]>
(docs updated accordingly)