Skip to content

Releases: Giphy/giphy-ios-sdk

v2.1.15

29 Nov 20:09
a802f8f
Compare
Choose a tag to compare
  • error messages when calling the gifByID or gifsByID 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

03 Nov 20:17
dece0e9
Compare
Choose a tag to compare
  • Captions! A Closed Captions control is now provided for the .clips content type on both the detail "confirmation" screen as well as the GPHVideoView.
  • Clips titles are now displayed below the content on the confirmation screen.

v2.1.13

19 Oct 00:39
b188754
Compare
Choose a tag to compare
  • developers can now set the order of content types when using the GiphyViewController
  • compiled with Xcode 13
  • under the hood Core SDK version 2.3.14

v2.1.11

20 Aug 19:10
734452d
Compare
Choose a tag to compare
  • minor audio icon change for clips previews in the grid (to match android)
  • new property of GiphyViewController called swiftUIEnabled added to provide a better experience for developers using SwiftUI

v2.1.10

04 Aug 21:54
4710a10
Compare
Choose a tag to compare
  • 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 of GiphyGridController
  • fixes a bug where the clipsPreviewRenditionType wasn’t properly passed to the GiphyGridController
  • event listener support in GPHVideoView
  • removes pingbacksEventType property of GPHMedia - use the isEmoji property to check whether a media object represents an emoji

v2.1.9

17 Jun 21:48
867078e
Compare
Choose a tag to compare
  • Clips (GIFs with Sound!) is a brand new content type available in the SDK. Details here.
  • This release also includes additional features to support accessibility requests related to issue #82. Proper documentation to follow.

v2.1.8

07 May 16:49
2ae2602
Compare
Choose a tag to compare
  • fixes GPHCache availability in Objective-C
  • updates core sdk
  • compiled with Xcode 12.5

v2.1.7

05 Apr 23:55
2d86146
Compare
Choose a tag to compare
  • 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

18 Mar 19:43
72f7bdd
Compare
Choose a tag to compare
  • Likely fix for NSInternalInconsistencyException noted in issue #145

v2.1.5

17 Feb 17:21
Compare
Choose a tag to compare
  • fixes issues with Objective-C interfaces of properties of GiphyGridController, including delegate (GPHGridDelegate) and numberOfTracks

  • 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?)