Skip to content

Commit 1b8ede2

Browse files
authored
Release 1.3.1 (#442)
* refactor of CGM device management * Adding missing files from last cgm refactor pr * Fail if any command in pipeline fails * handling a memory warning and tweaks to the diagnostic report * Fix tests that had been breaking for a while but were hidden by xcpretty swallowing exit code * Show the glucose chart in the widget (#377) Show the glucose chart in the widget. Thanks @bharat! * Swift 3.1 - rebuild all frameworks, clean up all swift warnings (#421) * Rebuild all frameworks with swift 3.1 * Resolve all Swift 3.1 warnings * Swift 3.1 - update LoopKit to 1.2.1 (#423) update LoopKit to 1.2.1 * Swift 3.1 - post widget merge cleanups (#424) * Extend ChartColorPalette in Loop target to add a .default() palette * Update chart appropriately when we remove glucose targets * Drop the first predicted glucose entry. It's the current glucose and its interval to the second is not uniform with the interval for the rest * Use predictedGlucose.startIndex for clarity instead of hardcoding indexes * Swift 3.1 - update dexcom-share-client-swift and G4ShareSpy frameworks (#422) update dexcom-share-client-swift and G4ShareSpy frameworks * Project and margin cleanups (#427) * support share-only cgm source (#426) * fall back to getting cgm data from share if no others are configured * use absence of g5 transmitter to indicate share-only setup. * Widget should always display data using the preferred dispay unit, (#434) regardless of the units used in the StatusExtensionContext. * Break the tie between two visual constraints. (#439) "<NSLayoutConstraint:0x600000097430 LoopUI.ChartContentView:0x7f808c50aae0.height >= 100 (active)>", "<NSLayoutConstraint:0x60000009c2f0 'UISV-hiding' LoopUI.ChartContentView:0x7f808c50aae0.height == 0 (active)>" Lower the priority of the height >= 100 constraint. * bump version (#441)
1 parent 66ca9e6 commit 1b8ede2

File tree

214 files changed

+2253
-1129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+2253
-1129
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
language: objective-c
2-
osx_image: xcode8.1
2+
osx_image: xcode8.3
33
# xcode_sdk: iphonesimulator10.0
44
# xcode_project: Loop.xcodeproj
55
# xcode_scheme: Loop
66
before_script:
77
# - carthage bootstrap
88
script:
99
# Build the app target
10-
- xcodebuild -project Loop.xcodeproj -scheme Loop build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
10+
- set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme Loop build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
1111
# Run the test target
12-
- xcodebuild -project Loop.xcodeproj -scheme LoopTests -destination 'name=iPhone SE' test | xcpretty
13-
- xcodebuild -project Loop.xcodeproj -scheme DoseMathTests -destination 'name=iPhone SE' test | xcpretty
12+
- set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme LoopTests -destination 'name=iPhone SE' test | xcpretty
13+
- set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme DoseMathTests -destination 'name=iPhone SE' test | xcpretty

Cartfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
github "LoopKit/LoopKit" ~> 1.2.0
1+
github "LoopKit/LoopKit" == 1.2.1
22
github "LoopKit/xDripG5" ~> 0.8.0
3-
github "i-schuetz/SwiftCharts" ~> 0.5.0
4-
github "mddub/dexcom-share-client-swift" ~> 0.2.0
5-
github "mddub/G4ShareSpy" ~> 0.3.1
3+
github "bharat/SwiftCharts" "0.5.1-extension-api-safe"
4+
github "mddub/dexcom-share-client-swift" == 0.2.1
5+
github "mddub/G4ShareSpy" == 0.3.2
66
github "ps2/rileylink_ios" ~> 1.0
77
github "amplitude/Amplitude-iOS" ~> 3.8.5

Cartfile.resolved

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
github "amplitude/Amplitude-iOS" "v3.14.0"
2-
github "mddub/G4ShareSpy" "v0.3.1"
3-
github "LoopKit/LoopKit" "v1.2.0"
4-
github "i-schuetz/SwiftCharts" "0.5.1"
5-
github "mddub/dexcom-share-client-swift" "v0.2.0"
6-
github "ps2/rileylink_ios" "v1.0"
1+
github "LoopKit/LoopKit" "v1.2.1"
72
github "LoopKit/xDripG5" "v0.8.0"
3+
github "amplitude/Amplitude-iOS" "v3.14.1"
4+
github "bharat/SwiftCharts" "9faad7c38762a177ae01382def605a77c0e61aba"
5+
github "mddub/G4ShareSpy" "v0.3.2"
6+
github "mddub/dexcom-share-client-swift" "v0.2.1"
7+
github "ps2/rileylink_ios" "v1.0"

Carthage/Build/.Amplitude-iOS.version

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.G4ShareSpy.version

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.LoopKit.version

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.SwiftCharts.version

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.dexcom-share-client-swift.version

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.rileylink_ios.version

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Carthage/Build/.xDripG5.version

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)