Skip to content

Commit

Permalink
Small settings display tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBennet committed Jan 27, 2019
1 parent 2074db4 commit 1add927
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ReadingList/Storyboards/Settings.storyboard
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<sections>
<tableViewSection footerTitle="v1.10.0 - BUILD 1452" id="gNP-kM-fDe">
<tableViewSection footerTitle="v1.10.0 (1452)" id="gNP-kM-fDe">
<cells>
<tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="szE-7z-GeH" imageView="Leu-nB-A5y" style="IBUITableViewCellStyleDefault" id="0jA-9Z-oTa">
<rect key="frame" x="0.0" y="35" width="320" height="44"/>
Expand Down
2 changes: 1 addition & 1 deletion ReadingList/ViewControllers/Settings/About.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class About: UITableViewController {
guard let textLabel = footer.textLabel else { assertionFailure("Missing text label"); return }
textLabel.textAlignment = .center
textLabel.font = .systemFont(ofSize: 11.0)
textLabel.text = "v\(BuildInfo.appVersion) - BUILD \(BuildInfo.appBuildNumber)"
textLabel.text = "v\(BuildInfo.appVersion) (\(BuildInfo.appBuildNumber))"
}

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
Expand Down
4 changes: 2 additions & 2 deletions ReadingList/ViewControllers/Settings/Settings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ class Settings: UITableViewController {
iCloud Sync is currently being developed. When available, this will synchronise books between different devices. \
Until this is available, you can move your book data between devices manually by exporting and importing.
If you want to help the development of iCloud Sync, you can join the beta program.
If you want to help the development of Reading List, you can join the beta program.
"""

let alert = UIAlertController(title: "iCloud Sync coming soon", message: message, preferredStyle: .actionSheet)
let alert = UIAlertController(title: "iCloud Sync not available", message: message, preferredStyle: .actionSheet)
alert.addAction(UIAlertAction(title: "Manual Export", style: .default) { _ in
self.performSegue(withIdentifier: "settingsData", sender: self)
if self.splitViewController!.isSplit {
Expand Down

0 comments on commit 1add927

Please sign in to comment.