packages feed

hsc3-unsafe 0.13 → 0.14

raw patch · 2 files changed

+10/−3 lines, 2 filesdep ~hsc3PVP ok

version bump matches the API change (PVP)

Dependency ranges changed: hsc3

API changes (from Hackage documentation)

Files

Sound/SC3/UGen/Noise/Unsafe.hs view
@@ -87,6 +87,10 @@ pinkNoise = liftP N.pinkNoise  -- | Random value in uniform distribution.+--+-- > import Sound.SC3.UGen.Unsafe+-- > import Sound.SC3.UGen.Dot+-- > draw (rand 0 1 + rand 0 1) rand :: UGen -> UGen -> UGen rand = liftP2 N.rand @@ -107,5 +111,8 @@ tWindex = liftP3 N.tWindex  -- | White noise.+--+-- > import Sound.SC3.UGen+-- > draw (whiteNoise AR + whiteNoise AR) whiteNoise :: Rate -> UGen whiteNoise = liftP N.whiteNoise
hsc3-unsafe.cabal view
@@ -1,10 +1,10 @@ Name:              hsc3-unsafe-Version:           0.13+Version:           0.14 Synopsis:          Unsafe Haskell SuperCollider Description:       Alternate non-deterministic UGen constructors. License:           GPL Category:          Sound-Copyright:         (c) Rohan Drape, 2006-2012+Copyright:         (c) Rohan Drape, 2006-2013 Author:            Rohan Drape Maintainer:        rd@slavepianos.org Stability:         Experimental@@ -17,7 +17,7 @@  Library   Build-Depends:   base == 4.*,-                   hsc3 == 0.13.*+                   hsc3 == 0.14.*   GHC-Options:     -Wall -fwarn-tabs   Exposed-modules: Sound.SC3.UGen.Demand.Unsafe                    Sound.SC3.UGen.FFT.Unsafe