Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit 9954dee

Browse files
author
Dave Goldman
committed
Release 5.1.0
1 parent 4921d50 commit 9954dee

12 files changed

+31
-11
lines changed

CardIO.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'CardIO'
3-
spec.version = '5.0.6'
3+
spec.version = '5.1.0'
44
spec.license = { type: 'MIT', file: 'LICENSE.md' }
55
spec.homepage = 'https://www.card.io'
66
spec.authors = { 'CardIO' => '[email protected]' }

CardIO/CardIO.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIO.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIOCreditCardInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOCreditCardInfo.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIODetectionMode.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIODetectionMode.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIOPaymentViewController.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOPaymentViewController.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//
@@ -78,6 +78,13 @@
7878
/// Defaults to NO.
7979
@property(nonatomic, assign, readwrite) BOOL suppressScannedCardImage;
8080

81+
/// After a successful scan, card.io will display an image of the card with
82+
/// the computed card number superimposed. This property controls how long (in seconds)
83+
/// that image will be displayed.
84+
/// Set this to 0.0 to suppress the display entirely.
85+
/// Defaults to 0.1.
86+
@property(nonatomic, assign, readwrite) CGFloat scannedImageDuration;
87+
8188
/// Mask the card number digits as they are manually entered by the user. Defaults to NO.
8289
@property(nonatomic, assign, readwrite) BOOL maskManualEntryDigits;
8390

CardIO/CardIOPaymentViewControllerDelegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOPaymentViewControllerDelegate.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIOUtilities.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOUtilities.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIOView.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOView.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/CardIOViewDelegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CardIOViewDelegate.h
3-
// Version 5.0.6
3+
// Version 5.1.0
44
//
55
// See the file "LICENSE.md" for the full license governing this code.
66
//

CardIO/libCardIO.a

6.84 KB
Binary file not shown.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ The card.io iOS SDK includes header files and a single static library. We'll wal
4848

4949
### Requirements
5050

51+
* The latest non-beta version of Xcode. (Older or newer versions *might* also work.)
5152
* Supports target deployment of iOS version 6.1+ and instruction set armv7+ (including 64-bit).
5253

5354
### Setup
@@ -77,7 +78,7 @@ pod 'CardIO'
7778
* QuartzCore
7879
* Security
7980
* UIKit
80-
5. *or,* if you are using Xcode 5 or newer:
81+
5. *or:*
8182
* Add only these frameworks to your project (as `Optional` [i.e., weak-linked] libraries):
8283
* AVFoundation
8384
* AudioToolbox

release_notes.txt

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
card.io iOS SDK release notes
22
=============================
33

4+
5.1.0 (Sun 7/12/2015)
5+
6+
* Update project and sample apps for Xcode 6.4.
7+
* Expose `scannedImageDuration` in CardIOPaymentViewController.
8+
(https://github.com/card-io/card.io-iOS-source/pull/29)
9+
* Better respect UISupportedInterfaceOrientation from the app plist.
10+
(https://github.com/card-io/card.io-iOS-SDK/issues/117)
11+
* Fix iOS 9 crash by removing some obsolete localization code.
12+
(https://github.com/card-io/card.io-iOS-SDK/issues/120)
13+
14+
--
15+
416
5.0.6 (Thu 5/21/2015)
517

6-
* Prevent crash when user simultaneously taps `Cancel` and `Enter Manually` buttons
18+
* Prevent crash when user simultaneously taps `Cancel` and `Enter Manually` buttons.
719
(https://github.com/card-io/card.io-iOS-SDK/issues/112)
820

921
--

0 commit comments

Comments
 (0)