epub-tools 2.6 → 2.7
raw patch · 4 files changed
+12/−3 lines, 4 files
Files
- README.md +1/−2
- changelog.md +5/−0
- epub-tools.cabal +1/−1
- src/EpubTools/epubname.hs +5/−0
README.md view
@@ -70,9 +70,8 @@ ## Getting source - Download the cabalized source package [from Hackage](http://hackage.haskell.org/package/epub-tools)-- Download the cabalized source tarball [from here](http://ui3.info/d/proj/epub-tools/epub-tools-2.5.tar.gz) - epub-tools is available for Arch Linux [from the AUR](http://aur.archlinux.org/packages/epub-tools/)-- Download [binaries for Windows](http://ui3.info/d/proj/epub-tools/epub-tools-2.5-win.zip)+- Download [binaries for Windows](http://ui3.info/d/proj/epub-tools/epub-tools-2.7-win.zip) - Get the source with darcs: `$ darcs get http://hub.darcs.net/dino/epub-tools` - If you're just looking, [browse the source](http://hub.darcs.net/dino/epub-tools)
changelog.md view
@@ -1,3 +1,8 @@+2.7 (2015-05-29)++ * Added back Control.Applicative import for GHC 7.8 compatibility++ 2.6 (2015-05-25) * Fixed an error in bad DSL command index reporting
epub-tools.cabal view
@@ -1,6 +1,6 @@ name: epub-tools cabal-version: >= 1.8-version: 2.6+version: 2.7 build-type: Simple license: BSD3 license-file: LICENSE
src/EpubTools/epubname.hs view
@@ -1,11 +1,16 @@ -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info> +-- This is for GHC 7.8/7.10 compatibility with the+-- Control.Applicative import below+{-# OPTIONS_GHC -fno-warn-unused-imports #-}+ {-# LANGUAGE FlexibleContexts #-} import Codec.Epub import Codec.Epub.Data.Metadata import Codec.Epub.Data.Package+import Control.Applicative import Control.Monad import Control.Monad.Except import System.Directory ( doesDirectoryExist, doesFileExist, renameFile )