leaf
leaf
I haven't experimented with `ngx.thread.spawn`. It would appear that both threads are trying to use the socket at the same time, causing invalid messages to be sent to the database...
Here's the line of code that attempts to quit the ffmpeg process: https://github.com/leafo/gifine/blob/master/gifine/load_window.moon#L92 Here's the kill method for GIO: https://developer.gnome.org/gio/unstable/GSubprocess.html#g-subprocess-force-exit I'm not sure why it wouldn't stop. What version of...
Also can you run it from the console and see if there's a lua runtime error that's happening
Before the program shows the frame editor window it waits for the process it spawned for ffmpeg to terminate. Is it possible that your ffmpeg command is actually a shell...
Both the manifest and rockspecs are machine readable as they are just Lua code. I wouldn't mind adding JSON endpoints for the objects on the site, I just don't think...
The dependencies are listed for the "current version," which is set as the last one that was uploaded. This module has three concurrent versions for each lua. I'm not sure...
Are you sure the luarocks you have installed on your jenkins machine is using the same lua version as the one you used to complete the search? Run luarocks with...
does your app work without using that library? what are you passing into the `serve` function?
This is the helper function I use in my apps: ```moonscript db_json = (v) -> db.raw db.escape_literal json.encode v ``` Never write code like this: > `instance:update { some_field =...
It looks like the fix for gtk4 is in the main branch of the lgi repository, but there is no new release for it. I can confirm that gifine also...