Skip to content

Commit

Permalink
Bumping version to 1.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 28, 2019
1 parent ab1bd5f commit 71afb9f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 1.4.14 - 2019-06-28
## 1.4.15 - 2019-06-28
* Update deps
* Use --self-contained for Firmware
* Hook into view
Expand Down
4 changes: 2 additions & 2 deletions src/Client/ReleaseNotes.fs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module internal ReleaseNotes

let Version = "1.4.14"
let Version = "1.4.15"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.4.14 - 2019-06-28
## 1.4.15 - 2019-06-28
* Update deps
* Use --self-contained for Firmware
* Hook into view
Expand Down
8 changes: 4 additions & 4 deletions src/PiServer/Elmish.Audio.fs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ module Program =
with _ -> ()
}

let mapSetState setState model dispatch =
let (v:Audio) = Program.view program model dispatch
let mapView view model dispatch =
let (v:Audio) = view model dispatch
match lastView with
| Some r when r = v -> ()
| Some r ->
Expand All @@ -96,7 +96,7 @@ module Program =
| _ -> ()

lastView <- Some v
setState model dispatch
v

program
|> Program.map id id id mapSetState id
|> Program.map id id mapView id id

0 comments on commit 71afb9f

Please sign in to comment.