packages feed

tkhs 0.2.3 → 0.2.4

raw patch · 5 files changed

+7/−10 lines, 5 filesdep ~vty

Dependency ranges changed: vty

Files

src/Main.hs view
@@ -5,7 +5,6 @@  import System.Environment import System.IO.UTF8 as U-import Data.Char import qualified Zipper import Data.Maybe 
src/Parser.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -fglasgow-exts -XNoMonomorphismRestriction #-}+{-# LANGUAGE NoMonomorphismRestriction #-}  module Parser (parseSlides) where 
src/Tkhs.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -fglasgow-exts #-}+{-# LANGUAGE GeneralizedNewtypeDeriving #-}  module Tkhs ( -- * P Monad (Presentation with Vty)
src/Vty.hs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -fglasgow-exts #-}+{-# LANGUAGE GeneralizedNewtypeDeriving #-}  module Vty ( -- * V Monad (Vty actions wrapper)
tkhs.cabal view
@@ -1,5 +1,5 @@ name:                tkhs-version:             0.2.3+version:             0.2.4 synopsis:            Simple Presentation Utility description:         If you want to give your presentation in a terminal,                      or if PowerPoint would be overkill, you may find tkhs useful.@@ -20,12 +20,11 @@  Executable tkhs   hs-source-dirs:    src-  executable:        tkhs   main-is:           Main.hs   ghc-options:       -Wall   build-depends:     base == 4.*                    , mtl-                   , vty == 4.2.1.*+                   , vty == 4.6.*                    , parsec == 2.*                    , pretty                    , utf8-string@@ -40,7 +39,6 @@   hs-source-dirs:    src, test   other-modules:   main-is:           Test.hs-  ghc-options:       -fglasgow-exts   if !flag(test)     buildable:         False   else@@ -50,5 +48,5 @@   Source-repository head-  type:              darcs-  location:          http://patch-tag.com/r/nonowarn/tkhs/pullrepo+  type:              git+  location:          git://github.com/nonowarn/tkhs.git