You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update TIP to v2.10.0
- Fix MP4 decoder when decoding anamorphic mp4s into animations
- drop iOS 7 support
- fix miscellaneous bugs
- clean up misc style
- fix tvOS support
- add tvOS target
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ for a smaller image than the image in cache, no need to hit the network :)
109
109
110
110
A great value that the _image pipeline_ offers is the ability to stream progressive scans of an
111
111
image, if it is PJPEG, as the image is loaded from the Network. This progressive rendering is
112
-
natively supported by iOS 8+, but will not be supported in iOS 7 (the minimum OS for *TIP*).
112
+
natively supported by iOS 8+, the same minimum OS for *TIP*.
113
113
Progressive support is opt-in and also configurable in how scans should load.
114
114
115
115
### Resuming Image Downloads
@@ -153,6 +153,7 @@ image pipeline works.
153
153
- Image response "Accept-Ranges" must be "bytes" and have "Last-Modified" header
154
154
- Uses "Range" and "If-Range" headers to specify continuation
155
155
- Pluggable networking (use your own network layer)
156
+
- Check out how to integrate [Twitter Network Layer](https://github.com/twitter/ios-twitter-network-layer) as your pluggable downloader with this [gist](https://gist.github.com/NSProgrammer/6e4c93ca9b9518178c9cbc7d950efd9c)
156
157
- Custom hydration (useful for authenticated fetches)
Copy file name to clipboardExpand all lines: TwitterImagePipeline.podspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
Pod::Spec.newdo |s|
2
2
s.name='TwitterImagePipeline'
3
-
s.version='2.9.3'
3
+
s.version='2.10.0'
4
4
s.summary='Twitter Image Pipeline is a robust and performant image loading and caching framework for iOS'
5
5
s.description='Twitter created a framework for image loading/caching in order to fulfill the numerous needs of Twitter for iOS including being fast, safe, modular and versatile.'
0 commit comments