Merge branch 'ios-release' into main
This commit is contained in:
commit
0b170b7ff5
@ -73,17 +73,22 @@ class FeedWranglerAccountViewController: UITableViewController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func action(_ sender: Any) {
|
@IBAction func action(_ sender: Any) {
|
||||||
|
|
||||||
guard let email = emailTextField.text, let password = passwordTextField.text else {
|
guard let email = emailTextField.text, let password = passwordTextField.text else {
|
||||||
showError(NSLocalizedString("Username & password required.", comment: "Credentials Error"))
|
showError(NSLocalizedString("Username & password required.", comment: "Credentials Error"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
// When you fill in the email address via auto-complete it adds extra whitespace
|
||||||
|
let trimmedEmail = email.trimmingCharacters(in: .whitespaces)
|
||||||
|
|
||||||
|
guard !AccountManager.shared.duplicateServiceAccount(type: .feedWrangler, username: trimmedEmail) else {
|
||||||
|
showError(NSLocalizedString("There is already a FeedWrangler account with that username created.", comment: "Duplicate Error"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
resignFirstResponder()
|
resignFirstResponder()
|
||||||
toggleActivityIndicatorAnimation(visible: true)
|
toggleActivityIndicatorAnimation(visible: true)
|
||||||
setNavigationEnabled(to: false)
|
setNavigationEnabled(to: false)
|
||||||
|
|
||||||
// When you fill in the email address via auto-complete it adds extra whitespace
|
|
||||||
let trimmedEmail = email.trimmingCharacters(in: .whitespaces)
|
|
||||||
let credentials = Credentials(type: .feedWranglerBasic, username: trimmedEmail, secret: password)
|
let credentials = Credentials(type: .feedWranglerBasic, username: trimmedEmail, secret: password)
|
||||||
Account.validateCredentials(type: .feedWrangler, credentials: credentials) { result in
|
Account.validateCredentials(type: .feedWrangler, credentials: credentials) { result in
|
||||||
|
|
||||||
|
@ -74,17 +74,23 @@ class FeedbinAccountViewController: UITableViewController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func action(_ sender: Any) {
|
@IBAction func action(_ sender: Any) {
|
||||||
|
|
||||||
guard let email = emailTextField.text, let password = passwordTextField.text else {
|
guard let email = emailTextField.text, let password = passwordTextField.text else {
|
||||||
showError(NSLocalizedString("Username & password required.", comment: "Credentials Error"))
|
showError(NSLocalizedString("Username & password required.", comment: "Credentials Error"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// When you fill in the email address via auto-complete it adds extra whitespace
|
||||||
|
let trimmedEmail = email.trimmingCharacters(in: .whitespaces)
|
||||||
|
|
||||||
|
guard !AccountManager.shared.duplicateServiceAccount(type: .feedbin, username: trimmedEmail) else {
|
||||||
|
showError(NSLocalizedString("There is already a Feedbin account with that username created.", comment: "Duplicate Error"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
resignFirstResponder()
|
resignFirstResponder()
|
||||||
toggleActivityIndicatorAnimation(visible: true)
|
toggleActivityIndicatorAnimation(visible: true)
|
||||||
setNavigationEnabled(to: false)
|
setNavigationEnabled(to: false)
|
||||||
|
|
||||||
// When you fill in the email address via auto-complete it adds extra whitespace
|
|
||||||
let trimmedEmail = email.trimmingCharacters(in: .whitespaces)
|
|
||||||
let credentials = Credentials(type: .basic, username: trimmedEmail, secret: password)
|
let credentials = Credentials(type: .basic, username: trimmedEmail, secret: password)
|
||||||
Account.validateCredentials(type: .feedbin, credentials: credentials) { result in
|
Account.validateCredentials(type: .feedbin, credentials: credentials) { result in
|
||||||
self.toggleActivityIndicatorAnimation(visible: false)
|
self.toggleActivityIndicatorAnimation(visible: false)
|
||||||
|
@ -100,7 +100,6 @@ class AddFeedViewController: UITableViewController {
|
|||||||
let normalizedURLString = urlString.normalizedURL
|
let normalizedURLString = urlString.normalizedURL
|
||||||
|
|
||||||
guard !normalizedURLString.isEmpty, let url = URL(unicodeString: normalizedURLString) else {
|
guard !normalizedURLString.isEmpty, let url = URL(unicodeString: normalizedURLString) else {
|
||||||
delegate?.processingDidCancel()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,8 +94,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
|
|||||||
self.unreadCount = AccountManager.shared.unreadCount
|
self.unreadCount = AccountManager.shared.unreadCount
|
||||||
}
|
}
|
||||||
|
|
||||||
UNUserNotificationCenter.current().getNotificationSettings { (settings) in
|
UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .sound, .alert]) { (granted, error) in
|
||||||
if settings.authorizationStatus == .authorized {
|
if granted {
|
||||||
DispatchQueue.main.async {
|
DispatchQueue.main.async {
|
||||||
UIApplication.shared.registerForRemoteNotifications()
|
UIApplication.shared.registerForRemoteNotifications()
|
||||||
}
|
}
|
||||||
|
@ -616,13 +616,15 @@ private extension MasterTimelineViewController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tableView.selectRow(at: nil, animated: false, scrollPosition: .top)
|
tableView.selectRow(at: nil, animated: false, scrollPosition: .top)
|
||||||
let dataSourceSnapshot = dataSource.snapshot()
|
|
||||||
if resetScroll && dataSourceSnapshot.indexOfSection(0) != nil && dataSourceSnapshot.itemIdentifiers(inSection: 0).count > 0 {
|
if resetScroll {
|
||||||
tableView.scrollToRow(at: IndexPath(row: 0, section: 0), at: .top, animated: false)
|
let snapshot = dataSource.snapshot()
|
||||||
|
if snapshot.sectionIdentifiers.count > 0 && snapshot.itemIdentifiers(inSection: 0).count > 0 {
|
||||||
|
tableView.scrollToRow(at: IndexPath(row: 0, section: 0), at: .top, animated: false)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateToolbar()
|
updateToolbar()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateToolbar() {
|
func updateToolbar() {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
// High Level Settings common to both the iOS application and any extensions we bundle with it
|
// High Level Settings common to both the iOS application and any extensions we bundle with it
|
||||||
MARKETING_VERSION = 5.0.3
|
MARKETING_VERSION = 5.0.4
|
||||||
CURRENT_PROJECT_VERSION = 50
|
CURRENT_PROJECT_VERSION = 53
|
||||||
|
|
||||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
|
||||||
|
Loading…
x
Reference in New Issue
Block a user