Skip to content

Commit

Permalink
Merge 19.7.1 hotfix into release/19.8 (#13521)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmusolino authored Aug 6, 2024
2 parents 6c88236 + 57b1813 commit 5158dfe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@
19.9
-----


19.8
-----
- [*] Add support to background update the order list and the dashboard analytics cards(Performance & Top Performers).
- [*] Dynamic Dashboard: Display unavailable analytics view when logged in without WPCom. [https://github.com/woocommerce/woocommerce-ios/pull/13440]
- [*] Fix large text support in Bar Code Scanner. [https://github.com/woocommerce/woocommerce-ios/pull/13464]
- [internal] Enable Blaze only if the store has Jetpack installed and connected. [https://github.com/woocommerce/woocommerce-ios/pull/13448]

19.7.1
-----
- [***] Prologue: Restored web view for `Starting a new store?` button [https://github.com/woocommerce/woocommerce-ios/pull/13518]

19.7
-----
- [*] Order status is consistent across the order list/dashboard card/filter list/search list. [https://github.com/woocommerce/woocommerce-ios/pull/13408]
Expand Down
10 changes: 10 additions & 0 deletions WooCommerce/Classes/Authentication/AuthenticationManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,16 @@ extension AuthenticationManager: WordPressAuthenticatorDelegate {
}
analytics.track(wooEvent, withError: error)
}

func showSiteCreationGuide(in navigationController: UINavigationController) {
analytics.track(event: .StoreCreation.loginPrologueStartingANewStoreTapped())

guard let url = try? AuthenticationConstants.hostingURL.asURL() else {
return
}
let webView = SFSafariViewController(url: url)
navigationController.present(webView, animated: true)
}
}

// MARK: - Private helpers
Expand Down

0 comments on commit 5158dfe

Please sign in to comment.