Skip to content

Commit

Permalink
Bumped version to 5.16.0
Browse files Browse the repository at this point in the history
update CHANGELOG
  • Loading branch information
dreampiggy committed Jun 4, 2023
1 parent 90aa750 commit c51ba84
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [5.16.0 - Limit Bytes && Frame Pool, on Jun 4th, 2023](https://github.com/rs/SDWebImage/releases/tag/5.16.0)
See [all tickets marked for the 5.16.0 release](https://github.com/SDWebImage/SDWebImage/milestone/116)

### Features
#### Animated Image
- Performance: Introduce frame pool for SDAnimatedImage playback. Solve when multiple image view references the same URL image cause un-wanted decode which waste RAM/CPU #3524
- - Note this currently does not expose the frame pool API. Fire issue if you're facing issues about this change.

#### Decoder
- Introduce the automatically calculation of thumbnail (include animated/static image) using SDImageCoderDecodeScaleDownLimitBytes #3537
- - This calculation of the UIKit-based animated image frame count as well (only `UIAnimatedImage`, not `SDAnimatedImage`, because `SDAnimatedImage` manage frames dynamically). Fire issue if you're facing issues about this change.
- - The `.scaleDownLargeImages` implementation has switched to use this instead of `.thumbnailPixelSize` (5.5.0 - 5.16.0)
- - Note this introduce new API and need Coder Plugin update (like WebP/AVIF)

### Documentations
- Update some comments to allows SwiftDocC generate better page #3547

## [5.15.8 - Fix macOS Crash, on May 15th, 2023](https://github.com/rs/SDWebImage/releases/tag/5.15.8)
See [all tickets marked for the 5.15.8 release](https://github.com/SDWebImage/SDWebImage/milestone/117)

Expand Down
2 changes: 1 addition & 1 deletion SDWebImage.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SDWebImage'
s.version = '5.15.8'
s.version = '5.16.0'

s.osx.deployment_target = '10.11'
s.ios.deployment_target = '9.0'
Expand Down
4 changes: 2 additions & 2 deletions WebImage/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.15.8</string>
<string>5.16.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>5.15.8</string>
<string>5.16.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit c51ba84

Please sign in to comment.