Git Product home page Git Product logo

noflo-gestures's Introduction

noflo-gestures Build Status

Gesture recognition components for NoFlo

noflo-gestures's People

Contributors

bergie avatar greenkeeper[bot] avatar greenkeeperio-bot avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

noflo-gestures's Issues

An in-range update of grunt-noflo-browser is breaking the build 🚨

Version 1.3.0 of grunt-noflo-browser just got published.

Branch Build failing 🚨
Dependency grunt-noflo-browser
Current Version 1.2.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As grunt-noflo-browser is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 14 commits.

  • d01f8b1 Update docs, refs #25
  • a7653fd Bump
  • 83d9573 Merge pull request #25 from noflo/opener_protocol
  • 8a8f257 Fix indent
  • cd150ba Provide runtime type correctly
  • 31acbd7 No need to log the debug URL, since we need to go through the button
  • 6321a65 Switch from iframe+webrtc to postmessage runtime
  • b694bb7 README: Minor doc improvements
  • 24f2afa Merge pull request #24 from noflo/greenkeeper/webpack-3.0.0
  • e8c9cce fix(package): update webpack to version 3.0.0
  • 83a6b19 Merge pull request #23 from noflo/greenkeeper/chai-4.0.0
  • d3e2bcf chore(package): update chai to version 4.0.0
  • 361e0ed Update tests for 0.8
  • 1e6ca6e Abort on parse errors

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of grunt-contrib-uglify is breaking the build 🚨

Version 2.2.1 of grunt-contrib-uglify just got published.

Branch Build failing 🚨
Dependency grunt-contrib-uglify
Current Version 2.2.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As grunt-contrib-uglify is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ


Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build failed Details
Commits

The new version differs by 4 commits .

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Include center point and scale to position data

For some gestures like pinch-to-zoom, it would be useful to have scale and center point of the gesture available.

Quick JavaScript example for calculating:

          var startX = [];
          var startY = [];
          var startPoints = [];
          var movePoints = [];
          for (var touch in e.detail) {
            if (e.detail[touch].startpoint) {
              startX.push(e.detail[touch].startpoint.x);
              startY.push(e.detail[touch].startpoint.y);
              startPoints.push(e.detail[touch].startpoint);
            }
            if (e.detail[touch].movepoint) {
              movePoints.push(e.detail[touch].movepoint);
            }
          }
          var center = {
            x: ((Math.min.apply(Math, startX) + Math.max.apply(Math, startX)) / 2),
            y: ((Math.min.apply(Math, startY) + Math.max.apply(Math, startY)) / 2)
          };
          var scale = 1;
          if (startPoints.length > 1 && movePoints.length > 1) {
            scale = getDistance(movePoints[0], movePoints[1]) / getDistance(startPoints[0], startPoints[1]);
          }

An in-range update of json-loader is breaking the build 🚨

Version 0.5.5 of json-loader just got published.

Branch Build failing 🚨
Dependency json-loader
Current Version 0.5.4
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As json-loader is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build failed Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of noflo is breaking the build 🚨

Version 0.8.0 of noflo just got published.

Branch Build failing 🚨
Dependency noflo
Current Version 0.7.9
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As noflo is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this πŸ’ͺ


Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build failed Details
Commits

The new version differs by 325 commits (ahead by 325, behind by 2).

  • a1187c6 Bump
  • d1c13f2 Update Flowhub docs link
  • 49cfb8b Update fbp-protocol link
  • b25001e Update MsgFlo link
  • 9757b8d Merge pull request #534 from noflo/update_copyrights
  • f84ca06 Reassign copyrights
  • a790ba4 Make 'grunt test' run the build task instead of duplicating
  • 593a39d Bump
  • 05d38ad Document WirePattern Process API changes, refs #526
  • 452c57f Merge pull request #526 from noflo/process_wirepattern
  • 6ceab6f Merge pull request #532 from noflo/fix_null_undefined
  • efaba77 Fix ip.data turned from null to undefined
  • 76d10c6 Provide postpone/resume functions that throw a more user-friendly error
  • 4db7e7b Plug deprecation warnings back in
  • 9d15d3c Collation support for WirePattern group and field options in Process API

There are 250 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.