From a3aece275d5014f6b4167aff0d360db005d45416 Mon Sep 17 00:00:00 2001 From: Rad Azzouz Date: Tue, 24 May 2016 08:26:39 -0400 Subject: [PATCH] [Release] 1.8.2 ``` [IMPROVED] Updated the Javascript code for Web View Filling. {#324} [FIXED] Fixed a crash caused by unwrapping an Optional value while running ACME Swift on iPad. {#323} ``` --- 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 175790f..5809f22 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.1" + spec.version = "1.8.2" 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 492b6e5..4a1944d 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 + 1.8.2 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 1f3a118..5d602b0 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 + 1.8.2 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 9185473..2956188 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 + 1.8.2 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 05a5fad..53735d8 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 + 1.8.2 CFBundleSignature ???? CFBundleVersion diff --git a/OnePasswordExtension.m b/OnePasswordExtension.m index 839f413..05731fd 100644 --- a/OnePasswordExtension.m +++ b/OnePasswordExtension.m @@ -8,7 +8,7 @@ #import "OnePasswordExtension.h" // Version -#define VERSION_NUMBER @(181) +#define VERSION_NUMBER @(182) static NSString *const AppExtensionVersionNumberKey = @"version_number"; // Available App Extension Actions diff --git a/README.md b/README.md index bbf21f7..038143b 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.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 also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.8.2'` (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.