Releases: SDWebImage/SDWebImageSwiftUI
Releases · SDWebImage/SDWebImageSwiftUI
3.1.3 - Data Race Fix
3.1.2 - WebImage isAnimating binding
- Allows easy to use WebImage with isAnimating default to false and change to true later #333
- Note: This changes WebImage's internal loaded image from
UIImage/NSImage
toSDAnimatedImage
, which is compatible forUIImageView/NSImageView
3.1.1 - AnimatedImage transition fix
Fixes
Fix the transition visual jump between placeholderImage and final image for AnimatedImage #326
3.1.0 - WebImage scale && AnimatedImage aspectRatio support
3.0.4 - Important State Fix
3.0.3 - Privacy Manifest (empty)
Project
- Added totally empty privacy manifest #315
- People who facing the issue because of Privacy Manifest declaration during ITC validation can try this version
3.0.2 - Fix AnimatedImage with Data/Name
Fixes
- Fix the assert crash then when using Data/Name in AnimatedImage #309
3.0.1 - Fix nil url reloading
[3.0.1] - 2024-03-18
- Fix the issue for WebImage/AnimatedImage when url is nil will not cause the reloading #304
3.0.0 - SwiftUI 2 and API refine
Note: SDWebImageSwiftUI 3.x is the final version of this dedicated repo. In the future, this repo will become part of SDWebImage itself, and get released together, so no dedicated version :)
These are the full changelog after the latest 2.x branch (2.2.7)
Changelog
Changed
- Update the AnimatedImage API to expose the SDAnimatedImageView #285
- Fix the AnimatedImgae rendering mode about compatible with SDWebImage 5.18+
- Update the WebImage API to match SwiftUI.AsyncImage #275 @Kyle-Ye
- Allows to use UIImage/NSImage as defaults when init the AnimatedImage with JPEG data #277
- Drop iOS 13/macOS 10.15/tvOS 13/watchOS 6 support #250
- ProgressIndicator and ActivityIndicator is removed. Use
ProgressView
instead - Availability is changed to iOS 14/macOS 11/tvOS 11/watchOS 7
- Embed
SwiftUIBackports
dependency is removed.
Removed
WebImage.placeholder<T>(@ViewBuilder content: () -> T) -> WebImage
WebImage.placeholder(_ image: Image) -> WebImage
AnimatedImage.placeholder<T>(@ViewBuilder content: () -> T) -> AnimatedImage
AnimatedImage.placeholder(_ image: PlatformImage) -> AnimatedImage