packages feed

csound-expression-typed 0.0.9.2 → 0.0.9.3

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Csound.Typed.Types.Prim: infix 4 `greaterThanEquals`
- Csound.Typed.Control: listenOsc :: forall a. Tuple a => OscRef -> OscAddress -> OscType -> Evt a
+ Csound.Typed.Control: listenOsc :: Tuple a => OscRef -> OscAddress -> OscType -> Evt a
- Csound.Typed.Control: sendOsc :: forall a. Tuple a => OscHost -> OscPort -> OscAddress -> OscType -> Evt a -> SE ()
+ Csound.Typed.Control: sendOsc :: Tuple a => OscHost -> OscPort -> OscAddress -> OscType -> Evt a -> SE ()
- Csound.Typed.Control: trigByNameMidi_ :: forall a. Arg a => String -> ((D, D, a) -> SE ()) -> SE ()
+ Csound.Typed.Control: trigByNameMidi_ :: Arg a => String -> ((D, D, a) -> SE ()) -> SE ()

Files

csound-expression-typed.cabal view
@@ -1,5 +1,5 @@ Name:          csound-expression-typed-Version:       0.0.9.2+Version:       0.0.9.3 Cabal-Version: >= 1.22 License:       BSD3 License-file:  LICENSE
src/Csound/Typed/Types/Prim.hs view
@@ -381,13 +381,13 @@     fromGE = BoolSig      toGE x = case x of         BoolSig a -> a-        PrimBoolSig b -> return $ if b then 1 else 0+        PrimBoolSig b -> return $ if b then true else false  instance Val BoolD   where      fromGE = BoolD     toGE x = case x of         BoolD a -> a-        PrimBoolD b -> return $ if b then 1 else 0   +        PrimBoolD b -> return $ if b then true else false   class (IsPrim a, RealFrac (PrimOf a), Val a) => SigOrD a where