packages feed

fuzzytime 0.7.6 → 0.7.7

raw patch · 6 files changed

+11/−8 lines, 6 filesdep +directorydep −haskell98

Dependencies added: directory

Dependencies removed: haskell98

Files

CHANGELOG view
@@ -6,6 +6,9 @@ 	read default language from $LANG (hFlush!) 	daemon? +0.7.7	2011.03.03+	deps update (no more haskell98)+ 0.7.6	2011.12.30 	added Japanese (Jens Petersen) 
INSTALL view
@@ -1,4 +1,4 @@-fuzzytime 0.7.6 (2011.12.30)+fuzzytime 0.7.7 (2012.03.03) A clock and timer that tell the time in a more human way (the 'ten past six'-style)  
README view
@@ -15,7 +15,7 @@  ### --help A clock and timer that tell the time in a more human way.-v0.7.6, 2011.12.30, *antispam*, GPL3++v0.7.7, 2012.03.03, *antispam*, GPL3+  fuzzytime [COMMAND] ... [OPTIONS] 
fuzzytime.cabal view
@@ -1,5 +1,5 @@ name:                fuzzytime-version:             0.7.6+version:             0.7.7 description:         A clock and timer that tell the time in a more human way (the 'ten past six' style) synopsis:            A 'ten past six' style clock category:            Utils@@ -36,10 +36,10 @@ executable fuzzytime     buildable:       True     main-is:         fuzzytime.hs-    build-depends:   base >= 4 && < 5, cmdargs, haskell98, old-time, process+    build-depends:   base >= 4 && < 5, cmdargs, directory, old-time, process     hs-source-dirs:  src  source-repository this     type:            git     location:        https://github.com/caminoix/fuzzytime-    tag:             0.7.6+    tag:             0.7.7
src/fuzzytime.1 view
@@ -1,4 +1,4 @@-.TH fuzzytime 1 "December 30, 2011" "version 0.7.6" "A fuzzy clock and timer"+.TH fuzzytime 1 "March 3, 2012" "version 0.7.7" "A fuzzy clock and timer"  .\" ------------------------------------------------------------------------------------- 
src/fuzzytime.hs view
@@ -41,9 +41,9 @@ import Control.Monad (when) import Data.Char (isDigit) import Data.List (intercalate)-import Directory (removeFile) import System.Cmd (system) import System.Console.CmdArgs+import System.Directory (removeFile) import System.Environment (getEnv) import System.Exit (ExitCode (ExitFailure), exitFailure) import System.Time (getClockTime)@@ -183,7 +183,7 @@  -- | \[config] Help message for summary confHelpSummary :: String-confHelpSummary = "A clock and timer that tell the time in a more human way.\nv0.7.6, 2011.12.30, kamil.stachowski@gmail.com, GPL3+"+confHelpSummary = "A clock and timer that tell the time in a more human way.\nv0.7.7, 2012.03.03, kamil.stachowski@gmail.com, GPL3+"   -- check --------------------------------------------------------------------------------------------------------------------------------------------------------------------------