packages feed

hleap 0.1.2.5 → 0.1.2.6

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hleap.cabal view
@@ -1,5 +1,5 @@ name:                hleap-version:             0.1.2.5+version:             0.1.2.6 synopsis:            Web Socket interface to Leap Motion controller description:         This Haskell package contains functions for interfacing with Leap Motion controllers, \<<https://www.leapmotion.com/product/desktop>\>.  It is based on the WebSocket API \<<https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html>\> and inspired by \<<https://bitbucket.org/turion/jedinight/>\>. @@ -14,7 +14,7 @@ stability:           Stable homepage:            https://bitbucket.org/bwbush/hleap bug-reports:         https://bwbush.atlassian.net/projects/HLEAP/issues/-package-url:         https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.5.tar.gz+package-url:         https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.6.tar.gz author:              Brian W Bush maintainer:          b.w.bush@acm.org 
src/Main.hs view
@@ -44,7 +44,7 @@ -- | Handle pointable events. handlePointable :: Show a => Pointable a -> IO () handlePointable Finger{..}           = putStrLn $ "FINGER\t " ++ show (side hand) ++ "\t" ++ show finger ++ "\t" ++ show stabilizedTipPosition-handlePointable Tool{..}             = putStrLn $ "TOOL\t " ++ show (side hand) ++ "\t" ++ show stabilizedTipPosition+handlePointable Tool{..}             = putStrLn $ "TOOL\t " ++ show stabilizedTipPosition handlePointable PointableReference{} = return ()