Fabian-Lars
Fabian-Lars
Very likely _not_ for 2.0, no. We try to keep its scope reasonable small. Also i'm not sure how exactly it will work but i'd imagine it will be implemented...
This issue is about macOS. On Linux, even though it's the same error message, the cause is different == webrtc just isn't a thing in webkitgtk yet (to be exact,...
No idea when this will be fixed, the webkitgtk didn't gave any ETAs or hints but they are actively working on it. Oh and to be clear, Linux does not...
@felix307253927 Tauri v1.3 will have a method to disable the filter: https://github.com/tauri-apps/tauri/pull/5562 - if you can't wait for that release, you can also use the dev branch as described here:...
Closing this due to OP's inactivity and the missing reproduction. Once a reproduction is provided we will reopen this issue, thanks :)
Yes, or maybe "wishes" instead of "plans". Anyway, the lack of information is my bad, i only ever talked about this in other issues and on discord. So here's a...
This won't be implemented for v2 since we're still blocked by webview2. The pr from their repo I linked above was sadly for their composition based apis only and we...
> but nothing really worked and the app still flashes white background at open. Likely because it's not (only) the webview flashing but also the native window itself which makes...
try to spawn the window hidden: ```rs let main_window = tauri::WindowBuilder::new( &handle, "main", tauri::WindowUrl::App("index.html".into()), ) .visible(false) // this line .build() .expect("failed to create main window"); main_window.set_title("test").unwrap(); main_window.center().unwrap(); main_window.show().unwrap(); ```
request filtering is planned, yes. At least a somewhat simple approach/implementation. _modifying_ requests however is a tricky subject. It would be only possible on Windows. (In theory also on Linux...