···1414- Dark mode for the about page
1515- Enforces usage of a secure context (HTTPS, localhost, etc)
1616- Fixes audio preloading on non-Safari browsers on Apple devices
1717+- Fixes issue with non-default AWS regions (now uses region in the url as well)
1718- Fixes issue with shuffle algorithm
1819- Fixes issue with WebDAV
1920- Fixes playback issues (eg. clicking same track multiple times)
+6-1
src/Library/Sources/Services/AmazonS3/Presign.elm
···5656 |> String.chopEnd "/"
57575858 Nothing ->
5959- bucketName ++ ".s3.amazonaws.com"
5959+ case String.trim region of
6060+ "" ->
6161+ bucketName ++ ".s3.amazonaws.com"
6262+6363+ r ->
6464+ bucketName ++ ".s3." ++ r ++ ".amazonaws.com"
60656166 protocol =
6267 if String.contains "http://" (Maybe.withDefault "" customHost) then