Cabal revisions of blank-canvas-0.7.3
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-Name: blank-canvas-Version: 0.7.3-Synopsis: HTML5 Canvas Graphics Library--Description: @blank-canvas@ is a Haskell binding to the complete- <https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API HTML5 Canvas API>.- @blank-canvas@ allows Haskell users to write, in Haskell,- interactive images onto their web browsers. @blank-canvas@- gives the user a single full-window canvas, and provides- many well-documented functions for rendering- images.- .- @- {-# LANGUAGE OverloadedStrings #-}- module Main where- import Graphics.Blank -- import the blank canvas- .- main = blankCanvas 3000 $ \\ context -> do -- start blank canvas on port 3000-   send context $ do -- send commands to this specific context-     moveTo(50,50)-     lineTo(200,100)-     lineWidth 10-     strokeStyle \"red\"-     stroke() -- this draws the ink into the canvas- @- .- <<https://github.com/ku-fpg/blank-canvas/wiki/images/Red_Line.png>>- .- For more details, read the <https://github.com/ku-fpg/blank-canvas/wiki blank-canvas wiki>.- .-License: BSD3-License-file: LICENSE-Author: Andy Gill and Ryan Scott-Maintainer: andygill@ku.edu-Copyright: Copyright (c) 2014 The University of Kansas-Homepage: https://github.com/ku-fpg/blank-canvas/wiki-Bug-reports: https://github.com/ku-fpg/blank-canvas/issues-Category: Graphics-Build-type: Simple-Stability: Beta-Extra-source-files: README.md- Changelog.md-Cabal-version: >= 1.10-tested-with: GHC == 7.8.4- , GHC == 7.10.3- , GHC == 8.0.2- , GHC == 8.2.2- , GHC == 8.4.4- , GHC == 8.6.5- , GHC == 8.8.3- , GHC == 8.10.1-data-files:- static/index.html- static/jquery.js- static/jquery-json.js---Library- Exposed-modules: Graphics.Blank- Graphics.Blank.Cursor- Graphics.Blank.Font- Graphics.Blank.GHCi- Graphics.Blank.Style- other-modules: Graphics.Blank.Canvas- Graphics.Blank.DeviceContext- Graphics.Blank.Events- Graphics.Blank.Generated- Graphics.Blank.JavaScript- Graphics.Blank.Parser- Graphics.Blank.Types- Graphics.Blank.Types.CSS- Graphics.Blank.Types.Cursor- Graphics.Blank.Types.Font- Graphics.Blank.Utils- Paths_blank_canvas-- default-language: Haskell2010- build-depends: aeson >= 0.7 && < 1.6,- base64-bytestring >= 1.0 && < 1.3,- base >= 4.7 && < 4.15,- base-compat-batteries >= 0.10 && < 0.12,- bytestring == 0.10.*,- colour >= 2.2 && < 2.4,- containers >= 0.5 && < 0.7,- data-default-class >= 0.0.1 && < 0.2,- fail == 4.9.*,- http-types >= 0.8 && < 0.13,- mime-types >= 0.1.0.3 && < 0.2,- kansas-comet >= 0.4 && < 0.5,- scotty >= 0.10 && < 0.13,- semigroups >= 0.18 && < 1,- stm >= 2.2 && < 2.6,- text >= 1.1 && < 1.3,- text-show >= 2 && < 4,- transformers >= 0.3 && < 0.6,- wai == 3.*,- wai-extra >= 3.0.1 && < 3.2,- warp == 3.*,- vector >= 0.10 && < 0.13-- GHC-options: -Wall- GHC-prof-options: -Wall -fsimpl-tick-factor=100000--source-repository head- type: git- location: https://github.com/ku-fpg/blank-canvas.git+Name: blank-canvas +Version: 0.7.3 +x-revision: 1 +Synopsis: HTML5 Canvas Graphics Library + +Description: @blank-canvas@ is a Haskell binding to the complete + <https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API HTML5 Canvas API>. + @blank-canvas@ allows Haskell users to write, in Haskell, + interactive images onto their web browsers. @blank-canvas@ + gives the user a single full-window canvas, and provides + many well-documented functions for rendering + images. + . + @ + {-# LANGUAGE OverloadedStrings #-} + module Main where + import Graphics.Blank -- import the blank canvas + . + main = blankCanvas 3000 $ \\ context -> do -- start blank canvas on port 3000 +   send context $ do -- send commands to this specific context +     moveTo(50,50) +     lineTo(200,100) +     lineWidth 10 +     strokeStyle \"red\" +     stroke() -- this draws the ink into the canvas + @ + . + <<https://github.com/ku-fpg/blank-canvas/wiki/images/Red_Line.png>> + . + For more details, read the <https://github.com/ku-fpg/blank-canvas/wiki blank-canvas wiki>. + . +License: BSD3 +License-file: LICENSE +Author: Andy Gill and Ryan Scott +Maintainer: andygill@ku.edu +Copyright: Copyright (c) 2014 The University of Kansas +Homepage: https://github.com/ku-fpg/blank-canvas/wiki +Bug-reports: https://github.com/ku-fpg/blank-canvas/issues +Category: Graphics +Build-type: Simple +Stability: Beta +Extra-source-files: README.md + Changelog.md +Cabal-version: >= 1.10 +tested-with: GHC == 7.8.4 + , GHC == 7.10.3 + , GHC == 8.0.2 + , GHC == 8.2.2 + , GHC == 8.4.4 + , GHC == 8.6.5 + , GHC == 8.8.3 + , GHC == 8.10.1 +data-files: + static/index.html + static/jquery.js + static/jquery-json.js + + +Library + Exposed-modules: Graphics.Blank + Graphics.Blank.Cursor + Graphics.Blank.Font + Graphics.Blank.GHCi + Graphics.Blank.Style + other-modules: Graphics.Blank.Canvas + Graphics.Blank.DeviceContext + Graphics.Blank.Events + Graphics.Blank.Generated + Graphics.Blank.JavaScript + Graphics.Blank.Parser + Graphics.Blank.Types + Graphics.Blank.Types.CSS + Graphics.Blank.Types.Cursor + Graphics.Blank.Types.Font + Graphics.Blank.Utils + Paths_blank_canvas + + default-language: Haskell2010 + build-depends: aeson >= 0.7 && < 1.6, + base64-bytestring >= 1.0 && < 1.3, + base >= 4.7 && < 4.16, + base-compat-batteries >= 0.10 && < 0.12, + bytestring == 0.10.*, + colour >= 2.2 && < 2.4, + containers >= 0.5 && < 0.7, + data-default-class >= 0.0.1 && < 0.2, + fail == 4.9.*, + http-types >= 0.8 && < 0.13, + mime-types >= 0.1.0.3 && < 0.2, + kansas-comet >= 0.4 && < 0.5, + scotty >= 0.10 && < 0.13, + semigroups >= 0.18 && < 1, + stm >= 2.2 && < 2.6, + text >= 1.1 && < 1.3, + text-show >= 2 && < 4, + transformers >= 0.3 && < 0.6, + wai == 3.*, + wai-extra >= 3.0.1 && < 3.2, + warp == 3.*, + vector >= 0.10 && < 0.13 + + GHC-options: -Wall + GHC-prof-options: -Wall -fsimpl-tick-factor=100000 + +source-repository head + type: git + location: https://github.com/ku-fpg/blank-canvas.git
revision 2
Name: blank-canvas Version: 0.7.3 -x-revision: 1 +x-revision: 2 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.16, base-compat-batteries >= 0.10 && < 0.12, - bytestring == 0.10.*, + bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4, - containers >= 0.5 && < 0.7, + containers >= 0.5 && < 0.7, data-default-class >= 0.0.1 && < 0.2, fail == 4.9.*, http-types >= 0.8 && < 0.13,
revision 3
Name: blank-canvas Version: 0.7.3 -x-revision: 2 +x-revision: 3 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete build-depends: aeson >= 0.7 && < 1.6, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.16, - base-compat-batteries >= 0.10 && < 0.12, + base-compat-batteries >= 0.10 && < 0.13, bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4, containers >= 0.5 && < 0.7,
revision 4
Name: blank-canvas Version: 0.7.3 -x-revision: 3 +x-revision: 4 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete Paths_blank_canvas default-language: Haskell2010 - build-depends: aeson >= 0.7 && < 1.6, + build-depends: aeson >= 0.7 && < 2.1, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.16, base-compat-batteries >= 0.10 && < 0.13,
revision 5
Name: blank-canvas Version: 0.7.3 -x-revision: 4 +x-revision: 5 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete scotty >= 0.10 && < 0.13, semigroups >= 0.18 && < 1, stm >= 2.2 && < 2.6, - text >= 1.1 && < 1.3, + text >= 1.1 && < 2.1, text-show >= 2 && < 4, transformers >= 0.3 && < 0.6, wai == 3.*,
revision 6
Name: blank-canvas Version: 0.7.3 -x-revision: 5 +x-revision: 6 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete default-language: Haskell2010 build-depends: aeson >= 0.7 && < 2.1, base64-bytestring >= 1.0 && < 1.3, - base >= 4.7 && < 4.16, + base >= 4.7 && < 4.17, base-compat-batteries >= 0.10 && < 0.13, bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4,
revision 7
Name: blank-canvas Version: 0.7.3 -x-revision: 6 +x-revision: 7 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete Paths_blank_canvas default-language: Haskell2010 - build-depends: aeson >= 0.7 && < 2.1, + build-depends: aeson >= 1.4.4 && < 2.1, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.17, base-compat-batteries >= 0.10 && < 0.13,
revision 8
Name: blank-canvas Version: 0.7.3 -x-revision: 7 +x-revision: 8 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete Paths_blank_canvas default-language: Haskell2010 - build-depends: aeson >= 1.4.4 && < 2.1, + build-depends: aeson >= 1.4.4 && < 2.2, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.17, base-compat-batteries >= 0.10 && < 0.13,
revision 9
Name: blank-canvas Version: 0.7.3 -x-revision: 8 +x-revision: 9 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete wai == 3.*, wai-extra >= 3.0.1 && < 3.2, warp == 3.*, - vector >= 0.10 && < 0.13 + vector >= 0.10 && < 0.14 GHC-options: -Wall GHC-prof-options: -Wall -fsimpl-tick-factor=100000
revision 10
Name: blank-canvas Version: 0.7.3 -x-revision: 9 +x-revision: 10 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete default-language: Haskell2010 build-depends: aeson >= 1.4.4 && < 2.2, base64-bytestring >= 1.0 && < 1.3, - base >= 4.7 && < 4.17, + base >= 4.7 && < 4.18, base-compat-batteries >= 0.10 && < 0.13, bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4,
revision 11
Name: blank-canvas Version: 0.7.3 -x-revision: 10 +x-revision: 11 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete build-depends: aeson >= 1.4.4 && < 2.2, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.18, - base-compat-batteries >= 0.10 && < 0.13, + base-compat-batteries >= 0.10 && < 0.14, bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4, containers >= 0.5 && < 0.7,
revision 12
Name: blank-canvas Version: 0.7.3 -x-revision: 11 +x-revision: 12 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete default-language: Haskell2010 build-depends: aeson >= 1.4.4 && < 2.2, base64-bytestring >= 1.0 && < 1.3, - base >= 4.7 && < 4.18, + base >= 4.7 && < 4.19, base-compat-batteries >= 0.10 && < 0.14, bytestring >= 0.10 && < 0.12, colour >= 2.2 && < 2.4, stm >= 2.2 && < 2.6, text >= 1.1 && < 2.1, text-show >= 2 && < 4, - transformers >= 0.3 && < 0.6, + transformers >= 0.3 && < 0.7, wai == 3.*, wai-extra >= 3.0.1 && < 3.2, warp == 3.*,
revision 13
Name: blank-canvas Version: 0.7.3 -x-revision: 12 +x-revision: 13 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete Paths_blank_canvas default-language: Haskell2010 - build-depends: aeson >= 1.4.4 && < 2.2, + build-depends: aeson >= 1.4.4 && < 2.3, base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.19, base-compat-batteries >= 0.10 && < 0.14,
revision 14
Name: blank-canvas Version: 0.7.3 -x-revision: 13 +x-revision: 14 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete base64-bytestring >= 1.0 && < 1.3, base >= 4.7 && < 4.19, base-compat-batteries >= 0.10 && < 0.14, - bytestring >= 0.10 && < 0.12, + bytestring >= 0.10 && < 0.13, colour >= 2.2 && < 2.4, containers >= 0.5 && < 0.7, data-default-class >= 0.0.1 && < 0.2,
revision 15
Name: blank-canvas Version: 0.7.3 -x-revision: 14 +x-revision: 15 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete default-language: Haskell2010 build-depends: aeson >= 1.4.4 && < 2.3, base64-bytestring >= 1.0 && < 1.3, - base >= 4.7 && < 4.19, + base >= 4.7 && < 4.20, base-compat-batteries >= 0.10 && < 0.14, bytestring >= 0.10 && < 0.13, colour >= 2.2 && < 2.4,
revision 16
Name: blank-canvas Version: 0.7.3 -x-revision: 15 +x-revision: 16 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete scotty >= 0.10 && < 0.13, semigroups >= 0.18 && < 1, stm >= 2.2 && < 2.6, - text >= 1.1 && < 2.1, + text >= 1.1 && < 2.2, text-show >= 2 && < 4, transformers >= 0.3 && < 0.7, wai == 3.*,
revision 17
Name: blank-canvas Version: 0.7.3 -x-revision: 16 +x-revision: 17 Synopsis: HTML5 Canvas Graphics Library Description: @blank-canvas@ is a Haskell binding to the complete base-compat-batteries >= 0.10 && < 0.14, bytestring >= 0.10 && < 0.13, colour >= 2.2 && < 2.4, - containers >= 0.5 && < 0.7, + containers >= 0.5 && < 0.8, data-default-class >= 0.0.1 && < 0.2, fail == 4.9.*, http-types >= 0.8 && < 0.13,