tidal 1.5.1 → 1.5.2
raw patch · 4 files changed
+9/−4 lines, 4 files
Files
- CHANGELOG.md +3/−0
- src/Sound/Tidal/Stream.hs +4/−2
- src/Sound/Tidal/Version.hs +1/−1
- tidal.cabal +1/−1
CHANGELOG.md view
@@ -1,5 +1,8 @@ # TidalCycles log of changes +## 1.5.2 - Rivelin+ * Fix streamAll+ ## 1.5.1 - Blacka Moor * Bugfix splice
src/Sound/Tidal/Stream.hs view
@@ -284,13 +284,15 @@ do tempo <- takeMVar (sTempoMV stream) pMap <- readMVar (sPMapMV stream) sMap <- readMVar (sInput stream)+ sGlobalF <- readMVar (sGlobalFMV stream) -- putStrLn $ show st let config = sConfig stream cxs = sCxs stream cycleNow = T.timeToCycles tempo $ T.start st+ patstack = sGlobalF $ playStack pMap -- If a 'fake' tick, it'll be aligned with cycle zero- pat | fake = withResultTime (+ cycleNow) $ playStack pMap- | otherwise = playStack pMap+ pat | fake = withResultTime (+ cycleNow) patstack+ | otherwise = patstack frameEnd = snd $ T.nowTimespan st -- add cps to state sMap' = Map.insert "_cps" (pure $ VF $ T.cps tempo) sMap
src/Sound/Tidal/Version.hs view
@@ -1,4 +1,4 @@ module Sound.Tidal.Version where tidal_version :: String-tidal_version = "1.5.1"+tidal_version = "1.5.2"
tidal.cabal view
@@ -1,5 +1,5 @@ name: tidal-version: 1.5.1+version: 1.5.2 synopsis: Pattern language for improvised music -- description: homepage: http://tidalcycles.org/