Jason Tsai

Results 87 comments of Jason Tsai

https://github.com/tauri-apps/tauri/blob/11a5816bdffcbaa20df936dee43751de2cf67530/tooling/cli/src/mobile/ios/xcode_script.rs#L63-L66 `bun` is running from `gen/apple` but also has `npm_lifecycle_event` been set, so it didn't change working dir back to the project root

Another issue I found is how `bun` parses command arguments. For example, `"AA BB"` will be split into two argv `"AA", "BB"` instead of a `"AA BB"` string. ``` shell...

Hmm.. I think it could be done by setting `"signingIdentity": "-"` in `tauri.config.json`? **Updated** A quick test on my MacBook without specifying `signingIdentity`. Looks like it signs with ad-hoc by...

I see that doing it in Tauri directly is fine since it's already an ad-hoc signature by default; just maybe increasing the build time?

I'm guessing it's WebKitGTK's issue `flex-direction: row-reverse;` combine with the horizontal scroll causes the problem... with `flex-direction: row` will be fine. :\

Seems duplicated to https://github.com/tauri-apps/tauri/issues/9439 Can you try if this works? https://github.com/tauri-apps/tao/issues/189#issuecomment-2069020970

It looks like WKWebView and Safari do not support this type of `.webm` (audio only?). I just tried using Safari to play the `.webm` file that was downloaded from Vleer,...

Unfortunately yes. But there could still be some workarounds like converting the `webm` to another format that webview currently supports by Rust or Javascript.

It seems to work on my side. Could you share a reproducible repo or code to test? What I did is: - input something - command + z (works) -...

Looks like https://github.com/tauri-apps/wry/pull/1208 breaks it 😢 Slate editor listens to the JS `keydown` event and manages redo/undo history itself (from the JS side). The key events from OS are passed...