DoceAzedo

Results 9 comments of DoceAzedo

> I also think data-svelte might be too generic Yeah, but `data-svelte-h` sounds quite unintuitive for me. Maybe `data-svelte-static` or something more appropriate and readable?

We can use [release-it](https://github.com/release-it/release-it) to easily setup a script that runs all those steps and creates a new GitHub release automatically

Hi! I really like your suggestion :) For starters, we would need to add an `export()` function to [`EmotesParser`](https://github.com/doceazedo/emotettv/blob/main/src/types.ts#L45). We can also add an optional `data` parameter to [`EmotesLoader`](https://github.com/doceazedo/emotettv/blob/main/src/types.ts#L35) (or...

> Does it matter if you specify a size? > > See https://docs.rs/wry/latest/wry/struct.WebViewBuilder.html#method.with_bounds No... I added this and it made no difference: ```rs .with_bounds(Rect { position: Position::from(LogicalPosition::new(0, 0)), size: Size::from(LogicalSize::new(100,...

Finally got to try it on Windows. The behavior there is similar, but with these differences: - DevTools doesn't open - Resizing the window leaves a persistent gray/black rectangle the...

1. Fork the [repo](https://github.com/doceazedo/godot_wry) (checkout to the `windows` branch if needed) 2. Go to the `rust` directory and run `cargo build` 3. Open Godot 4.2 or up 4. Import the...

@amrbashir Thank you!!!!!!!!! After doing some research and trying a bunch of things, wrapping the `WebViewBuilder::new()` with `ManuallyDrop::new()` prevents the webview from being dropped and it solves the issue!!

@amrbashir Cool, that also works :) > Also there is the `init` method which could be used to create the webview there? I don't think so, as this runs in...

Are there any solutions or alternatives for this already?