by martpie on 8/2/24, 7:44 PM with 96 comments
by wubrr on 8/2/24, 8:58 PM
Consider adding something more informative than 'Hardened foundation for your web apps', and maybe an 'About' page.
by logankeenan on 8/3/24, 12:14 AM
My app (very beta) https://meshly.cloud
by Sytten on 8/2/24, 10:36 PM
Otherwise good progress, happy to see it!
by lostindetails on 8/5/24, 6:23 AM
After running the migrate tool (via `bun run tauri migrate`) at the end of the guide, I needed to do the following things to get complete it migration.
- the migrate tool ran rust format on my backend code - which I was not using at that point - and it changed my preferred to 2 spaces to 4, so I joined the rustfmt bandwagon and created a config file with my preferred settings
- run `cargo update` to get the new package versions
- modify `tauri.conf.json` as the structure changed, eg. `fileDropEnabled` -> `dragDropEnabled`
- change some imports, as the functions from client api were moved, this was straightforward
- add the plugins `updater` and `dialog` as that functionality has moved from the core to plugins
- change the code that handles the auto-updating, as the api changed as well, but for the better
- the only thing that tripped me up, was that re-building the project didnt't work due to an colliding filename error, but I found a closed issue at their https://github.com/tauri-apps/tauri/issues/10192 which pointed me towards removing `rlib` from the crate-type, which solved that issue.
All in all quite a smooth experience, was done in an 1-2 hours or something, not sure.
by kayson on 8/2/24, 8:06 PM
by drummerboy2543 on 8/3/24, 3:46 AM
Does anyone have a solution to this? Would love to use Tauri as a desktop server and create the WebView. But do I just use ffi for every single class/module/function?
Or does anyone know a more elegant solution to bridge the gap of making a native desktop experience while still leveraging the years of python drivers that have been built up
by sva_ on 8/2/24, 9:35 PM
by cageface on 8/2/24, 11:07 PM
by Fire-Dragon-DoL on 8/3/24, 12:20 AM
Is there an hybrid way to deliver with tauri on macos and windows, but electron in linux?
by Fire-Dragon-DoL on 8/3/24, 12:18 AM
by srid on 8/2/24, 9:58 PM
> Dioxus is a Rust library for building apps that run on desktop, web, mobile, and more.
(Dioxus uses Tauri)
by jerrygoyal on 8/3/24, 5:16 AM