packages feed

profiteur 0.4.4.0 → 0.4.5.0

raw patch · 4 files changed

+15/−7 lines, 4 filesdep ~aesondep ~js-jquery

Dependency ranges changed: aeson, js-jquery

Files

CHANGELOG.md view
@@ -1,3 +1,10 @@+# CHANGELOG++- 0.4.5.0 (2018-05-08)+    * Tweak saturation and lightness for readability (by @nqac)+    * Bump `aeson` dependency to 1.3+    * Bump `js-jquery` dependency to 3.3+ - 0.4.4.0     * Add a flag to embed the datafiles (by Nikolay Yakimov)     * Allow passing in an output path (by Nikolay Yakimov)
data/css/main.css view
@@ -5,7 +5,7 @@     font-family:      sans-serif;     font-size:        14px;     background-color: #222;-    color:            #ddd;+    color:            white;     overflow:         hidden; } 
data/js/node.js view
@@ -86,7 +86,7 @@     }      var h = hash % 360;-    var s = "100%";+    var s = "50%";     var l = "40%";     return 'hsl(' + h + ', ' + s + ', ' + l + ')'; };
profiteur.cabal view
@@ -1,5 +1,5 @@ Name:                profiteur-Version:             0.4.4.0+Version:             0.4.5.0 Synopsis:            Treemap visualiser for GHC prof files Description:         Treemap visualiser for GHC prof files Homepage:            http://github.com/jaspervdj/profiteur@@ -53,21 +53,22 @@     Paths_profiteur    Build-depends:-    aeson                >= 0.6  && < 1.3,+    aeson                >= 0.6  && < 1.4,     base                 >= 4.8  && < 5,     bytestring           >= 0.9  && < 0.11,     containers           >= 0.5  && < 0.6,     filepath             >= 1.3  && < 1.5,     ghc-prof             >= 1.3  && < 1.5,-    js-jquery            >= 3.1  && < 3.3,+    js-jquery            >= 3.1  && < 3.4,     scientific           >= 0.3  && < 0.4,     text                 >= 0.11 && < 1.3,     unordered-containers >= 0.2  && < 0.3,     vector               >= 0.10 && < 0.13    if flag(embed-data-files)-    Build-depends: file-embed >= 0.0.10 && < 0.0.11,-                   template-haskell >= 2.11 && < 2.12     Hs-source-dirs: src/embed+    Build-depends:+      file-embed       >= 0.0.10 && < 0.0.11,+      template-haskell >= 2.11   && < 2.12   else     Hs-source-dirs: src/noembed