node-five icon indicating copy to clipboard operation
node-five copied to clipboard

HTML5 graphics and audio for Node.js

Results 6 node-five issues
Sort by recently updated
recently updated
newest added

``` ../src/QtGui/qwidget.h:73:42: error: no type named 'Arguments' in namespace 'v8'; did you mean 'v8::internal::Arguments'? ```

Will hide the warning when installing

Unfortunately the build script fails for this repo as well, I can't say I'm surprised by that though since it relies on the `node-qt` repository, which is also currently failing...

Not sure if this is a qt issue or something wrong with node-five, but when I run the goblin demo, it works fine, except I have to Alt+Tab away and...

linux
bug

Right now keyboard events return Qt's key codes. We should use browser codes. See this (scroll to the bottom): - http://unixpapa.com/js/key.html **NOTE**: This will require updating most `examples/`

improvement

We should use `QPointF` and `QRectF` instead of integer coordinates (x,y,w,h, etc) throughout 2d context, as the spec requires (double precision) floating point numbers for all coordinates: http://dev.w3.org/html5/2dcontext/#conformance-requirements

improvement