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

Commit

Permalink
Release 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Goldman committed Jul 12, 2015
1 parent 4921d50 commit 9954dee
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CardIO.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'CardIO'
spec.version = '5.0.6'
spec.version = '5.1.0'
spec.license = { type: 'MIT', file: 'LICENSE.md' }
spec.homepage = 'https://www.card.io'
spec.authors = { 'CardIO' => 'support@paypal.com' }
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIO.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIO.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOCreditCardInfo.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOCreditCardInfo.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIODetectionMode.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIODetectionMode.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
9 changes: 8 additions & 1 deletion CardIO/CardIOPaymentViewController.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewController.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down Expand Up @@ -78,6 +78,13 @@
/// Defaults to NO.
@property(nonatomic, assign, readwrite) BOOL suppressScannedCardImage;

/// After a successful scan, card.io will display an image of the card with
/// the computed card number superimposed. This property controls how long (in seconds)
/// that image will be displayed.
/// Set this to 0.0 to suppress the display entirely.
/// Defaults to 0.1.
@property(nonatomic, assign, readwrite) CGFloat scannedImageDuration;

/// Mask the card number digits as they are manually entered by the user. Defaults to NO.
@property(nonatomic, assign, readwrite) BOOL maskManualEntryDigits;

Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOPaymentViewControllerDelegate.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOPaymentViewControllerDelegate.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOUtilities.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOUtilities.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOView.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOView.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
2 changes: 1 addition & 1 deletion CardIO/CardIOViewDelegate.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// CardIOViewDelegate.h
// Version 5.0.6
// Version 5.1.0
//
// See the file "LICENSE.md" for the full license governing this code.
//
Expand Down
Binary file modified CardIO/libCardIO.a
Binary file not shown.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ The card.io iOS SDK includes header files and a single static library. We'll wal

### Requirements

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

### Setup
Expand Down Expand Up @@ -77,7 +78,7 @@ pod 'CardIO'
* QuartzCore
* Security
* UIKit
5. *or,* if you are using Xcode 5 or newer:
5. *or:*
* Add only these frameworks to your project (as `Optional` [i.e., weak-linked] libraries):
* AVFoundation
* AudioToolbox
Expand Down
14 changes: 13 additions & 1 deletion release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
card.io iOS SDK release notes
=============================

5.1.0 (Sun 7/12/2015)

* Update project and sample apps for Xcode 6.4.
* Expose `scannedImageDuration` in CardIOPaymentViewController.
(https://github.com/card-io/card.io-iOS-source/pull/29)
* Better respect UISupportedInterfaceOrientation from the app plist.
(https://github.com/card-io/card.io-iOS-SDK/issues/117)
* Fix iOS 9 crash by removing some obsolete localization code.
(https://github.com/card-io/card.io-iOS-SDK/issues/120)

--

5.0.6 (Thu 5/21/2015)

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

--
Expand Down

0 comments on commit 9954dee

Please sign in to comment.