From ed3c656a8dffb2047da4fa4c9e873daee945accb Mon Sep 17 00:00:00 2001 From: Rad Azzouz Date: Wed, 20 Apr 2016 09:13:47 -0400 Subject: [PATCH] [Release] 1.8.1 ``` [NEW] Added metadata badges to the README. {#319. #321} [IMPROVED] Updated the Javascript code for Web View Filling. {#316} [FIXED] Fixed casting to NSString of CFStringRef constants. {#317} ``` --- 1PasswordExtension.podspec | 2 +- Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist | 2 +- Demos/App Demo for iOS/App Demo for iOS/Info.plist | 2 +- .../WebView Demo for iOS Swift/Info.plist | 2 +- Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist | 2 +- OnePasswordExtension.m | 2 +- README.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/1PasswordExtension.podspec b/1PasswordExtension.podspec index fde9029..175790f 100644 --- a/1PasswordExtension.podspec +++ b/1PasswordExtension.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "1PasswordExtension" spec.module_name = "OnePasswordExtension" - spec.version = "1.8" + spec.version = "1.8.1" spec.summary = "With just a few lines of code, your app can add 1Password support." spec.description = <<-DESC With just a few lines of code, your app can add 1Password support, enabling your users to: diff --git a/Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist b/Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist index 7eb75b5..492b6e5 100644 --- a/Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist +++ b/Demos/App Demo for iOS Swift/App Demo for iOS Swift/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.8 + 1.8.1 CFBundleSignature ???? CFBundleVersion diff --git a/Demos/App Demo for iOS/App Demo for iOS/Info.plist b/Demos/App Demo for iOS/App Demo for iOS/Info.plist index d1f94d6..1f3a118 100644 --- a/Demos/App Demo for iOS/App Demo for iOS/Info.plist +++ b/Demos/App Demo for iOS/App Demo for iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.8 + 1.8.1 CFBundleSignature ???? CFBundleVersion diff --git a/Demos/WebView Demo for iOS Swift/WebView Demo for iOS Swift/Info.plist b/Demos/WebView Demo for iOS Swift/WebView Demo for iOS Swift/Info.plist index ceca151..9185473 100644 --- a/Demos/WebView Demo for iOS Swift/WebView Demo for iOS Swift/Info.plist +++ b/Demos/WebView Demo for iOS Swift/WebView Demo for iOS Swift/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.8 + 1.8.1 CFBundleSignature ???? CFBundleVersion diff --git a/Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist b/Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist index 0983ae4..05a5fad 100644 --- a/Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist +++ b/Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.8 + 1.8.1 CFBundleSignature ???? CFBundleVersion diff --git a/OnePasswordExtension.m b/OnePasswordExtension.m index 97c7b85..8f4bd38 100644 --- a/OnePasswordExtension.m +++ b/OnePasswordExtension.m @@ -8,7 +8,7 @@ #import "OnePasswordExtension.h" // Version -#define VERSION_NUMBER @(180) +#define VERSION_NUMBER @(181) static NSString *const AppExtensionVersionNumberKey = @"version_number"; // Available App Extension Actions diff --git a/README.md b/README.md index 35db688..bbf21f7 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ To get started, download the [zip version](https://github.com/AgileBits/onepassw Inside the downloaded folder, you'll find the resources needed to integrate with 1Password, such as images and sample code. The sample code includes two apps from ACME Corporation: one that demonstrates how to integrate the 1Password Login and Registration features, as well as a web browser that showcases the web view Filling feature. -The 1Password App Extension API is also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.8'` (for the latest stable release) or `pod '1PasswordExtension', :git => 'https://github.com/AgileBits/onepassword-app-extension.git', :branch => 'master'` (for the latest nightly) to your Podfile, run `pod install` from your project directory and you're ready to go. +The 1Password App Extension API is also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.8.1'` (for the latest stable release) or `pod '1PasswordExtension', :git => 'https://github.com/AgileBits/onepassword-app-extension.git', :branch => 'master'` (for the latest nightly) to your Podfile, run `pod install` from your project directory and you're ready to go. The 1Password App Extension API is available via Carthage as well. Simply add `github "AgileBits/onepassword-extension" "add-framework-support"` to your Cartfile, then run `carthage update` and add it to your project.