Releases: Giphy/giphy-ios-sdk
Releases · Giphy/giphy-ios-sdk
v2.1.15
- error messages when calling the
gifByID
orgifsByID
requests with empty strings - fixes for the updated
GPHVideoView
. this work is necessary to support the GIPHY React Native SDK's implementation of Clips captions.
v2.1.14
v2.1.13
v2.1.11
v2.1.10
- publicly expose the
showAttribution
property in GPHMediaView - addresses issue #156:
GiphyYYAnimatedImageView.animationDuration
should now return the correct value - addresses issue #158: fixes the
cellPadding
property ofGiphyGridController
- fixes a bug where the
clipsPreviewRenditionType
wasn’t properly passed to theGiphyGridController
- event listener support in
GPHVideoView
- removes
pingbacksEventType
property ofGPHMedia
- use theisEmoji
property to check whether a media object represents an emoji
v2.1.9
v2.1.8
v2.1.7
- addresses #149
- previous release was unintentionally distributed as a static library rather than dynamic (mach-o setting), which most likely led to the error
Failed to generate distribution items with error: Error Domain=DVTMachOErrorDomain Code=0 "Found an unexpected Mach-O header code: 0x72613c21" UserInfo={NSLocalizedDescription=Found an unexpected Mach-O header code: 0x72613c21, NSLocalizedRecoverySuggestion=}
v2.1.6
v2.1.5
-
fixes issues with Objective-C interfaces of properties of
GiphyGridController
, including delegate (GPHGridDelegate
) andnumberOfTracks
-
exposing
GPHGridDelegate
to Objective-C required changing one of the protocol methods from:
func contentDidUpdate(result: Result<Int, Error>)
to
@objc func contentDidUpdate(resultCount: Int, error: Error?)