Skip to content

Commit

Permalink
Bumping version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Mar 16, 2019
1 parent 64e36a1 commit 0f09501
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.1.2 - 2019-03-15
## 1.1.3 - 2019-03-16
* Upgrade Raspbian

## 1.1.0 - 2019-01-20
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.1.2"
let Version = "1.1.3"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.1.2 - 2019-03-15
## 1.1.3 - 2019-03-16
* Upgrade Raspbian
## 1.1.0 - 2019-01-20
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/Shared.fs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type TagActionForBox =
if Array.isEmpty urls then
TagActionForBox.StopMusik
else
let pos = position % urls.Length
let pos = Math.Abs(position % urls.Length)
if pos > urls.Length - 1 || pos < 0 then
failwithf "Urls.Length %d but index is %d" urls.Length pos
TagActionForBox.PlayMusik urls.[pos]
Expand Down

0 comments on commit 0f09501

Please sign in to comment.