File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
- ## 1.7.4 - 2019-10-17
3
+ ## 1.7.5 - 2019-10-20
4
4
* .NET Core 3
5
5
6
6
## 1.6.1 - 2019-10-16
Original file line number Diff line number Diff line change 1
1
module internal ReleaseNotes
2
2
3
- let Version = " 1.7.4 "
3
+ let Version = " 1.7.5 "
4
4
5
5
let IsPrerelease = false
6
6
7
7
let Notes = """
8
8
# Release Notes
9
9
10
- ## 1.7.4 - 2019-10-17
10
+ ## 1.7.5 - 2019-10-20
11
11
* .NET Core 3
12
12
13
13
## 1.6.1 - 2019-10-16
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ open Unosquare.RaspberryIO.Abstractions
18
18
19
19
GeneralIO.init()
20
20
21
-
22
21
let runIn ( timeSpan : TimeSpan ) successMsg errorMsg =
23
22
let t () = task {
24
23
do ! Task.Delay ( int timeSpan.TotalMilliseconds)
@@ -204,7 +203,8 @@ let update (msg:Msg) (model:Model) =
204
203
else
205
204
model, Cmd.none
206
205
with
207
- | _ ->
206
+ | exn ->
207
+ log.ErrorFormat( " Player stopped with error: {0}" , exn.Message)
208
208
model, Cmd.none
209
209
| _ ->
210
210
model, Cmd.none
You can’t perform that action at this time.
0 commit comments