This repository was archived by the owner on Jun 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# TidalCycles log of changes
2
2
3
+ ## 1.1.2 - Eccy Road
4
+
5
+ * Usability fix for ` binary ` / ` binaryN ` (use squeezeJoin on input pattern)
6
+
3
7
## 1.1.1 - Chelsea Park
4
8
5
- * Useability fixes for ` binary ` / ` binaryN ` / ` ascii ` @yaxu
9
+ * Usability fixes for ` binary ` / ` binaryN ` / ` ascii ` @yaxu
6
10
7
11
## 1.1.0 - Brincliffe Edge
8
12
Original file line number Diff line number Diff line change @@ -1840,7 +1840,7 @@ _binary :: Data.Bits.Bits b => Int -> b -> Pattern Bool
1840
1840
_binary n num = listToPat $ __binary n num
1841
1841
1842
1842
binaryN :: Int -> Pattern Int -> Pattern Bool
1843
- binaryN n p = innerJoin $ _binary n <$> p
1843
+ binaryN n p = squeezeJoin $ _binary n <$> p
1844
1844
1845
1845
binary :: Pattern Int -> Pattern Bool
1846
1846
binary = binaryN 8
Original file line number Diff line number Diff line change 1
1
module Sound.Tidal.Version where
2
2
3
3
tidal_version :: String
4
- tidal_version = " 1.1.1 "
4
+ tidal_version = " 1.1.2 "
Original file line number Diff line number Diff line change 1
1
name : tidal
2
- version : 1.1.1
2
+ version : 1.1.2
3
3
synopsis : Pattern language for improvised music
4
4
-- description:
5
5
homepage : http://tidalcycles.org/
You can’t perform that action at this time.
0 commit comments