Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ github "LoopKit/xDripG5" ~> 0.8.0
github "i-schuetz/SwiftCharts" ~> 0.6.0
github "mddub/dexcom-share-client-swift" == 0.4.0
github "mddub/G4ShareSpy" == 0.3.2
github "ps2/rileylink_ios" == 1.1.1
github "ps2/rileylink_ios" == 1.2.0
github "amplitude/Amplitude-iOS" ~> 3.8.5
8 changes: 4 additions & 4 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github "amplitude/Amplitude-iOS" "v3.14.1"
github "mddub/G4ShareSpy" "v0.3.2"
github "LoopKit/LoopKit" "v1.4.1"
github "LoopKit/xDripG5" "v0.8.0"
github "amplitude/Amplitude-iOS" "v3.14.1"
github "i-schuetz/SwiftCharts" "0.6"
github "mddub/G4ShareSpy" "v0.3.2"
github "mddub/dexcom-share-client-swift" "v0.4.0"
github "ps2/rileylink_ios" "v1.1.1"
github "LoopKit/xDripG5" "v0.8.0"
github "ps2/rileylink_ios" "v1.2.0"
14 changes: 5 additions & 9 deletions Carthage/Build/.rileylink_ios.version

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Carthage/Build/iOS/Crypto.framework/Crypto
Binary file not shown.
Binary file modified Carthage/Build/iOS/Crypto.framework/Info.plist
Binary file not shown.
Binary file modified Carthage/Build/iOS/MinimedKit.framework/Info.plist
Binary file not shown.
Binary file modified Carthage/Build/iOS/MinimedKit.framework/MinimedKit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Carthage/Build/iOS/NightscoutUploadKit.framework/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Carthage/Build/iOS/RileyLinkBLEKit.framework/Info.plist
Binary file not shown.
Binary file modified Carthage/Build/iOS/RileyLinkBLEKit.framework/RileyLinkBLEKit
Binary file not shown.
Binary file modified Carthage/Build/iOS/RileyLinkKit.framework/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Carthage/Build/iOS/RileyLinkKit.framework/RileyLinkKit
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Loop/View Controllers/SettingsTableViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class SettingsTableViewController: UITableViewController, DailyValueSchedu
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)

dataManager.rileyLinkManager.deviceScanningEnabled = true
dataManager.rileyLinkManager.setDeviceScanningEnabled(true)

if case .some = dataManager.cgm, dataManager.loopManager.glucoseStore.authorizationRequired {
dataManager.loopManager.glucoseStore.authorize { (success, error) -> Void in
Expand All @@ -60,7 +60,7 @@ final class SettingsTableViewController: UITableViewController, DailyValueSchedu
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)

dataManager.rileyLinkManager.deviceScanningEnabled = false
dataManager.rileyLinkManager.setDeviceScanningEnabled(false)
}

deinit {
Expand Down