Skip to content

Commit 0ff0cc2

Browse files
authored
Merge pull request #395 from loopandlearn/trio-release
Remove Trio limitation
2 parents 1815d53 + 7fdd000 commit 0ff0cc2

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

LoopFollow/Remote/Settings/RemoteSettingsView.swift

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,15 @@ struct RemoteSettingsView: View {
3131

3232
remoteTypeRow(type: .nightscout, label: "Nightscout", isEnabled: true)
3333

34-
if BuildDetails.default.branch?.lowercased() != "main" {
35-
remoteTypeRow(
36-
type: .trc,
37-
label: "Trio Remote Control",
38-
isEnabled: viewModel.isTrioDevice
39-
)
40-
}
34+
remoteTypeRow(
35+
type: .trc,
36+
label: "Trio Remote Control",
37+
isEnabled: viewModel.isTrioDevice
38+
)
4139

42-
Text("Nightscout is the only option for the released version of Trio and Loop.")
40+
Text("Nightscout is the only option for Loop.\nNightscout should be used for Trio 0.2.x or older.")
4341
.font(.footnote)
4442
.foregroundColor(.secondary)
45-
46-
if BuildDetails.default.branch?.lowercased() != "main" {
47-
Text("Trio Remote Control requires a special version of Trio, which is under development in a private repository until sufficient testing is completed.")
48-
.font(.footnote)
49-
.foregroundColor(.secondary)
50-
}
5143
}
5244

5345
// MARK: - User Information Section

0 commit comments

Comments
 (0)