packages feed

mmsyn6ukr-array 0.2.0.0 → 0.2.1.0

raw patch · 3 files changed

+15/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -6,6 +6,14 @@  ## 0.1.1.0 -- 2020-12-18 -* First version revised A. Fixed issue with wrongly transformed "з" sound (inherited from the +* First version revised A. Fixed issue with wrongly transformed "з" sound (inherited from the mmsyn2-array-0.1.0.1 package) by updating to the mmsyn2-array-0.1.1.0 package version dependency. +## 0.2.0.0 -- 2020-12-18++* Second version. Added the possibility to read the Ukrainian text from the file and to read multiline texts. For this,+changed the types of the some functions and their behaviour respectively. Some documentation improvements.++## 0.2.1.0 -- 2020-12-18++* Second version revised A. Fixed issue with incorrectly defined arguments in Main.hs.
Main.hs view
@@ -38,6 +38,9 @@ -- The best comression ratio is with the .ogg files, but they lose some quality so be careful if you need it. main :: IO () main = do-  [zs,ts,file] <- fmap (take 3) getArgs-  let onepass = if ts == "+O" then True else False+  args <- getArgs+  let zs = concat . take 1 $ args+      ts = concat . drop 1 . take 2 $ args+      file = concat . drop 2 . take 3 $ args+      onepass = if ts == "+O" then True else False   circle zs onepass file
mmsyn6ukr-array.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                mmsyn6ukr-array-version:             0.2.0.0+version:             0.2.1.0 synopsis:            A musical instrument synthesizer or a tool for Ukrainian language listening description:         A program can be used as a musical instrument synthesizer or for Ukrainian speech synthesis especially for poets and writers. Uses arrays and .ul RAW sound file formats and SoX inside. Since the 0.2.0.0 version it supports reading from the file and multiline input. homepage:            https://hackage.haskell.org/package/mmsyn6ukr