----------------------------------------------------------------------------- -- | -- Module : Windll -- Copyright : (c) Tamar Christina 2009 - 2010 -- License : BSD3 -- -- Maintainer : tamar@zhox.com -- Stability : experimental -- Portability : portable -- -- This module contains versioning information about the main tool. -- ----------------------------------------------------------------------------- module WinDll.Version.Hs2lib where import Data.List ( intercalate ) import Data.Char ( toUpper ) -- | Version Number verNum :: [Int] verNum = [0,5,0] -- | Version string verStr :: String verStr = (intercalate "." . map show) verNum -- | Product version version :: String version = verStr ++ " ~Experimental~" -- | Version message including product name versionmsg :: String versionmsg = exename ++ " Build version " ++ version ++ "\n(c) Tamar Christina . 2009 - 2011." -- | Product name exename :: String exename = "Hs2lib" -- | Product name converted to uppercase upper_name :: String upper_name = map toUpper exename