diff --git a/Podfile b/Podfile index d1d7cb60879..f40e3eb8f36 100644 --- a/Podfile +++ b/Podfile @@ -18,7 +18,7 @@ target 'WooCommerce' do # pod 'Automattic-Tracks-iOS', :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :tag => '0.2.3' pod 'Gridicons', '0.15' - pod 'WordPressAuthenticator', '1.0.2' + pod 'WordPressAuthenticator', '1.0.4' # External Libraries diff --git a/Podfile.lock b/Podfile.lock index bb41298c557..c453a0365ec 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -38,7 +38,7 @@ PODS: - Reachability (3.2) - SVProgressHUD (2.2.5) - UIDeviceIdentifier (0.5.0) - - WordPressAuthenticator (1.0.2): + - WordPressAuthenticator (1.0.4): - 1PasswordExtension (= 1.8.5) - Alamofire (= 4.7.2) - CocoaLumberjack (= 3.4.2) @@ -72,7 +72,7 @@ DEPENDENCIES: - Crashlytics (~> 3.10) - Gridicons (= 0.15) - KeychainAccess (~> 3.1) - - WordPressAuthenticator (= 1.0.2) + - WordPressAuthenticator (= 1.0.4) SPEC REPOS: https://github.com/cocoapods/specs.git: @@ -126,12 +126,12 @@ SPEC CHECKSUMS: Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96 SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6 UIDeviceIdentifier: a959a6d4f51036b4180dd31fb26483a820f1cc46 - WordPressAuthenticator: 20e8eb9cb61bef82370658037bdf9ca24a54570a + WordPressAuthenticator: 2825f0c56f83a17470564dbec427991fa5cac5af WordPressKit: a24baaa783c3a221f2d9a51c19318cbb27333373 WordPressShared: 063e1e8b1a7aaf635abf17f091a2d235a068abdc WordPressUI: af141587ec444f9af753a00605bd0d3f14d8d8a3 wpxmlrpc: bfc572f62ce7ee897f6f38b098d2ba08732ecef4 -PODFILE CHECKSUM: b590e9b26af44e7f478eaad3ac3c46252a3105fa +PODFILE CHECKSUM: bca741aeec025b018771a1e5d22cbc71dfd15f55 COCOAPODS: 1.5.3 diff --git a/WooCommerce/Classes/AppDelegate.swift b/WooCommerce/Classes/AppDelegate.swift index a1ae4e9bd3b..9af93551b0a 100644 --- a/WooCommerce/Classes/AppDelegate.swift +++ b/WooCommerce/Classes/AppDelegate.swift @@ -116,8 +116,6 @@ private extension AppDelegate { UINavigationBar.appearance().isTranslucent = false UINavigationBar.appearance().tintColor = .white UIApplication.shared.statusBarStyle = .lightContent - - UIButton.appearance().setTitleColor(StyleManager.wooCommerceBrandColor, for: .normal) } /// Sets up FancyButton's UIAppearance. diff --git a/WooCommerce/Classes/Authentication/AuthenticationManager.swift b/WooCommerce/Classes/Authentication/AuthenticationManager.swift index dcf5658398b..679332e18b4 100644 --- a/WooCommerce/Classes/Authentication/AuthenticationManager.swift +++ b/WooCommerce/Classes/Authentication/AuthenticationManager.swift @@ -33,7 +33,8 @@ class AuthenticationManager { disabledBorderColor: StyleManager.buttonDisabledHighlightedColor, primaryTitleColor: StyleManager.buttonPrimaryTitleColor, secondaryTitleColor: StyleManager.buttonSecondaryTitleColor, - disabledTitleColor: StyleManager.buttonDisabledTitleColor) + disabledTitleColor: StyleManager.buttonDisabledTitleColor, + subheadlineColor: StyleManager.wooCommerceBrandColor) WordPressAuthenticator.initialize(configuration: configuration, style: style) WordPressAuthenticator.shared.delegate = self