Skip to content

Commit b10003b

Browse files
committed
Support for sliding sync and the new timeline (matrix-org/matrix-rust-sdk/tree/demo - 39c543536bdf334e3ecf0e1fe0ef23f6bbde14f7)
1 parent 3593411 commit b10003b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
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 = "490250f6696803e56c4b19149ddd17a980f948482b0a91bb0956996ca41e960a"
7-
let version = "v0.0.3-demo"
6+
let checksum = "69dbe222f8ff47cb88f933042d1a0158da70bef2f3f442832f2d4771b51d507e"
7+
let version = "v0.0.4-demo"
88
let url = "https://github.com/matrix-org/matrix-rust-components-swift/releases/download/\(version)/MatrixSDKFFI.xcframework.zip"
99

1010
let useLocalBinary = false

Sources/MatrixRustSDK/matrix_sdk_ffi.swift

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5663,16 +5663,6 @@ public func genTransactionId() -> String {
56635663
)
56645664
}
56655665

5666-
public func setupTracing(configuration: String) {
5667-
try!
5668-
5669-
rustCall {
5670-
_uniffi_matrix_sdk_ffi_setup_tracing_89c1(
5671-
FfiConverterString.lower(configuration), $0
5672-
)
5673-
}
5674-
}
5675-
56765666
public func mediaSourceFromUrl(url: String) -> MediaSource {
56775667
return try! FfiConverterTypeMediaSource.lift(
56785668
try!
@@ -5697,6 +5687,16 @@ public func messageEventContentFromMarkdown(md: String) -> RoomMessageEventConte
56975687
)
56985688
}
56995689

5690+
public func setupTracing(configuration: String) {
5691+
try!
5692+
5693+
rustCall {
5694+
_uniffi_matrix_sdk_ffi_setup_tracing_89c1(
5695+
FfiConverterString.lower(configuration), $0
5696+
)
5697+
}
5698+
}
5699+
57005700
/**
57015701
* Top level initializers and tear down methods.
57025702
*

0 commit comments

Comments
 (0)