Releases: SDWebImage/SDWebImageSwiftUI
Releases · SDWebImage/SDWebImageSwiftUI
2.1.0 - StateObject and fix iOS 16 warnings
Fixed
- Refactor WebImage/AnimatedImage using SwiftUIBackports and StateObject #227
- Fix iOS 16 undefined behavior warnings because of Publishing changes from within view updates.
- Fix iOS 14+ WebImage behavior using
@StateObject
(and backport on iOS 13)
Changed
- The
IndicatorReportable
is misused and removed. UseIndicatorStatus
instead. - Deprecate iOS 13 support, this may be the last version to support iOS 13.
2.0.2 - Fix WebImage edge cases
Fixed
- Fix the issue that using
Image(uiImage:)
will result wrong rendering mode in some component likeTabBarItem
, while usingImage(decorative:scale:orientation:)
works well #177
Changed
2.0.1 - Fix WebImage animation
Fixed
- Fix the rare cases that WebImage will lost animation when visibility changes. #171
2.0.0 - iOS 14/SwiftUI 2.0 compatible
This is the second major version. Which fix many issues with iOS 14+'s SwiftUI behaviors.
Added
- Update with the playbackMode support for
WebImage
andAnimatedImage
#168 - Update watchOS demo to watchOS 7, remove the custom indicator sample and use
ProgressView
instead #166 - Update the Example to make WebImage animatable by default #160
Fixed
- Fix the issue sometime the
WebImage
appear/disappear logic wrong. Using UIKit/AppKit to detect the visibility #164 - Fix the leak of WebImage with animation and NavigationLink. #163
- Try to fix the recursive updateView when using AnimatedImage inside
ScrollView/LazyVStack
. Which cause App freeze #162 - Remove the fix for EXIF image in WebImage, which is fixed by Apple in iOS 14 #159
Changed
- Bump the limit to Xcode 12, because we need new iOS 14+ APIs check #167
- Update the WebImage to defaults animatable #165
Removed
- Remove the wrong design onSuccess API. Using the full params one instead #169
1.5.0 - Convenient transition duration API
1.4.0 - Add image data parameter
1.3.4 - Fix some case WebImage does not load new URL
Fixed
- Revert the changes to prefetch the image url from memory cache #106
1.3.3 - Apple's Bug workaround
- Try to solve the SwiftUI bug of rendering EXIF UIImage in WebImage, as well as vector images #102
- Now
WebImage
will render the vector images as bitmap version even if you don't provide.thumbnailPixelSize
. To render real vector images, useAnimatedImage
instead.
1.3.2 - Automatically import
Added
- Automatically import SDWebImage when user write import SDWebImageSwiftUI #100