packages feed

patat 0.3.0.0 → 0.3.1.0

raw patch · 3 files changed

+5/−1 lines, 3 files

Files

CHANGELOG.md view
@@ -1,5 +1,8 @@ # Changelog +- 0.3.1.0 (2016-10-18)+    * Fix compilation with `lts-6.22`.+ - 0.3.0.0 (2016-10-17)     * Add syntax highlighting support.     * Fixed slide clipping after reload.
patat.cabal view
@@ -1,5 +1,5 @@ Name:                patat-Version:             0.3.0.0+Version:             0.3.1.0 Synopsis:            Terminal-based presentations using Pandoc Description:         Terminal-based presentations using Pandoc License:             GPL-2
src/Patat/Theme.hs view
@@ -255,6 +255,7 @@     unCapitalize (x : xs) = toLower x : xs     unCapitalize xs       = xs +    dropTok :: String -> String     dropTok str         | "Tok" `isSuffixOf` str = take (length str - 3) str         | otherwise              = str