Tony

Results 180 comments of Tony

You can use my branch for now, I don't know how long this will take to be honest

I can not think of another way at the moment, the method amr used is what I was thinking as well, but it doesn't quite work the way we expected...

You're right, ignore my suggestions then, I thought the downcast would work but apparently no

> If response contains `x86_64-windows-nsis` and `x86_64-windows` use the first one for nsis and the latter one for wix Shouldn't it be NSIS checks for `x86_64-windows-nsis` and fallback to `x86_64-windows`...

To me, I did something like this in my app, and the crash would be shown in the log file `tauri_plugin_log` created ```rust let default_panic = std::panic::take_hook(); std::panic::set_hook(Box::new(move |info| {...

I'll just put it at the beginning of the main function, but this is fine as well

What if you set [`WebviewWindowBuilder::focused`](https://docs.rs/tauri/2.1.1/tauri/webview/struct.WebviewWindowBuilder.html#method.focused) to false?

I think this is just how our [`Image`](https://docs.rs/tauri/latest/tauri/image/struct.Image.html) type works internally, it uses raw RGBA pixels

I know the code is a bit wacky, but honestly I can't quite think of anything better here Since there's a cost with `RmRegisterResources`, I'm not sure if it makes...

Actually, this will cause the app to crash on https://github.com/tauri-apps/tao/blob/3c2b4447aa53151ae96d30a60928d1d71e9bb5fc/src/platform_impl/windows/event_loop/runner.rs#L368 because Restart Manager works a bit differently from system shutdown, it doesn't terminate us right away after returning 0 from...