packages feed

dobutokO2 0.22.0.0 → 0.22.1.0

raw patch · 5 files changed

+9/−5 lines, 5 files

Files

CHANGELOG.md view
@@ -203,3 +203,7 @@ an additional vector of Double values for the overtones. Changed the names of the functions and documentation from 'ober' ('Ober') to English 'over' ('Over'). Fixed issue with 'partialTest_k' function for being not generated overtones files for the indices that can be without a remainder divided by 50. Some code and documentation improvements.++## 0.22.1.0 -- 2020-04-02++* Twenty-second version revised A. Fixed issues with being not compiled because of the syntaxis issues.
DobutokO/Sound/Executable.hs view
@@ -121,11 +121,11 @@ {-# INLINE dobutokO2H61 #-}  dobutokO2H8 :: Bool -> String -> FilePath -> IO ()-dobutokO2H8 _ _ _ = void dobutokO2H8G+dobutokO2H8 exist2 args file = void (dobutokO2H8G exist2 args file) {-# INLINE dobutokO2H8 #-}  dobutokO2H80 :: Bool -> String -> FilePath -> IO ()-dobutokO2H80 _ _ _ = dobutokO2H8G >>= \case+dobutokO2H80 exist2 args file = dobutokO2H8G exist2 args file  >>= \case     (ExitSuccess, path8v) -> mapM_ removeFile path8v     _           -> return () {-# INLINE dobutokO2H80 #-}
DobutokO/Sound/Functional.hs view
@@ -84,7 +84,7 @@ import System.Exit (ExitCode( ExitSuccess )) import Numeric import Data.List (isPrefixOf,sort,sortBy,nubBy)-import Data.Maybe (isNothing,fromJust,fromMaybe,maybe)+import Data.Maybe (isNothing,fromJust,isJust,fromMaybe,maybe) import qualified Data.Vector as V import System.Process import EndOfExe
README.markdown view
@@ -164,7 +164,7 @@ played simultaneously with their overtones. For more information, please, refer to the documentation for the DobutokO.Sound.Functional module. -Since the 0.22.0.0 version the library functions are extended also with the+Since the 0.22.1.0 version the library functions are extended also with the possibility to adjust volume for the overtones using generalized functions '1G' with adjustment being represented in dB. For more information, please, refer to the documentation for the DobutokO.Sound.Functional module.
dobutokO2.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                dobutokO2-version:             0.22.0.0+version:             0.22.1.0 synopsis:            A program and a library to create experimental music from a mono audio and a Ukrainian text description:         It can also create a timbre for the notes. Uses SoX inside. homepage:            https://hackage.haskell.org/package/dobutokO2