packages feed

webify 0.1.8.0 → 0.1.9.0

raw patch · 2 files changed

+7/−7 lines, 2 filesdep ~basedep ~hopfli

Dependency ranges changed: base, hopfli

Files

src/TTF.hs view
@@ -468,7 +468,7 @@  parseGlyfs :: Int -> [Int] -> Map String TableDirectory -> B.ByteString -> [Glyf] parseGlyfs glyphCount offsets tds font =-  zipWith getGlyph (take glyphCount offsets) $ diff offsets+  zipWith getGlyph (Data.List.take glyphCount offsets) $ diff offsets   where tableStart = fromIntegral . tDOffset $ tds ! "glyf"         getGlyph _ 0 = EmptyGlyf         getGlyph offset _len =
webify.cabal view
@@ -1,5 +1,5 @@ name:                webify-version:             0.1.8.0+version:             0.1.9.0 synopsis:            webfont generator description:         A command line tool to convert ttf file to woff, eot & svg files@@ -7,12 +7,12 @@ homepage:            http://github.com/ananthakumaran/webify license:             MIT license-file:        LICENSE-author:              Anantha Kumaran <ananthakumaran@gmail.com>+author:              Anantha Kumaran maintainer:          Sarah Brofeldt <sbrofeldt@gmail.com>-copyright:           (c) 2013-2017 Anantha Kumaran+copyright:           (c) 2013 Anantha Kumaran category:            Web build-type:          Simple-tested-with:         GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2+tested-with:         GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2 cabal-version:       >=1.8  Flag debug@@ -26,7 +26,7 @@   if flag(debug)     ghc-prof-options: -prof, -fprof-auto -  build-depends:       base >=4.6 && <5,+  build-depends:       base >=4.8 && <5,                        containers >= 0.4.2.1,                        bytestring >= 0.9,                        blaze-builder >= 0.3.3.4,@@ -38,7 +38,7 @@                        xmlgen >= 0.6.2.1,                        optparse-applicative >= 0.10.0 && <0.15,                        vector >= 0.10.0,-                       hopfli >= 0.1.0.0+                       hopfli >= 0.1.0.0 && < 0.3  source-repository head   type:     git