Skip to content

Commit c2b105f

Browse files
committed
Version bump, streamlining strings
1 parent 3094133 commit c2b105f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Loop/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>11</string>
22+
<string>12</string>
2323
<key>LSApplicationQueriesSchemes</key>
2424
<array>
2525
<string>dexcomcgm</string>

Loop/View Controllers/StatusTableViewController.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,6 @@ class StatusTableViewController: UITableViewController, UIGestureRecognizerDeleg
340340
static let count = 4
341341
}
342342

343-
private lazy var emptyDateString: String = NSLocalizedString("Never", comment: "The detail value of a date cell with no value")
344-
345343
private lazy var emptyValueString: String = NSLocalizedString("––",
346344
comment: "The detail value of a numeric cell with no value"
347345
)
@@ -464,7 +462,7 @@ class StatusTableViewController: UITableViewController, UIGestureRecognizerDeleg
464462
if let date = dataManager.latestPumpStatus?.pumpDateComponents.date {
465463
cell.detailTextLabel?.text = dateFormatter.stringFromDate(date)
466464
} else {
467-
cell.detailTextLabel?.text = emptyDateString
465+
cell.detailTextLabel?.text = emptyValueString
468466
}
469467
case .InsulinOnBoard:
470468
cell.textLabel?.text = NSLocalizedString("Bolus Insulin on Board", comment: "The title of the cell containing the estimated amount of active bolus insulin in the body")

WatchApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>11</string>
24+
<string>12</string>
2525
<key>UISupportedInterfaceOrientations</key>
2626
<array>
2727
<string>UIInterfaceOrientationPortrait</string>

0 commit comments

Comments
 (0)