Skip to content

Commit 2a2b02e

Browse files
committed
Fix texts
1 parent 1fb94ef commit 2a2b02e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Loop.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3357,7 +3357,7 @@
33573357
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
33583358
CODE_SIGN_IDENTITY = "iPhone Developer: [email protected] (XZN842LDLT)";
33593359
COPY_PHASE_STRIP = NO;
3360-
CURRENT_PROJECT_VERSION = 071119a;
3360+
CURRENT_PROJECT_VERSION = 091119a;
33613361
DEBUG_INFORMATION_FORMAT = dwarf;
33623362
ENABLE_STRICT_OBJC_MSGSEND = YES;
33633363
ENABLE_TESTABILITY = YES;
@@ -3429,7 +3429,7 @@
34293429
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
34303430
CODE_SIGN_IDENTITY = "iPhone Developer: [email protected] (XZN842LDLT)";
34313431
COPY_PHASE_STRIP = NO;
3432-
CURRENT_PROJECT_VERSION = 071119a;
3432+
CURRENT_PROJECT_VERSION = 091119a;
34333433
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
34343434
ENABLE_NS_ASSERTIONS = NO;
34353435
ENABLE_STRICT_OBJC_MSGSEND = YES;

Loop/Managers/LoopDataManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ final class LoopDataManager {
7272
carbRatioSchedule: carbRatioSchedule,
7373
insulinSensitivitySchedule: insulinSensitivitySchedule,
7474
overrideHistory: overrideHistory,
75-
carbAbsorptionModel: .nonlinear
75+
carbAbsorptionModel: .adaptiveRateNonlinear
7676
)
7777

7878
doseStore = DoseStore(

Loop/Views/MicrobolusView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ struct MicrobolusView: View {
8181
.foregroundColor(.orange)
8282
.padding(.trailing)
8383

84-
Text("Caution! Microboluses has the potential to reduce the safety effects of other mitigations, like max temp basal rate. Please be careful!\nThe actual size of the microbolus is always limited to half the recommended bolus.")
84+
Text("Caution! Microboluses have potential to reduce the safety effects of other mitigations like max temp basal rate. Please be careful!\nThe actual size of a microbolus is always limited to half the recommended bolus.")
8585
.font(.caption)
8686
}
8787

8888
}
8989
Section(footer:
90-
Text("This is the maximum minutes of basal that can be delivered as a single Microbolus with uncovered COB. This gives the ability to make Microboluses more aggressive if you choose. It is recommended that the value is set to start at 30, in line with the default, and if you choose to increase this value, do so in no more than 15 minute increments, keeping a close eye on the effects of the changes.")
90+
Text("This is the maximum minutes of basal that can be delivered as a single microbolus with uncovered COB. This allows you to make microboluses behave more aggressively. It is recommended that this value is set to start at 30, in line with default, and if you choose to increase this value, do so in no more than 15 minute increments, keeping a close eye on the effects of the changes.")
9191
) {
9292
Toggle (isOn: $viewModel.microbolusesWithCOB) {
9393
Text("Enable With Carbs")
@@ -102,7 +102,7 @@ struct MicrobolusView: View {
102102

103103
if viewModel.microbolusesWithCOB {
104104
Section(footer:
105-
Text("This is the maximum minutes of basal that can be delivered as a single Microbolus without COB.")
105+
Text("This is the maximum minutes of basal that can be delivered as a single microbolus without COB.")
106106
) {
107107
Toggle (isOn: $viewModel.microbolusesWithoutCOB) {
108108
Text("Enable Without Carbs")
@@ -115,7 +115,7 @@ struct MicrobolusView: View {
115115
}
116116

117117
Section(header: Text("Safe Mode").font(.headline), footer:
118-
Text("• If Enabled and the predicted glucose after 15 minutes is less than the current glucose, Microboluses is not allowed.\n• If Limited and the predicted glucose after 15 minutes is less than the current glucose, the Maximum Microbolus Size is limited to 30 basal minutes.\n• If Disabled, there are no restrictions.")
118+
Text("• If Enabled and predicted glucose in 15 minutes is lower than current glucose, microboluses are not allowed.\n• If Limited and the predicted glucose in 15 minutes is lower than current glucose, the maximum microbolus size is limited to 30 basal minutes.\n• If Disabled, there are no restrictions.")
119119
) {
120120
Picker(selection: $viewModel.safeMode, label: Text("Safe Mode")) {
121121
ForEach(Microbolus.SafeMode.allCases, id: \.self) { value in

0 commit comments

Comments
 (0)