···33## 2.3.0
4455- Adds ability to download a playlist as a zip file
66+- Fixes dark styles for add-to-playlist overlay
67- No longer scrolls track list to the top when moving things in a playlist or when processing tracks
7889## 2.2.3
···11-module String.Ext exposing (addSuffix, chopEnd, chopStart)
11+module String.Ext exposing (..)
2233{-| Flipped version of `append`.
44-}
···66-- 🔱
778899+{-| Flipped version of `append`.
1010+-}
911addSuffix : String -> String -> String
1012addSuffix a b =
1113 String.append b a
···35373638 else
3739 str
4040+4141+4242+{-| Join a list of Strings with a space in between.
4343+-}
4444+joinWithSpace : List String -> String
4545+joinWithSpace =
4646+ String.join " "