Skip to content

Releases: alexiscreuzot/SwiftyGif

5.4.4

16 Jan 17:10
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 5.4.3...5.4.4

5.4.3

02 Feb 15:59
Compare
Choose a tag to compare
  • tvOS support
  • Fix for ProMotion display

5.4.2

16 Dec 21:28
Compare
Choose a tag to compare
  • 418224b Fix objc_getAssociatedObject crashing on weak reference

5.4.1

30 Nov 22:20
Compare
Choose a tag to compare
  • Fix crash when gif loaded from url and delegate has been deallocate
  • Fix index out of range
  • Add library evolution support
  • Package.swift: adds dynamic library

5.4.0

29 Jan 13:51
Compare
Choose a tag to compare
  • FIxed : Gif animations play at different speeds on iPad vs iPhone
  • FIxed : method "gifDidStop" will execute twice
  • Added : basic support for macOS
  • Changed : bump IPHONEOS_DEPLOYMENT_TARGET to 9.0 to remove warning
  • Changed : Removed big files from repo

5.3.0

20 May 13:51
Compare
Choose a tag to compare
  • Updated setGifFromURL by adding parameter customLoader: UIView? = nil, allowing for custom loader UIView.
    A typical use would be something like :
let loader = UIActivityIndicatorView.init(style: .white)
self.imageView.setGifFromURL(url, customLoader: loader)
  • Updated setGifFromURL by adding parameter session: URLSession = URLSession.shared, allowing for custom URLSession.
  • Added a basic caching system for remote GIFs
  • Updated Demo project in order to demonstrate local GIFs and GIFs in a UITableView