Tao
Tao
Hi in my test, png file size also increased. The root cause is here although we only want to pick the image original data, `UIImageJPEGRepresentation ` or `UIImagePNGRepresentation` always change...
a temporary solution: try to patch the `ImagePickerManager.m` file and no `maxWidth`, no `maxHeight`, `quality` is 1 (default value). In this way, the selected file will be close to the...
In addition if the above temp image size is still larger when transferring over the network, it's likely because the `RCTNetworking.mm` is still using `RCTImageLoader.mm` to convert the image uri...
> @johncschuster, @ntdiary Huh... This is 4 days overdue. Who can take care of this? It seems like we haven't received a proposal yet.
I'm also not sure what the expected behavior is. So far, with two accounts, I got different actual result: 🥲 1. If we search for a new user and open...
Does this issue require c+'s attention now? If so, I can request another c+ to take over it on slack, because my bandwidth is limited. 😄
```js window.addEventListener("beforeunload", () => {}); ``` 如果在 window 上监听了 beforeunload 事件,自动重启时,旧实例会退出失败。vue-router 里就是监听了这个事件 暂时没空去找根本原因,就先用临时办法绕过了 ```ts // electron/main/index.ts app.on('before-quit', () => { if (import.meta.env.DEV) { app.exit(); } }) ```
## Proposal ### Please re-state the problem that we are trying to solve in this issue. Long pressing the emoji in the emoji suggestion can't place that emoji on the...
Hi, I think the logic of deep link redirection is relatively clear now, could we merge this PR first? As for adding the `BeginDeepLinkRedirect ` new command, we will do...
@tgolen of course, please feel free to let me know if there are any mistakes. : )