packages feed

Villefort 0.1.1.15 → 0.1.2.1

raw patch · 4 files changed

+4/−8 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Main.hs view
@@ -4,8 +4,4 @@ import Villefort.Definitions  main :: IO ()-main = villefort def {-  port = 3000,-  noCustom = True,-  database = "/home/chris/.cabal/share/x86_64-linux-ghc-7.10.3/Villefort-0.1.1.14/data/todo.db"-                     }+main = villefort def 
README.md view
@@ -1,7 +1,7 @@ # Villefort
 Villefort is a time managment system written in Haskell.
 
-## Version 1.1.15
+## Version 1.2.1
 - generally cleaned up code base
 - made daily into the IO monad so it matches the weekly tasks
 
Villefort.cabal view
@@ -1,5 +1,5 @@ name:                Villefort-version:             0.1.1.15+version:             0.1.2.1 synopsis: Villefort is a task manager and time tracker written in haskell. description: Villefort is a browser based time tracker. homepage:            https://github.com/Chrisr850/Villefort#readme
src/Villefort/Server.hs view
@@ -167,7 +167,7 @@     ["--recompile"] -> putStrLn "recompiling" >> recompile     _ -> putStrLn "straight starting " >> do       if noCustom conf-        then launch conf+        then launch conf >> putStrLn "overload"         else checkCustomBuild >> launch conf  recompile :: IO ()