Cas_
Cas_
sorry for the late reply, however, I couldn't find any issues with this? [video](https://i.imgur.com/YoSlYVo.mp4)
> Do you have a powerful computer? Could be possible that the device I am using for testing is a bit slow. After some more testing, I have found the...
however on my mid-range phone it doesnt seem to be an issue at all either, what browser did you use?
> It's good that you bring this up because on phones, the sidebar changes to the `overlay` type, which is really smooth. The main issue seems to happen when the...
@halfmoonui , will using the `will-change` css property help? from what I tested it could help a lot, could you try it on your hardware? here's an article on it:...
i'd assume duplicate of https://github.com/halfmoonui/halfmoon/issues/49
those trackers should be removed from readme, not added to code, view the blame
why not just ```js const files = await Promise.all(filePromises) const torrent = await new Promise(res=>createTorrent(files,res) ``` ? or is the input data just massive?
this supports readable streams, you could convert the files into readable streams instead and pass those in syncronously, you can even do it with asyncIterator using ```js const { Readable...
you could stall the other readable streams until another one finishes, and if they are say 8 files, create 1 real streams, 7 fake stalled ones, an as a stream/file...