Tony

Results 180 comments of Tony

I can't seem to reproduce this on Android 16 emulator, do you have an example that could reproduce it?

Not entirely sure how I much I could do, but I'll try to dig into this a little bit, the long compile time has been bothering me as well for...

Didn't look at it yet, but it seems like the ubuntu build is failing https://github.com/tauri-apps/tauri/actions/runs/16120739808/job/45485616619

> ...Now I see this PR was closed already. Do I have to create a new PR with the fix? Yeah, that's how we usually do it

> @kittuov Hey, can you point me to the place were we sign the binary? I'm only familiar wit generating the signatures files for the bundles. It was signing the...

Honestly, I feel like the entire `target` thing is a bit confusing, `tauri_plugin_updater::target` returns `{os}-{arch}` while we replace `{{target}}` inside the URL with just the OS, also with the introduction...

> And thank you. This should go way smoother but I'm hitting a lot of Rust related things that are new to me. No worries, we all came from there...

I have reverted the tauri bumps to align with the main branch, and since we have already bumped the workspace tauri requirement to 2.8 in main branch, we can remove...

I believe these 2 places are used only in target (`OUT_DIR`) directory and we don't need to guard it here

@nickheyer `StoreExt` does exist, the problem is that it should be a `?` at the end of `build()` and `insert` is actually `set` ```rust let store = app.handle().store_builder("store.bin").build()?; // Note...