rasterific-svg 0.2.2 → 0.2.2.1
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Graphics.Rasterific.Svg: [_drawAction] :: DrawResult -> Drawing PixelRGBA8 ()
- Graphics.Rasterific.Svg: [_drawHeight] :: DrawResult -> {-# UNPACK #-} !Int
- Graphics.Rasterific.Svg: [_drawWidth] :: DrawResult -> {-# UNPACK #-} !Int
- Graphics.Rasterific.Svg: [_loadedFonts] :: LoadedElements -> Map FilePath Font
- Graphics.Rasterific.Svg: [_loadedImages] :: LoadedElements -> Map FilePath (Image PixelRGBA8)
- Graphics.Rasterific.Svg: instance GHC.Classes.Eq Graphics.Rasterific.Svg.Result
- Graphics.Rasterific.Svg: instance GHC.Show.Show Graphics.Rasterific.Svg.Result
+ Graphics.Rasterific.Svg: _drawAction :: DrawResult -> Drawing PixelRGBA8 ()
+ Graphics.Rasterific.Svg: _drawHeight :: DrawResult -> {-# UNPACK #-} !Int
+ Graphics.Rasterific.Svg: _drawWidth :: DrawResult -> {-# UNPACK #-} !Int
+ Graphics.Rasterific.Svg: _loadedFonts :: LoadedElements -> Map FilePath Font
+ Graphics.Rasterific.Svg: _loadedImages :: LoadedElements -> Map FilePath (Image PixelRGBA8)
+ Graphics.Rasterific.Svg: instance Eq Result
+ Graphics.Rasterific.Svg: instance Show Result
Files
changelog view
@@ -1,5 +1,8 @@ -*-change-log-*- +v0.2.2.1+ * Fix: GHC < 7.10 compilation+ v0.2.2 * Fix: lens upper bound, and removing it.
rasterific-svg.cabal view
@@ -1,7 +1,7 @@ -- Initial svg.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: rasterific-svg-version: 0.2.2+version: 0.2.2.1 synopsis: SVG renderer based on Rasterific. description: SVG renderer that will let you render svg-tree parsed SVG file to a JuicyPixel image or Rasterific Drawing.@@ -22,7 +22,7 @@ Source-Repository this Type: git Location: git://github.com/Twinside/rasterific-svg.git- Tag: v0.2.2+ Tag: v0.2.2.1 library hs-source-dirs: src
src/Graphics/Rasterific/Svg/PathConverter.hs view
@@ -5,6 +5,7 @@ ) where #if !MIN_VERSION_base(4,8,0)+import Data.Monoid( mconcat ) import Control.Applicative( pure, (<$>) ) #endif