Tony

Results 180 comments of Tony

Cool, since I don't have a mac to test this, I'll leave it to other members who has one, and if possible, please provide us a minimal reproducible example so...

Seems like I can't merge this PR because of unsigned commits, do you mind re-signing them? 🙃

We do have that: https://docs.rs/tauri-plugin-log/latest/tauri_plugin_log/struct.Builder.html#method.format

Well, it's really not very efficient to sending the log to the webview and then getting it back since there can be a lot of them, so that's why it's...

Wait for v3, https://github.com/tauri-apps/tauri/pull/13662

So basically, this is duplicating the code from `context_codegen` in `tauri-codegen` to `tauri` so that it can be used at runtime, and they would be normal functions instead of ones...

I do really want to support using another language binding without the rust compiler, and that's why I suggested that we change the codegen to generate the `Context` instead just...

I like the idea of splitting them up so it's clear which one is used in build and which one is used at runtime > The Builder should initialize the...

> You should specify in the Context whether you want to use embedded assets or runtime assets. I believe this is only for your currently implementation of pytauri, if we...

So currently, we have https://github.com/tauri-apps/tauri/blob/a472d51f683eea040fe68aadc92210f470bdaa6f/crates/tauri-codegen/src/context.rs#L134 And we change it to `pub fn context_codegen(data: ContextData) -> EmbeddedAssetsResult {}`, and then you can use this function to generate the context directly