pastdue
pastdue
@kajmagnus: Apache 2.0 has another problem - it is incompatible with GPLv2.
This is fantastic functionality to have. (Several other CI platforms' "Upload GitHub Release Asset"-type plugins support this functionality.) @IAmHughes: Is this something that can be merged as-is? Or would you...
Hi @fletcherdvalve, Apologies - I had not yet had a chance to dig into this. From initial looks at libsodium, it appears to have exactly the same interface for both...
> > I’m not entirely sure if mingw ships its own copy of the windows headers > > Yep, MinGW has their own implementation of WinAPI headers. > > >...
@LilyWangLL Is there anything remaining that's needed to get this merged? (On my end this works well, has been tested end-to-end with the `wasm32-emscripten` triplet with the fribidi port, and...
@LilyWangLL From what I can see, the failures do not appear to have anything to do with this PR. (The ports listed don't even use meson.)
> I really hate it sticking out on the bottom like this Hence the option to disable it. Nice stuff, @jwhite510! 👍
@c-smile: https://github.com/bellard/quickjs/pull/16/commits/2ead907a6033bf1897d18ef86f09c0f677265466 seems to break QuickJS behavior - even in x86 / Win32 compiles, if `JS_STRICT_NAN_BOXING` is defined. (I'm trying to track down specifics now.) Any thoughts? (I'm comparing a...
@c-smile: Thanks - was wondering if you'd come across any quirks. I will look into coming up with a minimal repro case when I have a chance. In the interim,...
@c-smile: Please try the following Javascript with the current `JS_STRICT_NAN_BOXING` defined: ```js var valInfinity = Infinity; var valLessThanInfinity = 0.5; if (valLessThanInfinity < valInfinity) { console.log("Less than infinity"); } else...