Skip to content

Commit c002781

Browse files
committed
Bump to v0.0.1-december23 (matrix-rust-sdk/mauroromito/release_elx d4b8f88e10d8fdd066d529e28c30b87af6c14c55)
1 parent 9b63f21 commit c002781

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let checksum = "174db31d9bd30283d910dff26b238365cb9f477b70118578e256f7ad1e1ed8fa"
7-
let version = "v1.1.30"
6+
let checksum = "e9ef3e2bfddc4db627e0717a35e78a1d141b2c171826f968d1507863ca801e92"
7+
let version = "v0.0.1-december23"
88
let url = "https://github.com/matrix-org/matrix-rust-components-swift/releases/download/\(version)/MatrixSDKFFI.xcframework.zip"
99

1010
let package = Package(

Sources/MatrixRustSDK/matrix_sdk_ffi.swift

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8776,13 +8776,10 @@ public struct RoomInfo {
87768776
public var userDefinedNotificationMode: RoomNotificationMode?
87778777
public var hasRoomCall: Bool
87788778
public var activeRoomCallParticipants: [String]
8779-
public var numUnreadMessages: UInt64
8780-
public var numUnreadNotifications: UInt64
8781-
public var numUnreadMentions: UInt64
87828779

87838780
// Default memberwise initializers are never public by default, so we
87848781
// declare one manually.
8785-
public init(id: String, name: String?, topic: String?, avatarUrl: String?, isDirect: Bool, isPublic: Bool, isSpace: Bool, isTombstoned: Bool, canonicalAlias: String?, alternativeAliases: [String], membership: Membership, latestEvent: EventTimelineItem?, inviter: RoomMember?, activeMembersCount: UInt64, invitedMembersCount: UInt64, joinedMembersCount: UInt64, highlightCount: UInt64, notificationCount: UInt64, userDefinedNotificationMode: RoomNotificationMode?, hasRoomCall: Bool, activeRoomCallParticipants: [String], numUnreadMessages: UInt64, numUnreadNotifications: UInt64, numUnreadMentions: UInt64) {
8782+
public init(id: String, name: String?, topic: String?, avatarUrl: String?, isDirect: Bool, isPublic: Bool, isSpace: Bool, isTombstoned: Bool, canonicalAlias: String?, alternativeAliases: [String], membership: Membership, latestEvent: EventTimelineItem?, inviter: RoomMember?, activeMembersCount: UInt64, invitedMembersCount: UInt64, joinedMembersCount: UInt64, highlightCount: UInt64, notificationCount: UInt64, userDefinedNotificationMode: RoomNotificationMode?, hasRoomCall: Bool, activeRoomCallParticipants: [String]) {
87868783
self.id = id
87878784
self.name = name
87888785
self.topic = topic
@@ -8804,9 +8801,6 @@ public struct RoomInfo {
88048801
self.userDefinedNotificationMode = userDefinedNotificationMode
88058802
self.hasRoomCall = hasRoomCall
88068803
self.activeRoomCallParticipants = activeRoomCallParticipants
8807-
self.numUnreadMessages = numUnreadMessages
8808-
self.numUnreadNotifications = numUnreadNotifications
8809-
self.numUnreadMentions = numUnreadMentions
88108804
}
88118805
}
88128806

@@ -8836,10 +8830,7 @@ public struct FfiConverterTypeRoomInfo: FfiConverterRustBuffer {
88368830
notificationCount: FfiConverterUInt64.read(from: &buf),
88378831
userDefinedNotificationMode: FfiConverterOptionTypeRoomNotificationMode.read(from: &buf),
88388832
hasRoomCall: FfiConverterBool.read(from: &buf),
8839-
activeRoomCallParticipants: FfiConverterSequenceString.read(from: &buf),
8840-
numUnreadMessages: FfiConverterUInt64.read(from: &buf),
8841-
numUnreadNotifications: FfiConverterUInt64.read(from: &buf),
8842-
numUnreadMentions: FfiConverterUInt64.read(from: &buf)
8833+
activeRoomCallParticipants: FfiConverterSequenceString.read(from: &buf)
88438834
)
88448835
}
88458836

@@ -8865,9 +8856,6 @@ public struct FfiConverterTypeRoomInfo: FfiConverterRustBuffer {
88658856
FfiConverterOptionTypeRoomNotificationMode.write(value.userDefinedNotificationMode, into: &buf)
88668857
FfiConverterBool.write(value.hasRoomCall, into: &buf)
88678858
FfiConverterSequenceString.write(value.activeRoomCallParticipants, into: &buf)
8868-
FfiConverterUInt64.write(value.numUnreadMessages, into: &buf)
8869-
FfiConverterUInt64.write(value.numUnreadNotifications, into: &buf)
8870-
FfiConverterUInt64.write(value.numUnreadMentions, into: &buf)
88718859
}
88728860
}
88738861

0 commit comments

Comments
 (0)