Plot-ho-matic 0.9.0.0 → 0.9.0.1
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- .travis.yml +2/−3
- Plot-ho-matic.cabal +1/−1
- src/PlotHo/GraphWidget.hs +2/−1
.travis.yml view
@@ -1,14 +1,13 @@ # from https://github.com/hvr/multi-ghc-travis env:- - CABALVER=1.22 GHCVER=7.6.3 - CABALVER=1.22 GHCVER=7.8.4 # see note about Alex/Happy- - CABALVER=1.22 GHCVER=7.10.2 # see note about Alex/Happy+ - CABALVER=1.22 GHCVER=7.10.3 # see note about Alex/Happy before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo apt-get update- - travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER libgsl0-dev liblapack-dev+ - travis_retry sudo apt-get install libgtk-3-dev cabal-install-$CABALVER ghc-$GHCVER libgsl0-dev liblapack-dev - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH install:
Plot-ho-matic.cabal view
@@ -1,5 +1,5 @@ name: Plot-ho-matic-version: 0.9.0.0+version: 0.9.0.1 synopsis: Real-time line plotter for generic data license: BSD3 license-file: LICENSE
src/PlotHo/GraphWidget.hs view
@@ -93,7 +93,7 @@ Gtk.set options [ Gtk.containerChild := optionsWidget , Gtk.expanderExpanded := False ]-+ _ <- Gtk.afterActivate options redraw -- the signal selector treeview' <- newSignalSelectorArea onButton sameSignalTree forestFromMeta graphInfoMVar msgStore redraw@@ -101,6 +101,7 @@ Gtk.set treeview [ Gtk.containerChild := treeview' , Gtk.expanderExpanded := True ]+ _ <- Gtk.afterActivate treeview redraw -- options and signal selector packed in vbox vboxOptionsAndSignals <- Gtk.vBoxNew False 4