diagrams-svg 0.8.0.1 → 0.8.0.2
raw patch · 4 files changed
+12/−13 lines, 4 files
Files
- CHANGES.markdown +5/−0
- README.md +3/−12
- diagrams-svg.cabal +1/−1
- src/Diagrams/Backend/SVG.hs +3/−0
CHANGES.markdown view
@@ -1,3 +1,8 @@+0.8.0.2 (26 October 2013)+-------------------------++ - Documentation improvements+ 0.8.0.1: 11 September 2013 --------------------------
README.md view
@@ -7,12 +7,10 @@ [diagrams]: http://projects.haskell.org/diagrams/ [haskell]: http://www.haskell.org/haskellwiki/Haskell -_diagrams-svg_ is a work in progress, and some features are not implemented-yet. However, it is functional enough that [hs-logo] uses it. Check out the -[issues page][issues] to get an idea of the features that are missing.+_diagrams-svg_ is the default out-of-the box backend that comes with+the diagrams framework, and supports most features defined in [diagrams-lib]. -[issues]: https://github.com/diagrams/diagrams-svg/issues-[hs-logo]: http://github.com/deepakjois/hs-logo+[diagrams-lib]: http://hackage.haskell.org/package/diagrams%2Dlib # Installation @@ -77,10 +75,3 @@ </g> </svg> ```--## Other Backends for Diagrams--* [diagrams-cairo](http://github.com/diagrams/diagrams-cairo)-* [diagrams-postscript](https://github.com/fryguybob/diagrams-postscript)-* [diagrams-canvas](https://github.com/byorgey/diagrams-canvas/)-
diagrams-svg.cabal view
@@ -1,5 +1,5 @@ Name: diagrams-svg-Version: 0.8.0.1+Version: 0.8.0.2 Synopsis: SVG backend for diagrams drawing EDSL. Homepage: http://projects.haskell.org/diagrams/ License: BSD3
src/Diagrams/Backend/SVG.hs view
@@ -44,6 +44,9 @@ -- -- > data Options SVG R2 = SVGOptions -- > { size :: SizeSpec2D -- ^ The requested size.+-- > , svgDefinitions :: Maybe S.Svg+-- > -- ^ Custom definitions that will be added to the @defs@ +-- > -- section of the output. -- > } -- -- @