Skip to content

Commit

Permalink
Merge pull request #271 from AgileBits/release/1.6.3
Browse files Browse the repository at this point in the history
[Release] 1.6.3
  • Loading branch information
Rad Azzouz committed Oct 17, 2015
2 parents 3059dbb + da69d6f commit fffa5f1
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 33 deletions.
52 changes: 25 additions & 27 deletions 1PasswordExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
Pod::Spec.new do |spec|

Pod::Spec.new do |s|
spec.name = "1PasswordExtension"
spec.header_dir = "OnePasswordExtension"
spec.header_mappings_dir = "OnePasswordExtension"
spec.version = "1.6.3"
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:
s.name = "1PasswordExtension"
s.header_dir = "OnePasswordExtension"
s.header_mappings_dir = "OnePasswordExtension"
s.version = "1.6.2"
s.summary = "With just a few lines of code, your app can add 1Password support."
- Access their 1Password Logins to automatically fill your login page.
- Use the Strong Password Generator to create unique passwords during registration, and save the new Login within 1Password.
- Quickly fill 1Password Logins directly into web views.
s.description = <<-DESC
With just a few lines of code, your app can add 1Password support, enabling your users to:
Empowering your users to use strong, unique passwords has never been easier.
DESC

- Access their 1Password Logins to automatically fill your login page.
- Use the Strong Password Generator to create unique passwords during registration, and save the new Login within 1Password.
- Quickly fill 1Password Logins directly into web views.
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"

Empowering your users to use strong, unique passwords has never been easier.
DESC

s.homepage = "https://github.com/AgileBits/onepassword-app-extension"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.authors = [ "Dave Teare", "Michael Fey", "Rad Azzouz", "Roustem Karimov" ]
s.social_media_url = "https://twitter.com/1Password"

s.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => s.version }
s.platform = :ios, 7.0
s.source_files = "*.{h,m}"
s.frameworks = "UIKit"
s.weak_framework = "WebKit"
s.exclude_files = "Demos"
s.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] }
s.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 = "UIKit"
spec.weak_framework = "WebKit"
spec.exclude_files = "Demos"
spec.resource_bundles = { 'OnePasswordExtensionResources' => ['1Password.xcassets/*.imageset/*.png', '1Password.xcassets'] }
spec.requires_arc = true
end
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.6.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Demos/App Demo for iOS/App Demo for iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.6.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.6.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Demos/WebView Demo for iOS/WebView Demo for iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.6.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion OnePasswordExtension.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import "OnePasswordExtension.h"

// Version
#define VERSION_NUMBER @(162)
#define VERSION_NUMBER @(163)
static NSString *const AppExtensionVersionNumberKey = @"version_number";

// Available App Extension Actions
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.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 also available via CocoaPods, simply add `pod '1PasswordExtension', '~> 1.6.3'` (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.

Expand Down

0 comments on commit fffa5f1

Please sign in to comment.