Skip to content

Commit d773c12

Browse files
committed
Bump to v1.1.41 (matrix-rust-sdk/main 88d7a2fe287b037ebab71c33461522660ade0a67)
1 parent c0101eb commit d773c12

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
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 = "d30f2af4731492385bc4ceb3e135ab09eb5121173e1857bb922fd390ab986c84"
7-
let version = "v1.1.40"
6+
let checksum = "61392cf330afbee3fafbd6ecba58ad830475a0880414a597a2b17ab1b2f15651"
7+
let version = "v1.1.41"
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: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15255,6 +15255,7 @@ public enum RoomListEntriesDynamicFilterKind {
1525515255
)
1525615256
case nonLeft
1525715257
case unread
15258+
case favourite
1525815259
case category(
1525915260
expect: RoomListFilterCategory
1526015261
)
@@ -15286,17 +15287,19 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
1528615287

1528715288
case 4: return .unread
1528815289

15289-
case 5: return .category(
15290+
case 5: return .favourite
15291+
15292+
case 6: return .category(
1529015293
expect: try FfiConverterTypeRoomListFilterCategory.read(from: &buf)
1529115294
)
1529215295

15293-
case 6: return .none
15296+
case 7: return .none
1529415297

15295-
case 7: return .normalizedMatchRoomName(
15298+
case 8: return .normalizedMatchRoomName(
1529615299
pattern: try FfiConverterString.read(from: &buf)
1529715300
)
1529815301

15299-
case 8: return .fuzzyMatchRoomName(
15302+
case 9: return .fuzzyMatchRoomName(
1530015303
pattern: try FfiConverterString.read(from: &buf)
1530115304
)
1530215305

@@ -15326,22 +15329,26 @@ public struct FfiConverterTypeRoomListEntriesDynamicFilterKind: FfiConverterRust
1532615329
writeInt(&buf, Int32(4))
1532715330

1532815331

15329-
case let .category(expect):
15332+
case .favourite:
1533015333
writeInt(&buf, Int32(5))
15334+
15335+
15336+
case let .category(expect):
15337+
writeInt(&buf, Int32(6))
1533115338
FfiConverterTypeRoomListFilterCategory.write(expect, into: &buf)
1533215339

1533315340

1533415341
case .none:
15335-
writeInt(&buf, Int32(6))
15342+
writeInt(&buf, Int32(7))
1533615343

1533715344

1533815345
case let .normalizedMatchRoomName(pattern):
15339-
writeInt(&buf, Int32(7))
15346+
writeInt(&buf, Int32(8))
1534015347
FfiConverterString.write(pattern, into: &buf)
1534115348

1534215349

1534315350
case let .fuzzyMatchRoomName(pattern):
15344-
writeInt(&buf, Int32(8))
15351+
writeInt(&buf, Int32(9))
1534515352
FfiConverterString.write(pattern, into: &buf)
1534615353

1534715354
}

0 commit comments

Comments
 (0)