Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
RileyLink 0.11.1 upgrade (#153)
* Upgrade to RileyLink 0.11.0 frameworks

* Use PumpModel.hasMySentry over larger where it makes sense

* Update to RileyLink 0.11.1 frameworks
  • Loading branch information
ps2 authored and loudnate committed Sep 4, 2016
commit 1f8ce5d29bc2859de12a3fd797c0fd545acc36a8
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ github "loudnate/xDripG5" ~> 0.6.0
github "loudnate/SwiftCharts" "loudnate/naterade"
github "mddub/dexcom-share-client-swift" ~> 0.1
github "mddub/G4ShareSpy" ~> 0.2.2
github "ps2/rileylink_ios" ~> 0.10.0
github "ps2/rileylink_ios" ~> 0.11.1
github "amplitude/Amplitude-iOS" ~> 3.8.5
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ github "loudnate/LoopKit" "v0.7.0"
github "loudnate/SwiftCharts" "8671287afb29640f9cffced6521b1098b7aac085"
github "mddub/dexcom-share-client-swift" "v0.1.3"
github "loudnate/xDripG5" "v0.6.0"
github "ps2/rileylink_ios" "v0.10.0"
github "ps2/rileylink_ios" "v0.11.1"
Binary file modified Carthage/Build/iOS/CommonCrypto.framework/CommonCrypto
Binary file not shown.
Binary file modified Carthage/Build/iOS/CommonCrypto.framework/Info.plist
Binary file not shown.
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.

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/Managers/DeviceDataManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ final class DeviceDataManager: CarbStoreDelegate, DoseStoreDelegate, Transmitter
}
}
case "pumpModel"?:
if let sentrySupported = pumpState?.pumpModel?.larger where !sentrySupported {
if let sentrySupported = pumpState?.pumpModel?.hasMySentry where !sentrySupported {
rileyLinkManager.idleListeningEnabled = false
}

Expand Down Expand Up @@ -898,7 +898,7 @@ final class DeviceDataManager: CarbStoreDelegate, DoseStoreDelegate, Transmitter
if let model = PumpModel(rawValue: pumpModelNumber) {
pumpState.pumpModel = model

idleListeningEnabled = model.larger
idleListeningEnabled = model.hasMySentry
}
}

Expand Down