Skip to content

Commit

Permalink
v1.2.8 (#66)
Browse files Browse the repository at this point in the history
* update swift example

* documentation updates

* add example images

* update camera example
  • Loading branch information
cgmaier authored May 11, 2020
1 parent 4fd0db9 commit 079cfeb
Show file tree
Hide file tree
Showing 18 changed files with 189 additions and 319 deletions.
2 changes: 1 addition & 1 deletion Camera-Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use_frameworks!

target "camera-example" do
pod 'Giphy', :podspec => 'https://s3.amazonaws.com/sdk.mobile.giphy.com/SDK/1.2.6/Giphy.podspec'
pod 'Giphy'
end
13 changes: 5 additions & 8 deletions Camera-Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- DeepDiff (2.3.1)
- Giphy (1.2.6):
- Giphy (1.2.8):
- DeepDiff
- libwebp
- PINCache
Expand All @@ -16,24 +16,21 @@ PODS:
- PINCache (2.3)

DEPENDENCIES:
- Giphy (from `https://s3.amazonaws.com/sdk.mobile.giphy.com/SDK/1.2.6/Giphy.podspec`)
- Giphy

SPEC REPOS:
trunk:
- DeepDiff
- Giphy
- libwebp
- PINCache

EXTERNAL SOURCES:
Giphy:
:podspec: https://s3.amazonaws.com/sdk.mobile.giphy.com/SDK/1.2.6/Giphy.podspec

SPEC CHECKSUMS:
DeepDiff: e5ae6c50d0321568e4508cec5930b9f10bb293fc
Giphy: 2415d978989ee384040e6c61bc9ee545e6f4ffb0
Giphy: 0e6c7c127eb22d0b419ae68ccae6d92c827ea034
libwebp: 946cb3063cea9236285f7e9a8505d806d30e07f3
PINCache: ce36ed282031b92fc7733ffe831f474ff80fddc2

PODFILE CHECKSUM: a9a857bcb90071746583cbc7a98e2051212dc317
PODFILE CHECKSUM: 4a920288c47e605aad1543443238ed714dd2a5ce

COCOAPODS: 1.8.4
2 changes: 1 addition & 1 deletion Camera-Example/camera-example/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class ViewController: UIViewController, ARSCNViewDelegate {

@objc func presentGiphy() {
let giphy = GiphyViewController()
giphy.theme = themeSwitch.isOn ? .darkBlur : .lightBlur
giphy.theme = GPHTheme(type: themeSwitch.isOn ? .darkBlur : .lightBlur)
giphy.mediaTypeConfig = [.stickers, .text, .recents, .gifs]
let threeColumns = segmentedControl.selectedSegmentIndex == 0
giphy.stickerColumnCount = threeColumns ? .three : .four
Expand Down
Loading

0 comments on commit 079cfeb

Please sign in to comment.