Skip to content

Commit

Permalink
Bumping version to 1.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Aug 20, 2019
1 parent c2c9f07 commit 60f11a6
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.5.12 - 2019-08-20
## 1.5.13 - 2019-08-20
* Sonos support

## 1.4.22 - 2019-08-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.5.12"
let Version = "1.5.13"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.5.12 - 2019-08-20
## 1.5.13 - 2019-08-20
* Sonos support
## 1.4.22 - 2019-08-20
Expand Down
8 changes: 4 additions & 4 deletions src/Server/Server.fs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ let volumeUpEndpoint userID =
plug (fun next ctx -> task {
match! AzureTable.getUser userID with
| None ->
return! Response.forbidden ctx userID
return! Response.notFound ctx userID
| Some user ->
let logger = ctx.GetLogger "VolumeUp"
do! Sonos.volumeUp logger user.SonosAccessToken Sonos.group
Expand All @@ -264,7 +264,7 @@ let volumeDownEndpoint userID =
plug (fun next ctx -> task {
match! AzureTable.getUser userID with
| None ->
return! Response.forbidden ctx userID
return! Response.notFound ctx userID
| Some user ->
let logger = ctx.GetLogger "VolumeDown"
do! Sonos.volumeDown logger user.SonosAccessToken Sonos.group
Expand Down Expand Up @@ -362,8 +362,8 @@ let webApp =
getf "/api/nextfile/%s/%s" nextFileEndpoint
getf "/api/previousfile/%s/%s" previousFileEndpoint
getf "/api/usertags/%s" userTagsEndPoint
postf "/api/volumeup/%s" volumeUpEndpoint
postf "/api/volumedown/%s" volumeDownEndpoint
getf "/api/volumeup/%s" volumeUpEndpoint
getf "/api/volumedown/%s" volumeDownEndpoint
postf "/api/upload/%s" uploadEndpoint
getf "/api/history/%s" historyEndPoint
get "/api/startup" startupEndpoint
Expand Down

0 comments on commit 60f11a6

Please sign in to comment.