Sebastian
Sebastian
Hi, there is a problem with the lightning settings in the centerCamera() function. My fork of this contains a fix. See: https://github.com/LongHairedHacker/thingiview.js/commit/f1987712ebf4d7fb9f2af057ed08b2e44ae03a10 I don't know whether this is the correct...
Since I just stumbled upon that particular problem myself: ArduinoJson has deprecated JsonBuffer in favour of JsonDocument, which is a nicer/better abstraction. Also the `printTo` method was removed in favour...
I'd be very interested in looking at your code. I'm currently tinkering on a little browser based game and I would like to make it multilayer using websockets. I was...
Just ran into the same problem. I'd be happy to help tracking this issue down, what further info is required? I already tried strace on the resulting AppImage, to see...
Okay I think I found it. v1.4.0 copied the binary to `usr/bin/bin` inside the AppImage. See [v1.4.0/src/main.rs#L197](https://github.com/StratusFearMe21/cargo-appimage/blob/v1.4.0/src/main.rs#L197) v2.0.0 copies the binary to `format!("usr/bin/{}", &name)`. See [v2.0.0/src/main.rs#L229](https://github.com/StratusFearMe21/cargo-appimage/blob/v2.0.0/src/main.rs#L229). However apprun.rs still tries...
Good catch, just ran into the very same problem in an OpenWRT build. They use patchelf to set an empty rpath, the affected binary uses `system` from glibc and unfortunately...
I ran into a similar, if not the exact same, problem. Here is what I did: ``` $ cd /tmp/ $ git clone https://github.com/RamiHg/soundio-rs Cloning into 'soundio-rs'... [...] $ cargo...
I did some digging: `libsoundio-sys` wraps a statically linked version of libsoundio, that lives somewhere in the target folder: `target/debug/build/libsoundio-sys-56755798501abf76/out/lib/libsoundio.a`. If we poke it with `nm` we get a bunch...
It works for me after making the following changes. ```diff diff --git a/libsoundio-sys/build.rs b/libsoundio-sys/build.rs index 5e3d33c..21afdb1 100644 --- a/libsoundio-sys/build.rs +++ b/libsoundio-sys/build.rs @@ -105,6 +105,10 @@ fn main() { // Link...
That should work. The other thing I ran into is that that linking against all three libraries means your binary will always depend all of those libraries even if your...