Kevin Cador
Kevin Cador
@jpsim @finnschiermer giving my 2 cents: we already use `compact()` (by modifying headers to make it available in Swift) in a production app. We call it at every launch. It's...
Nice @Daniel1of1 ! I have an app in prod since Dec. using the solution I proposed quite extensively. But to be honest my implementation was more a guess found by...
Yes, I'm using Receiver in production since 1.0 of Rippple (https://itunes.apple.com/us/app/rippple-tv-movie-comments/id1309894528) launched in early 2018.
I think I identified the issue. It's when a key needs to be generated to store the handler: `_key = (_handlers.keys.map { $0.hashValue }.max() ?? -1) + 1` It seems...
It works as expected when removing the `hashValue`: `_key = (_handlers.keys.max() ?? -1) + 1` I don't really understand why this `hashValue` is important. Let me know if I can...
Wow this is perfect. A huge improvement here. Thanks a lot for this pull request. Hope it gets merged and pushed to Cocoapods soon.
@nachonet we tested other 360 player and we found out that ios-360-videos is still rendering the video with a quality loss. This is due to the zoom level. Seems that...