From 50847380b15f3269321b5648676cd86c2cfbb817 Mon Sep 17 00:00:00 2001 From: DreamPiggy Date: Thu, 31 Jan 2019 18:35:33 +0800 Subject: [PATCH] Update the CHANGELOG and README --- CHANGELOG.md | 9 +++++++++ README.md | 9 ++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7240cc39..50dfe69a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [4.4.5 - 4.4 patch, on Jan 31st, 2019](https://github.com/SDWebImage/SDWebImage/releases/tag/4.4.5) +See [all tickets marked for the 4.4.5 release](https://github.com/SDWebImage/SDWebImage/milestone/31) + +#### Fixes +- Revert the modular framework, try to fix some user's install issue when using SDWebImage in prefix header #2604 +- Fix wrong decompression scale calculation #2608 +- Fix shouldDecode check when image format is GIF #2606 +- Fix modify data pointer if webp image scaled down #2607 + ## [4.4.4 - 4.4 patch, on Jan 26th, 2019](https://github.com/SDWebImage/SDWebImage/releases/tag/4.4.4) See [all tickets marked for the 4.4.4 release](https://github.com/SDWebImage/SDWebImage/milestone/29) diff --git a/README.md b/README.md index dce54aa8..3328f5de 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,13 @@ This library provides an async image downloader with cache support. For convenie - Image formats supported by UIImage (JPEG, PNG, ...), including GIF - WebP format, including animated WebP (use the `WebP` subspec) +- Support extendable coder plugins for new image formats. Like APNG, BPG, HFIF, SVG, etc. See all the list in [Image coder plugin List](https://github.com/SDWebImage/SDWebImage/wiki/Coder-Plugin-List) + +## Beta version + +SDWebImage's 5.0 version is nearing completion. Which introduce many new features like Animated ImageView and Transformer. We also provide a more modularized design used for advanced user customization. + +You can check the latest [5.x branch](https://github.com/SDWebImage/SDWebImage/tree/5.x) to know about the current status. We'd love you to have a try with the beta version and provide any feedback. If you'd love, check [SDWebImage 5.0 Migration Guide](https://github.com/SDWebImage/SDWebImage/wiki/5.0-Migration-guide) and prepare for the migration. ## Requirements @@ -118,7 +125,7 @@ However, start with `CocoaPods 1.5.0+` (with `Xcode 9+`), which supports to buil ``` platform :ios, '8.0' -# Uncomment the next line when you want Pods as static framework +# Uncomment the next line when you want all Pods as static framework # use_modular_headers! pod 'SDWebImage', :modular_headers => true ```