tmhastings 1 год назад
Родитель
Сommit
3d5111c232

+ 10 - 3
FreeAPS/Sources/Modules/AutosensSettings/View/AutosensSettingsRootView.swift

@@ -128,9 +128,16 @@ extension AutosensSettings {
                     verboseHint: VStack {
                         Text("Default: ON").bold()
                         Text("Medtronic Users Only").bold().italic()
-                        Text("This feature resets the Autosens Ratio to neutral when you rewind your pump on the assumption that this corresponds to a site change.")
-                        Text("Autosens will begin learning sensitivity anew from the time of the rewind, which may take up to 6 hours.")
-                        Text("If you usually rewind your pump independently of site changes, you may want to consider disabling this feature.").italic()
+                        Text(
+                            "This feature resets the Autosens Ratio to neutral when you rewind your pump on the assumption that this corresponds to a site change."
+                        )
+                        Text(
+                            "Autosens will begin learning sensitivity anew from the time of the rewind, which may take up to 6 hours."
+                        )
+                        Text(
+                            "If you usually rewind your pump independently of site changes, you may want to consider disabling this feature."
+                        )
+                        .italic()
                     }
                 )
             }

+ 13 - 3
FreeAPS/Sources/Modules/AutotuneConfig/View/AutotuneConfigRootView.swift

@@ -70,8 +70,15 @@ extension AutotuneConfig {
                     units: state.units,
                     type: .boolean,
                     label: "Use Autotune",
-                    miniHint: "It is not advised to use Autotune with Trio",
-                    verboseHint: Text("It is not advised to use Autotune with Trio"),
+                    miniHint: """
+                        It is not advised to use Autotune with Trio
+                        Default: OFF
+                        """,
+                    verboseHint: VStack(spacing:10) {
+                        Text("Default: OFF").bold()
+                        Text("It is not advised to use Autotune with Trio").bold()
+                        Text("Autotune is not designed to work with Trio. It is best to keep Autotune off and do not use it.")
+                    },
                     headerText: "Data-driven Adjustments"
                 )
 
@@ -90,7 +97,10 @@ extension AutotuneConfig {
                         units: state.units,
                         type: .boolean,
                         label: "Only Autotune Basal Insulin",
-                        miniHint: "Restricts Autotune adjustments to only basal settings",
+                        miniHint: """
+                            Restricts Autotune adjustments to only basal settings
+                            Default: OFF
+                            """,
                         verboseHint: Text("Restricts Autotune adjustments to only basal settings.")
                     )
                 }

+ 12 - 10
FreeAPS/Sources/Modules/LiveActivitySettings/View/LiveActivitySettingsRootView.swift

@@ -81,10 +81,9 @@ extension LiveActivitySettings {
                         """,
                         verboseHint: VStack(spacing: 10) {
                             Text("Default: OFF").bold()
-                            Text("""
-
-                            With Live Activities, Trio displays your choice of the following current data on your iPhone's Lock Screen and in the Dynamic Island:
-                            """)
+                            Text(
+                                "With Live Activities, Trio displays your choice of the following current data on your iPhone's Lock Screen and in the Dynamic Island:"
+                            )
                             VStack(alignment: .leading) {
                                 Text("• Current Glucose Reading")
                                 Text("• IOB: Insulin On Board")
@@ -92,10 +91,9 @@ extension LiveActivitySettings {
                                 Text("• Last Updated: Time of Last Loop Cycle")
                                 Text("• Glucose Trend Chart")
                             }
-                            Text("""
-
-                            It allows you to refer to live information at a glance and perform quick actions in your diabetes management.
-                            """)
+                            Text(
+                                "It allows you to refer to live information at a glance and perform quick actions in your diabetes management."
+                            )
                         },
                         headerText: "Display Live Data From Trio"
                     )
@@ -126,8 +124,12 @@ extension LiveActivitySettings {
                                             selectedVerboseHint =
                                                 AnyView(
                                                     VStack(spacing: 10) {
-                                                        Text("Trio's Simple Lock Screen Widget only display current glucose reading, trend arrow, delta and the timestamp of the current reading.")
-                                                        Text("The Detailed Lock Screen Widget offers users a glucose chart as well as the ability to customize the information provided in the Detailed Widget using the following options:")
+                                                        Text(
+                                                            "Trio's Simple Lock Screen Widget only display current glucose reading, trend arrow, delta and the timestamp of the current reading."
+                                                        )
+                                                        Text(
+                                                            "The Detailed Lock Screen Widget offers users a glucose chart as well as the ability to customize the information provided in the Detailed Widget using the following options:"
+                                                        )
                                                         VStack(alignment: .leading) {
                                                             Text("• Current Glucose Reading")
                                                             Text("• IOB: Insulin On Board")

+ 5 - 3
FreeAPS/Sources/Modules/ShortcutsConfig/View/ShortcutsConfigView.swift

@@ -45,7 +45,7 @@ extension ShortcutsConfig {
                         )
                     }
                 ).listRowBackground(Color.chart)
-                
+
                 Section {
                     Button {
                         UIApplication.shared.open(URL(string: "shortcuts://")!)
@@ -55,7 +55,7 @@ extension ShortcutsConfig {
                         .buttonStyle(.bordered)
                 }
                 .listRowBackground(Color.clear)
-                
+
                 SettingInputSection(
                     decimalValue: $decimalPlaceholder,
                     booleanValue: $state.allowBolusByShortcuts,
@@ -77,7 +77,9 @@ extension ShortcutsConfig {
                     verboseHint: VStack {
                         Text("Default: OFF").bold()
                         Text("Enabling this setting allows the iOS Shortcuts App to send bolus commands to Trio.")
-                        Text("Disabling this setting will still allow other commands, like Temp Targets, Add Carbs, and Start/End Overrides")
+                        Text(
+                            "Disabling this setting will still allow other commands, like Temp Targets, Add Carbs, and Start/End Overrides"
+                        )
                     }
                 )
             }