daurnimator
daurnimator
Doesn't work in lpeg 0.10 though
This pull-request will make luarocks use [lua-http](https://github.com/daurnimator/lua-http) for HTTP(S) operations if it is installed.
Trying to do e.g. `luarocks --lua-version 5.1 install --tree=tmp/ -- fifo` without lua 5.1 installed results in luarocks emitting: > sh: line 1: /usr/bin/lua5.1: No such file or directory This...
Trying to build pure lua rocks shouldn't fail if the lua header is not installed. We currently fail due to the unconditional call to `deps.check_lua_incdir` https://github.com/luarocks/luarocks/blob/007078e85fbf0d9d2e6d4d0390d622654e42ee49/src/luarocks/build.lua#L114
Currently every time `luarocks` runs, we create several processes, e.g. [`gcc -print-multiarch`](https://github.com/luarocks/luarocks/blob/15d97c6d5c4e1acade2f983adb507e266b87aa93/src/luarocks/core/cfg.lua#L447) I believe these are run only to get *defaults* for configuration; and are not used if the variable(s)...
Can we get curses mouse support? i.e. - `mousemask` - `get_mouse` - `ungetmouse` - `wenclose` - `wmouse_trafo` We do already have `KEY_MOUSE`; which I found a bit weird.
As discussed last october. Did you get anywhere with this?
This closes Issue #44
The below segfaults for me; it works if I do `scene:addText("hi",QFont())` instead ``` require "qtcore" require "qtgui" local app = QApplication(1 + select('#', ...), {arg[0], ...}) local scene = QGraphicsScene()...
I'd like to record audio in my program, particularly using QAudioInput. Reckon you can add support for it?