Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

Commit

Permalink
1.3 (Build 2362)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinreams committed Sep 15, 2018
2 parents 34ab2be + 36cce44 commit ab5317c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
14 changes: 14 additions & 0 deletions docs/release-notes.md
@@ -1,19 +1,33 @@
# Release Notes

## 1.3 (Build 2349)

_Date: 2018-09-14_

With iOS 12 you can automatically fill your usernames and passwords from Firefox Lockbox into apps and websites.

Be sure to enable AutoFill after updating to iOS 12 from within Settings under the "Passwords & Accounts" section.

## 1.3 (Build 2340)

_Date: 2018-09-14_

With iOS 12 you can automatically fill your usernames and passwords from Firefox Lockbox into apps and websites.

Be sure to enable AutoFill after updating to iOS 12 from within Settings under the "Passwords & Accounts" section.

## 1.3 (Build 2320)

_Date: 2018-09-14_

With iOS 12 you can automatically fill your usernames and passwords from Firefox Lockbox into apps and websites.

Be sure to enable AutoFill after updating to iOS 12 from within Settings under the "Passwords & Accounts" section.

## 1.3 (Build 2294)

_Date: 2018-09-13_

With iOS 12 you can automatically fill your usernames and passwords from Firefox Lockbox into apps and websites.

Be sure to enable AutoFill after updating to iOS 12 from within Settings under the "Passwords & Accounts" section.
Expand Down
7 changes: 0 additions & 7 deletions lockbox-ios/Action/ExternalLinkAction.swift
Expand Up @@ -15,13 +15,6 @@ struct ExternalLinkAction: LinkAction {
enum SettingLinkAction: RouteAction {
case touchIDPasscode
case autofill

func toString() -> String {
switch self {
case .touchIDPasscode: return "App-Prefs:root=TOUCHID_PASSCODE"
case .autofill: return "App-Prefs:root=Passwords_And_Accounts"
}
}
}

extension ExternalLinkAction: Equatable {
Expand Down
2 changes: 1 addition & 1 deletion lockbox-ios/Store/ExternalLinkStore.swift
Expand Up @@ -45,7 +45,7 @@ class ExternalLinkStore {
}

private func openSettings(_ action: SettingLinkAction) {
if let settingsURL = URL(string: action.toString()),
if let settingsURL = URL(string: UIApplication.openSettingsURLString),
self.application.canOpenURL(settingsURL) {
self.application.open(settingsURL, options: [:], completionHandler: nil)
}
Expand Down
4 changes: 2 additions & 2 deletions lockbox-iosTests/ExternalLinkStoreSpec.swift
Expand Up @@ -63,7 +63,7 @@ class ExternalLinkStoreSpec: QuickSpec {
}

it("opens the appropriate string value of the settings page") {
let expectedURL = URL(string: "App-Prefs:root=TOUCHID_PASSCODE")
let expectedURL = URL(string: UIApplication.openSettingsURLString)
expect(self.application.canOpenURLArgument).to(equal(expectedURL))
expect(self.application.openArgument).to(equal(expectedURL))
}
Expand All @@ -75,7 +75,7 @@ class ExternalLinkStoreSpec: QuickSpec {
}

it("opens the appropriate string value of the settings page") {
let expectedURL = URL(string: "App-Prefs:root=Passwords_And_Accounts")
let expectedURL = URL(string: UIApplication.openSettingsURLString)
expect(self.application.canOpenURLArgument).to(equal(expectedURL))
expect(self.application.openArgument).to(equal(expectedURL))
}
Expand Down

0 comments on commit ab5317c

Please sign in to comment.