packages feed

diagrams-html5 1.3.0.7 → 1.4

raw patch · 4 files changed

+13/−10 lines, 4 filesdep ~diagrams-coredep ~diagrams-libdep ~lens

Dependency ranges changed: diagrams-core, diagrams-lib, lens

Files

CHANGELOG.md view
@@ -1,3 +1,9 @@+## [v1.4](https://github.com/diagrams/diagrams-html5/tree/v1.4) (2016-10-26)++- allow `lens-4.15`+- allow `diagrams-core-1.4`+- allow `diagrams-lib-1.4`+ ## [v1.3.0.7](https://github.com/diagrams/diagrams-html5/tree/v1.3.0.7) (2016-08-16)  - allow `optparse-applicative-0.13`
LICENSE view
@@ -1,11 +1,9 @@-Copyright (c) 2014 diagrams-canvas team:- +Copyright (c) 2014-2016 diagrams-html5 team:+   Daniel Bergey <bergey@alum.mit.edu>   Christopher Chalmers <c.chalmers@me.com>   Jeffrey Rosenbluth <jeffrey.rosenbluth@gmail.com>-  Ryan Yates <fryguybob@gmail.com>   Brent Yorgey <byorgey@cis.upenn.edu>-  Andy Gill <andygill@ku.edu>  All rights reserved. 
diagrams-html5.cabal view
@@ -1,5 +1,5 @@ Name:                diagrams-html5-Version:             1.3.0.7+Version:             1.4 Synopsis:            HTML5 canvas backend for diagrams drawing EDSL Description:         This package provides a modular backend for rendering                      diagrams created with the diagrams EDSL using an@@ -14,7 +14,7 @@ Category:            Graphics Build-type:          Simple Extra-source-files:  README.md, CHANGELOG.md-Tested-with:         GHC == 7.8.4, GHC == 7.10.1, GHC == 8.0.1+Tested-with:         GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1 Cabal-version:       >=1.10 Source-repository head   type:     git@@ -27,11 +27,11 @@   Build-depends:       base >= 4.7 && < 4.10,                        mtl >= 2.0 && < 3.0,                        NumInstances >= 1.0 && < 1.5,-                       diagrams-core >= 1.3 && < 1.4,-                       diagrams-lib >= 1.3 && < 1.4,+                       diagrams-core >= 1.3 && < 1.5,+                       diagrams-lib >= 1.3 && < 1.5,                        cmdargs >= 0.6 && < 0.11,                        static-canvas >= 0.2 && < 0.3,-                       lens >= 4.0 && < 4.15,+                       lens >= 4.0 && < 4.16,                        containers >= 0.3 && < 0.6,                        text >= 1.0 && < 1.3,                        data-default-class >= 0.0.1 && < 0.2,
src/Diagrams/Backend/Html5.hs view
@@ -320,7 +320,6 @@ showFontJS wgt slant sz fnt = T.concat [a, " ", b, " ", c, " ", d]   where     a = case wgt of-          FontWeightNormal -> ""           FontWeightBold   -> "bold"           _                -> ""     b = case slant of