animascii 0.1.0.0 → 0.1.1.0
raw patch · 5 files changed
+28/−11 lines, 5 files
Files
- README +10/−5
- animascii.cabal +5/−4
- changes.txt +9/−1
- src/Display.hs +1/−1
- src/Export/Gif.hs +3/−0
README view
@@ -2,20 +2,25 @@ animascii ========= -animasci is textfile-based animator, more info at:+animasci is textfile-based animator, more info and binaries at: http://www.ariis.it/static/articles/animascii/page.html or in the doc/ folder. -Installation-------------+Compiling+--------- -This package uses a custom setup, once you run:+This package uses a custom setup, so my suggestion is to fetch it+first with: + cabal get animascii++And then `cd` into the directory. Once you run:+ cabal new-build -you will find a binary and all the needed files in:+and you will find a binary and all the needed files in: bin-animascii/
animascii.cabal view
@@ -1,14 +1,15 @@ name: animascii-version: 0.1.0.0+version: 0.1.1.0 synopsis: text-file based ASCII animator-description: Make sure to read the README before installing!+description: Text-file based ASCII animator. Make sure to check the+ README before installing! license: GPL-3 license-file: LICENSE author: Francesco Ariis maintainer: fa-ml@ariis.it copyright: © 2018 Francesco Ariis-homepage: http://127.0.0.1:8000/static/articles/animascii/page.html-category: Game+homepage: http://www.ariis.it/static/articles/animascii/page.html+category: Application build-type: Custom extra-source-files: changes.txt, README
changes.txt view
@@ -1,5 +1,13 @@+0.1.1.0+-------++- Added ' bug report.+- Longer message time.+- Improved documentation.+- Released on Fri 16 Mar 2018 06:48:19 CET.+ 0.1.0.0 ------- - First release.-- Released on+- Released on Fri 16 Mar 2018 02:08:57 CET.
src/Display.hs view
@@ -136,7 +136,7 @@ rq = smResults s ms = smDispRes s - mtim s = creaTimer (Just s) Nothing 200+ mtim s = creaTimer (Just s) Nothing 300 -- xxx error on textbox shorter than it should be
src/Export/Gif.hs view
@@ -15,6 +15,9 @@ import qualified System.Process.Internals as SPI import qualified Data.Foldable as F +-- todo [bug] [arch] if you use bash instead of dash as sh, writeGif+-- is broken (reported by qn 16mar). Apparently caused by folders+-- with '. writeGif :: Integer -> FilePath -> (Colour, Colour) -> Animation -> IO (Maybe ExpExc)