Andrew

Results 12 issues of Andrew

This statment: https://github.com/choojs/nanomorph/blob/43d39d01a9c14a8279e398bad93c1ef6edfa03a4/index.js#L160 is useless as the function returns `false` by default.

I have C++ class: ``` class Foo { int get_bar(); void set_bar( int v ); } ``` and I'd like to wrap it as JS class that has `bar` defined...

Here: https://github.com/sciter-sdk/go-sciter/blob/99cd4de65a26163ff93872ef7bba888b479081dc/sciter.go#L1518 Panicf is excessive - not future compatible. Please see: https://sciter.com/forums/topic/build-success-on-mac-os-but-run-error/ for the details.

bug

In 4.4.7.0 (Sciter and Sciter.JS) ISciterAPI was unified to have the same structure on all platforms and variants. So this: https://github.com/sciter-sdk/go-sciter/blob/master/sciter-x-api.c is no longer valid.

**What problem will this solve?** In one of my projects I need to add `-fobjc-arc` to a group of .mm files. Other files shall stay the same, so I cannot...

enhancement

1. General MSVC compatibility. 2. CONFIG_VERSION (too common/generic) replaced by QUICKJS_VERSION due to clashes with other libraries that use CONFIG_VERSION too 3. premake5 script - allows to generate makefile's, cmakes,...

When popup window is shown without setting keyboard focus on it, [SDL_UpdateMouseCapture](https://github.com/libsdl-org/SDL/blob/7c089f4e570b7849c7af3d406ee2b4e39aa23435/src/events/SDL_mouse.c#L1166) sets capture to wrong window - not to the popup window as it should. This leads to mouse...

I believe this https://github.com/zingchart/zingtouch/blob/d36d10e0a375b5b31e6f6beb3f942c16b4433ee9/src/gestures/Swipe.js#L210 should be ```JavaScript for (var i = 0; i < output.data.length; i++) { if (output.data[i].velocity < this.escapeVelocity) { return null; } } ``` otherwise, it is...

bug

1. CONTAINER_OF macro is undefined, where it comes from? 2. #include "ssl.h" in /include/bio.h not found. Seems like that file should contain SSL_FAILURE and SSL_SUCCESS... 3. __log and LOG_VERBOSE are...

this is incorrect: ``` SDL_VERSION(&info.version); ``` `SDL_VERSION` expects a `SDL_version` struct to initialize but `info.version` is an int.