Simon Chan

Results 235 comments of Simon Chan

Samsung S Pen supports hovering, so Samsung One UI might be the best system in supporting hover state. I did more tests around `ACTION_HOVER_ENTER` and `ACTION_HOVER_EXIT`, looks like no one...

>> This will cause a file conflict in every renovate PR as soon as one is merged > > I think "might" or "often" is more correct than "will"? i.e....

> On android 14, this fails to create a secure display What does **this** refer to? I think the new virtual display API uses the `DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE` flag to create secure...

The segmenter is available in JavaScript: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter For example: ```js console.log( JSON.stringify( Array.from( new Intl.Segmenter("en", { granularity: "word" }).segment( "本文的学习公式", ), ), undefined, 4, ), ); ``` (In my test,...

> I also don't see how this has anything to do with Portals: Event delegation let events propagate through the JSX tree, not the DOM tree, for example: https://playground.solidjs.com/anonymous/f787bc00-e21e-4ea8-8f57-7eca6d931e72 ```jsx...

Sorry for the late response, I was in hospital last week. > So please add `adb shell am start -a android.intent.action.VIEW -d ` as a feature on webui Please tell...

Sounds like it should be a share target. Except share target API is hard to use.

Do you want a UI to rotate the device into any one of four orientations, instead of always rotating 90 degrees clockwise as now? Something like this? ![image](https://github.com/yume-chan/ya-webadb/assets/1330321/353089ca-08f6-4db4-a129-a4431953222c)

WebAssembly is also an option. Do you know any WebAssembly build for those compression algorithms?

I had already checked brotli-wasm and lz4-wasm. brotli-wasm is the most promising one, but it does work (out-of-the-box) with Vite (https://github.com/httptoolkit/brotli-wasm/issues/8), so it can't be used in a library that...