hleap 0.1.2.4 → 0.1.2.5
raw patch · 3 files changed
+9/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ReadMe.md +4/−1
- hleap.cabal +3/−3
- src/System/Hardware/Leap/Types.hs +2/−2
ReadMe.md view
@@ -1,7 +1,10 @@ Web Socket interface for Leap Motion controllers ================================================ -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/>>. It has been tested with Service Version 2.3.1+31549 of the Web Sockets server from Leap Motion.+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/>>.++It has been tested with Service Version 2.3.1+31549 of the Web Sockets server from Leap Motion.+ Skeletal example ----------------
hleap.cabal view
@@ -1,7 +1,7 @@ name: hleap-version: 0.1.2.4+version: 0.1.2.5 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/>>. It has been tested with Service Version 2.3.1+31549 of the Web Sockets server from Leap Motion.+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/>\>. license: MIT license-file: LICENSE@@ -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.4.tar.gz+package-url: https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.5.tar.gz author: Brian W Bush maintainer: b.w.bush@acm.org
src/System/Hardware/Leap/Types.hs view
@@ -33,9 +33,9 @@ type Vector a = (a, a, a) --- | Three dimensionsional basis.+-- | Three dimensional basis. type Basis a = (Vector a, Vector a, Vector a) --- | Three dimensionsional rotation matrix.+-- | Three dimensional rotation matrix. type Matrix a = (Vector a, Vector a, Vector a)