sftse
sftse
Is it currently possible to build a fully functional Tauri app without calling `tauri build` or `tauri bundle`?
I've tried before and simply running `cargo run --bin ` failed
Ok, so the helloworld example does run with just cargo, never mind then.. Must be something else preventing my other app from running.
This fix has been working for me so far, I guess this would hinge on whether it is expected that bundling only works with tauri-cli. The only way to break...
Minimal example ```latex \documentclass{article} \usepackage{fontspec} \setmainfont{Montserrat} \begin{document} Text \end{document} ```
Thanks, there are alternative .ttf fonts available, this fixed the problem.
@FabianLars Fixed CI
I'm a bit confused by how the change sets work, the bot suggested ```text --- "@tauri-apps/api": patch "tauri-utils": patch "tauri-macos-sign": patch "tauri-bundler": patch "tauri-runtime": patch "tauri-runtime-wry": patch "tauri-codegen": patch "tauri-macros":...
My journey to discovering this involved 1. Attempting to apply `#[allow(unused_variables)]` to the macro, which does not work 2. Moving the attribute to inside the macro call as shown 3....
Thanks for pointing that out, it didn't cross my mind to silence the warnings that way. I guess this makes this a non-issue then. Will close in a couple of...