Serge Zaitsev
Serge Zaitsev
I think the fix would be to change the Makefile to use proper options syntax: ``` --- a/src/Makefile +++ b/src/Makefile @@ -475,8 +475,8 @@ ifeq ($(KERNEL),Darwin) CXXFLAGS += -mmacosx-version-min=10.14 LDFLAGS...
However the fix above would bring you to the next error, which is `CXXFLAGS += -mdynamic-no-pic` being an unknown option for WASM architecture. Removing that solves the issue. Not sure...
Please accept my apologies for a very late reply. The fact that you're seeing no error-handling branch is really confusing, because I ran exactly the same code on Lua 5.1...
There is some documentation and related information in the blog posts I wrote when I introduced mucks: 1. http://zserge.com/blog/mucks.html (older version) 2. http://zserge.com/blog/mucks2.html (current version) But to be honest, I...
I wonder if `libhidapi` in your case is using usbfs or kernel HID API? If it's usbfs - then would it be possible to get some logs from `usbmon` to...
I attempted to publish the plugin some time ago and got rejected because it lacked a cover image (I'm not a designer myself and was careless to make anything beyond...
Also I was suggested to display a notification when the plugin is triggered and no vector elements were selected, otherwise it may confuse the user. Probably, a good point.
@zxey I personally see nothing wrong with having pure Rust webview in the same org with pure C++ webview next to it, as long as the goals match and the...
@nothingismagick I would love to meet someone from the documentation working group! My new branch even lacks a readme so far. But jokes aside, at the current scale of things...
I would also suggest using custom ViewGroups (as mentioned in https://corner.squareup.com/2014/10/advocating-against-android-fragments.html)?