You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@
32
32
33
33
### New
34
34
* Completely new MIDI subsystem.
35
-
*`use/with_random_stream` - change the current random stream used when selecting random values. We now have `:white`, `:light_pink`, `:pink`, `:dark_pink` and `:perlin`. Default is `:white` which is the same stream as previous releases to preserve compatibility.
35
+
*`use/with_random_source` - change the current random stream used when selecting random values. We now have `:white`, `:light_pink`, `:pink`, `:dark_pink` and `:perlin`. Default is `:white` which is the same stream as previous releases to preserve compatibility.
36
36
* Many Turkish scales (makams) have been added.
37
37
* New user config directory for fine tuning aspects of the app such as advanced audio settings. See `~/.sonic-pi/config/README.md` for more information.
raiseArgumentError,"use_random_stream does not work with a block. Perhaps you meant with_random_stream"ifblock
3423
+
defuse_random_source(noise_type, &block)
3424
+
raiseArgumentError,"use_random_source does not work with a block. Perhaps you meant with_random_stream"ifblock
3425
3425
raiseArgumentError,"invalid noise type '#{noise_type}' - please use one of :white, :pink, :light_pink, :dark_pink or :perlin instead"unless%w(whitepinklight_pinkdark_pinkperlin).include?(noise_type.to_s)
raiseArgumentError,"with_random_stream requires a block. Perhaps you meant use_random_stream"unlessblock
3485
+
raiseArgumentError,"with_random_stream requires a block. Perhaps you meant use_random_source"unlessblock
3486
3486
raiseArgumentError,"invalid noise type '#{noise_type}' - please use one of :white, :pink, :light_pink, :dark_pink or :perlin instead"unless%w(whitepinklight_pinkdark_pinkperlin).include?(noise_type.to_s)
0 commit comments