File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- # github "RNCryptor/RNCryptor" ~> 4.0
2
-
3
- github "soffes/Crypto"
1
+ github "loudnate/Crypto" "master"
Original file line number Diff line number Diff line change 1
- github "soffes /Crypto" "v0.3.0 "
1
+ github "loudnate /Crypto" "3e9fd522eba2b95c648229f9804b34773bb340a0 "
Original file line number Diff line number Diff line change @@ -21,13 +21,15 @@ extension NSUserDefaults {
21
21
22
22
var startTimeInterval : NSTimeInterval ? {
23
23
get {
24
- return doubleForKey ( " startTimeInterval " )
24
+ let value = doubleForKey ( " startTimeInterval " )
25
+
26
+ return value > 0 ? value : nil
25
27
}
26
28
set {
27
29
if let value = newValue {
28
30
setDouble ( value, forKey: " startTimeInterval " )
29
31
} else {
30
- setNilValueForKey ( " startTimeInterval " )
32
+ removeObjectforKey ( " startTimeInterval " )
31
33
}
32
34
}
33
35
}
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "xDripG5"
3
- s . version = "0.2.1 "
3
+ s . version = "0.2.2 "
4
4
s . summary = "An interface for communicating with the G5 glucose transmitter over Bluetooth."
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >0.2.1 </string >
18
+ <string >0.2.2 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
You can’t perform that action at this time.
0 commit comments