From 582fa811dee4fd7b6f28e69cd72a6dfa166ad097 Mon Sep 17 00:00:00 2001 From: Rad Azzouz Date: Mon, 15 Feb 2016 10:15:35 -0500 Subject: [PATCH 1/2] [Release] 1.8 ``` [IMPROVED] Improved compatibility with CocoaPods 1.0.0. {#302} [IMPROVED] Updated the Javascript code for Web View Filling. {#303} [IMPROVED] Improved the instructions for the Rich Icons submission in the Best Practice section. {#290} [IMPROVED] Updated the documentation to mention all the required frameworks to link for projects targeting iOS 7.1 or earlier. {#294, #296} [IMPROVED] Improved the header documentation. {#298} [IMPROVED] Listing all the required frameworks in the podspec file. {#297} [IMPROVED] Removed extra new lines for a clearer code and README. {#293} [IMPROVED] Removed usless semicolons from Swift code. {#295} [FIXED] Fixed status bar inconsistencies between the Objective-C and the Swift versions of ACME. {#292} [FIXED] Fixed outdated header comments for the demo apps. {#299} ``` --- 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 dfc0f5e..cc55352 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.7" + spec.version = "1.8" 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 1ffbdab..7eb75b5 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.7 + 1.8 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 c5ded32..d1f94d6 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.7 + 1.8 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 fc6b844..ceca151 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.7 + 1.8 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 388ea3c..0983ae4 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.7 + 1.8 CFBundleSignature ???? CFBundleVersion diff --git a/OnePasswordExtension.m b/OnePasswordExtension.m index 801facf..8c0d19d 100644 --- a/OnePasswordExtension.m +++ b/OnePasswordExtension.m @@ -8,7 +8,7 @@ #import "OnePasswordExtension.h" // Version -#define VERSION_NUMBER @(170) +#define VERSION_NUMBER @(180) static NSString *const AppExtensionVersionNumberKey = @"version_number"; // Available App Extension Actions diff --git a/README.md b/README.md index 93a8509..a32e076 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,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.7'` (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'` (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. From f7261b5f17a6a222986f94b98e11a3c4fa664a1a Mon Sep 17 00:00:00 2001 From: Rad Azzouz Date: Mon, 15 Feb 2016 11:06:53 -0500 Subject: [PATCH 2/2] Fixed indentation in the podspec --- 1PasswordExtension.podspec | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/1PasswordExtension.podspec b/1PasswordExtension.podspec index cc55352..53f94b3 100644 --- a/1PasswordExtension.podspec +++ b/1PasswordExtension.podspec @@ -1,10 +1,10 @@ Pod::Spec.new do |spec| - spec.name = "1PasswordExtension" + spec.name = "1PasswordExtension" spec.module_name = "OnePasswordExtension" - spec.version = "1.8" - spec.summary = "With just a few lines of code, your app can add 1Password support." - spec.description = <<-DESC + spec.version = "1.8" + 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: - Access their 1Password Logins to automatically fill your login page. @@ -14,17 +14,17 @@ Pod::Spec.new do |spec| Empowering your users to use strong, unique passwords has never been easier. DESC - spec.homepage = "https://github.com/AgileBits/onepassword-app-extension" - spec.license = { :type => 'MIT', :file => 'LICENSE.txt' } - spec.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ] - spec.social_media_url = "https://twitter.com/1Password" + spec.homepage = "https://github.com/AgileBits/onepassword-app-extension" + spec.license = { :type => 'MIT', :file => 'LICENSE.txt' } + spec.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ] + spec.social_media_url = "https://twitter.com/1Password" - spec.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => spec.version } - spec.platform = :ios, 7.0 - spec.source_files = "*.{h,m}" - spec.frameworks = [ 'Foundation', 'MobileCoreServices', 'UIKit' ] - spec.weak_framework = "WebKit" - spec.exclude_files = "Demos" - spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] } - spec.requires_arc = true + spec.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => spec.version } + spec.platform = :ios, 7.0 + spec.source_files = "*.{h,m}" + spec.frameworks = [ 'Foundation', 'MobileCoreServices', 'UIKit' ] + spec.weak_framework = "WebKit" + spec.exclude_files = "Demos" + spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] } + spec.requires_arc = true end