packages feed

keera-posture 0.1.3 → 0.1.4

raw patch · 2 files changed

+12/−16 lines, 2 files

Files

keera-posture.cabal view
@@ -6,7 +6,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version:             0.1.3+Version:             0.1.4  -- A short (one-line) description of the package. Synopsis:            Get notifications when your sitting posture is inappropriate.@@ -15,7 +15,7 @@ Description:         A program that notifies when you sit in a straining position.  -- URL for the project homepage or repository.-Homepage:            http://keera.es/projects/keera-posture+Homepage:            http://keera.co.uk/projects/keera-posture  -- The license under which the package is released. License:             OtherLicense@@ -28,13 +28,13 @@  -- An email address to which users can send suggestions, bug reports, -- and patches.-Maintainer:          ivan.perez@keera.es+Maintainer:          support@keera.co.uk  -- A copyright notice. -- Copyright:            --- Stability of the pakcage (experimental, provisional, stable...)-Stability:           Experimental+-- Stability of the package (experimental, provisional, stable...)+-- Stability:           Experimental  Category:            AI @@ -144,10 +144,6 @@                    keera-hails-mvc-solutions-config,                    keera-hails-reactivevalues   -  if os(windows)-   extra-lib-dirs: D:\libraries\openssl-0.9.8h-1-lib\lib-   include-dirs: D:\libraries\openssl-0.9.8h-1-lib\include-   -- Modules not exported by this package.   Other-modules: Audio,                  Controller.Conditions,
src/Controller.hs view
@@ -40,8 +40,8 @@       let can = canStdErr || canStdOut           hdl = if canStdErr then stderr else stdout       when can $ mapM_ (hPutStrLn hdl)-        [ "Keera Posture v0.1.3"-        , "Copyright (C) 2010-2014 Ivan Perez Dominguez and Keera Studios Ltd (UK)"+        [ "Keera Posture v0.1.4"+        , "Copyright (C) 2010-2015 Ivan Perez Dominguez and Keera Studios Ltd (UK)"         , __ "Licence: All rights reserved"         , __ "This software includes modified and unmodified versions of"         , __ "free and open source software. Read the copyright licence,"@@ -75,7 +75,7 @@  reportSevereError :: IO () reportSevereError = reportSeverelyError $- __ "Keera Posture crashed. Please, contact support@keera.es."+ __ "Keera Posture crashed. Please, contact support@keera.co.uk."  reportSeverelyError :: String -> IO() reportSeverelyError s = do@@ -97,8 +97,8 @@           &= help "Shows the licence and exits"           }          &= program "keera-posture"-         &= summary "Keera Posture 0.1.3 (c) 2010-2014 Ivan Perez - Keera Studios"-         &= details [ __ "Report bugs to ivan.perez@keera.es"-                    , __ "Find more about Keera Posture at http://keera.es"-                    , __ "and http://github.com/ivanperez-keera/keera-posture"+         &= summary "Keera Posture 0.1.4 (c) 2010-2015 Ivan Perez - Keera Studios"+         &= details [ __ "Report bugs to support@keera.co.uk"+                    , __ "Find more about Keera Posture at http://keera.co.uk"+                    , __ "and http://github.com/keera-studios/keera-posture"                     ]