Skip to content

Commit

Permalink
chore: update kingfisher dependency to 7.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EnesKaraosman committed Jan 29, 2023
1 parent 60e7d9b commit 7bf7089
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/onevcat/Kingfisher.git",
"state": {
"branch": null,
"revision": "44e891bdb61426a95e31492a67c7c0dfad1f87c5",
"version": "7.4.1"
"revision": "90135885ef506506620c4911cefb55a95ca2a9a2",
"version": "7.5.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let package = Package(
],
dependencies: [
// Image downloading library
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.4.1"),
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.5.0"),
.package(url: "https://github.com/EnesKaraosman/SwiftUIEKtensions.git", from: "0.1.8"),
.package(url: "https://github.com/wxxsw/VideoPlayer.git", from: "1.2.3"),
.package(url: "https://github.com/dkk/WrappingHStack.git", from: "2.2.9")
Expand Down
6 changes: 3 additions & 3 deletions Sources/SwiftyChat/ChatView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public struct ChatView<Message: ChatMessage, User: ChatUser>: View {
@Binding private var messages: [Message]
private var inputView: () -> AnyView
private var customCellView: ((Any) -> AnyView)?

private var onMessageCellTapped: (Message) -> Void = { msg in print(msg.messageKind) }
private var messageCellContextMenu: (Message) -> AnyView = { _ in EmptyView().embedInAnyView() }
private var onQuickReplyItemSelected: (QuickReplyItem) -> Void = { _ in }
Expand Down Expand Up @@ -137,7 +137,7 @@ public struct ChatView<Message: ChatMessage, User: ChatUser>: View {
}
}
.background(Color.clear)
.padding(.bottom, messageEditorHeight + 30)
.padding(.bottom, messageEditorHeight + 30)
}

}
Expand Down Expand Up @@ -226,7 +226,7 @@ public extension ChatView {
/// Also only shows avatar for first message in chain.
/// (disabled by default)
/// - inputView: inputView view to provide message
///
///
init(
messages: Binding<[Message]>,
scrollToBottom: Binding<Bool> = .constant(false),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/onevcat/Kingfisher.git",
"state": {
"branch": null,
"revision": "44e891bdb61426a95e31492a67c7c0dfad1f87c5",
"version": "7.4.1"
"revision": "90135885ef506506620c4911cefb55a95ca2a9a2",
"version": "7.5.0"
}
},
{
Expand Down

0 comments on commit 7bf7089

Please sign in to comment.