Переглянути джерело

Update the CHANGELOG and README

DreamPiggy 7 роки тому
батько
коміт
50847380b1
2 змінених файлів з 17 додано та 1 видалено
  1. 9 0
      CHANGELOG.md
  2. 8 1
      README.md

+ 9 - 0
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)
 

+ 8 - 1
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
 ```