Skip to content

Commit bfd9169

Browse files
authored
Merge pull request #297 from mattrubin/prepare-for-release
Prepare for release
2 parents 23e9332 + a98f9cc commit bfd9169

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to the project will be documented in this file.
44
[Authenticator]: https://github.com/mattrubin/Authenticator
55

66

7+
## [2.0.6] - 2018-12-22
8+
- Added a new menu where a user can select whether they prefer passwords shown in groups of two digits or groups of three.
9+
([#290](https://github.com/mattrubin/Authenticator/pull/290),
10+
[#292](https://github.com/mattrubin/Authenticator/pull/292))
11+
- Fixed a user interface bug that could occur after a user declined the app's request for camera access.
12+
([#293](https://github.com/mattrubin/Authenticator/pull/293))
13+
14+
715
## [2.0.5] - 2018-09-17
816
- Added an alert to ask the user for confirmation before permanently deleting a token.
917
([#217](https://github.com/mattrubin/Authenticator/pull/217))
@@ -112,7 +120,8 @@ For security reasons, tokens are stored only on one device, and are not included
112120
## [1.0] - 2013-11-25
113121

114122

115-
[Unreleased]: https://github.com/mattrubin/Authenticator/compare/2.0.5...HEAD
123+
[Unreleased]: https://github.com/mattrubin/Authenticator/compare/2.0.6...HEAD
124+
[2.0.6]: https://github.com/mattrubin/Authenticator/compare/2.0.5...2.0.6
116125
[2.0.5]: https://github.com/mattrubin/Authenticator/compare/2.0.4...2.0.5
117126
[2.0.4]: https://github.com/mattrubin/Authenticator/compare/2.0.3...2.0.4
118127
[2.0.3]: https://github.com/mattrubin/Authenticator/compare/2.0.2...2.0.3

fastlane/SnapshotHelper.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,14 @@ open class Snapshot: NSObject {
114114
} catch {
115115
print("Couldn't detect/set locale...")
116116
}
117+
117118
if locale.isEmpty {
118119
locale = Locale(identifier: deviceLanguage).identifier
119120
}
120-
app.launchArguments += ["-AppleLocale", "\"\(locale)\""]
121+
122+
if !locale.isEmpty {
123+
app.launchArguments += ["-AppleLocale", "\"\(locale)\""]
124+
}
121125
}
122126

123127
class func setLaunchArguments(_ app: XCUIApplication) {
@@ -273,4 +277,4 @@ private extension CGFloat {
273277

274278
// Please don't remove the lines below
275279
// They are used to detect outdated configuration files
276-
// SnapshotHelperVersion [1.12]
280+
// SnapshotHelperVersion [1.13]
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
• Added an alert to ask the user for confirmation before permanently deleting a token.
1+
• Added a new menu where a user can select whether they prefer passwords shown in groups of two digits or groups of three.
2+
• Fixed a user interface bug that could occur after a user declined the app's request for camera access.

0 commit comments

Comments
 (0)