Nicolas Papp
Nicolas Papp
@rocker71 That's a very interesting approach. I have managed to replicate it also in Ubuntu 18.04. The only think I notice is that resizing is not working properly. Any ideas...
Hello, is there any plan to resolve this issue? Both sync and async versions of the pyrad server are not compatible with Windows
Hi guys, I have been working on a custom version of the Server, using Threads for different sockets instead of select.poll() Probably need a few more changes, but was enough...
Still running on this issue with version `1.11.3`
I see. I did try both options. I can confirm both mount point exists and is owned by the user performing the mount. I noticed there was a new version,...
Thanks for the assistance here. I did run the command, it is only partially working:  I now see the extension but I am still getting the same error. Restarting...
Hey @bfleischer just pinging here to let you know that this is now solved. I am now able to run examples with FSKit example. The reason seems to be the...
Taking a glance at the code and now I understand why this is happening: ``` export async function onOpenUrl( handler: (urls: string[]) => void ): Promise { const current =...
@lempira what I meant was that I just avoided using the `onOpenUrl` interface and did the following instead: ``` import { listen } from '@tauri-apps/api/event'; const unlisten = listen('deep-link://new-url', (event)...
Just for refrence, this is the hook I am using and seems to work well on my particular case ``` import { listen } from '@tauri-apps/api/event'; import { useEffect }...