All Versions
79
Latest Version
Avg Release Cycle
65 days
Latest Release
-

Changelog History
Page 4

  • v2.8.0 Changes

    • ๐Ÿšš Move TIPImageViewFetchHelper from using UIImageView instances directly to using UIView with TIPImageFetchable protocol
      • makes it possible for UIView subclasses to support the fetch helper, like UIButton or a custom view
  • v2.7.2 Changes

    November 20, 2017

    2.7.2

    • ๐Ÿ‘Œ improve TIPImageFetchTransformer support with optional identifier
      • was easy to get the rendered cache images mixed up between transformed and non-transformed fetches
      • now, transform requests can only fetch images from the rendered cache if there is a match with the tip_tranformerIdentifier
      • transformers that don't provide an identifier cannot be cached nor retrieved from the rendered cache
    • โœ‚ removed transformer from TIPGlobalConfiguration (would interfere with above improvement)

    2.7.1

    • โž• add generic concrete class for TIPImageFetchRequest as convenience
      • generic fetch request is mutable/immutable pair: TIPGenericImageFetchRequest and TIPMutableGenericImageFetchRequest

    2.7.0

    • โž• add decoder config support
      • enables custom TIPImageDecoder implementations to have configurable ways of being decoded
    • โž• add memory map loading option for images
      • default continues to not use memory map loading, but it's now exposed on TIPImageContainer
    • โž• add MP4 decoder to TIP (as an extended decoder, not bundled by default)
      • decodes MP4s as animated images

    2.6.0

    • โœ‚ Remove TIPImageView, just use UIImageView category instead
      • Add hidden property support to UIImageView fetch helper category
    • โœ‚ Remove TIPImageViewFetchHelper subclassing event methods
      • Use delegate pattern for eventing instead of polymorphism #Simplify
    • โœ‚ Remove setViewHidden: method for TIPImageViewFetchHelper
      • It never did what it was advertised to do and muddied the control flow
    • โž• Add fetchResultDimensions to TIPImageViewFetchHelper for more insight into results

    ๐ŸŽ (Also, lots of bug fixes and performance improvements)

  • v2.7.1 Changes

    • โž• add generic concrete class for TIPImageFetchRequest as convenience
      • generic fetch request is mutable/immutable pair: TIPGenericImageFetchRequest and TIPMutableGenericImageFetchRequest
  • v2.7.0 Changes

    • โž• add decoder config support
      • enables custom TIPImageDecoder implementations to have configurable ways of being decoded
    • โž• add memory map loading option for images
      • default continues to not use memory map loading, but it's now exposed on TIPImageContainer
    • โž• add MP4 decoder to TIP (as an extended decoder, not bundled by default)
      • decodes MP4s as animated images
  • v2.6.0 Changes

    • โœ‚ Remove TIPImageView, just use UIImageView category instead
      • Add hidden property support to UIImageView fetch helper category
    • โœ‚ Remove TIPImageViewFetchHelper subclassing event methods
      • Use delegate pattern for eventing instead of polymorphism #Simplify
    • โœ‚ Remove setViewHidden: method for TIPImageViewFetchHelper
      • It never did what it was advertised to do and muddied the control flow
    • โž• Add fetchResultDimensions to TIPImageViewFetchHelper for more insight into results
  • v2.5.0 Changes

    • โœ‚ Remove detached downloads support for TIP image fetches
      • using HTTP/2 is the ideal solution, removing the complexity to remove the crutch
  • v2.4.5 Changes

    • โฌ‡๏ธ reduce thread count for TIP by unifying all disk caches to using 1 manifest queue
      • make disk cache manifest load async instead of sync now that it is shared
      • no real speed improvements, just fewer threads need to be used in multi-pipeline apps
    • clean up some large inline functions to be regular functions
  • v2.4.4 Changes

    • ๐Ÿ›  Fix WebP Encoder (channels could be mixed up)
  • v2.4.3 Changes

    • โšก๏ธ Update WebP codec to v0.6.0
  • v2.4.2 Changes

    • โž• Add support for changing a cached image's identifier