Master
Master
@palinek That's unexpectedly fast. This explains a lot, thank you. I would like to try it, I've already tried cloning the repository and checkout your menu-drop-delay branch, but I'm not...
Nevermind, reading the error message more carefully I found out about lxqt-build-tools. I followed the instructions, which is sort of like: export CMAKE_INSTALL_PREFIX="/usr" mkdir build cd build cmake /opt/lxqt-build-tools make...
Even though Tilda comes with many settings, multiple screens does not seem to be supported at all. There is a particularly annoying bug in which the open/close animation is on...
Same errors using inotify-1.4.6, node v14.2.0, npm 6.14.5, node-gyp 6.1.0. The pull request (repo: [ashthespy/node-inotify](https://github.com/ashthespy/node-inotify.git)) which should fix this failed with: ``` (...) internal/modules/cjs/loader.js:1023 throw err; ^ Error: Cannot find...
Got the same issue. On Debian I don't have instances of glusterfsd, only glusterd that spawns multiple processes, which are not killed when glusterd is stopped. It's because of `KillMode=process`...
The offending code is [here in camera.ts](https://github.com/android-js/androidjs/blob/master/src/webview/androidjs/api/camera.ts): ```js public init(dom:HTMLVideoElement, constraints:object){ if(this.stream != undefined){ this.stopMediaTracks(this.stream); } navigator.getUserMedia(constraints, function(stream){ this.stream = stream; dom.srcObject = stream; }, function(error){ console.log(error); throw error; })...