leaf
leaf
also fixed that isseu @qaisjp thanks
`/streak/:id/` -- get information about a streak by id The `streak_user` field is present if the current logged in user is in this streak. ``` lua { streak_user = {...
`/streak/:id/submissions?page=1` -- list submissions for streak, most recent first. `page` param is optional ``` lua { page = 1, submissions = { { uploads = { { type = "image",...
1. There's a pretty big update in master that hasn't made it to production yet. This update is mostly centered on improving the "play along" mode, along with adding built...
I just pushed a copy of your current windows build to your project page to test, and did not encounter any issues. Do other commands work as expected, can you...
I put together a simple how to build guide, including the dependencies: https://github.com/leafo/aroma#how-to-build
Sadly LuaSocket won't be able to work with Native Client. Chrome restricts what is possible from Native Client app, and opening a socket is not allowed for security reasons. But,...
Interestingly enough I just saw this: http://blog.alexmaccaw.com/chrome-tcp-udp Looks like I'll be able to add a LuaSocket like api in the near future.
I would love (heh) to put it on more platforms. Sadly nacl isn't available on anything other than chrome. I would have to learn how things like the unity web...
Currently there isn't a file loading api exposed, but I have an internal one used to load game resources (code and images). I'll keep this open, going to be making...