wutschel
wutschel
I implemented a solution which reads quite nice when using it, examples: ``` [Utilities isKodiVersion:laterThan version:@"11"] [Utilities isKodiVersion:earlierThan version:@"13"] [Utilities isAPIVersion:earlierThan version:@"12.7.0"] [Utilities isAPIVersion:laterOrSameAs version:@"6.32.4"] ``` But I feel the...
You mean instead of the human readable comparison to` "10.2.44"`, we compare to something like `{10, 2, 44}`?
Ok, will look into this.
I could not find a good way to handle this when still trying to maintain the possibility to check for incomplete versions. E.g. we are checking for Kodi server `version...
Just to get the complete picture on the solution with three methods for API and two methods for Kodi: https://github.com/wutschel/Official-Kodi-Remote-iOS/tree/rework_version_2
Not sure, if this is worth the hassle. I will see, if I can find a string based less complex solution. If this is not working out well, I will...
Yes, the code can be compressed a bit further and the Kodi check can be enhanced to also accept `x.y.z`. I can also change the comparison to use `NSNumericSearch`. Edit:...
The rotation while fullscreen mode is intentionally deactivated in the code (`ViewControllerIPad.m`): ``` -(BOOL)shouldAutorotate{ return !stackScrollIsFullscreen; } ``` When changing above code to allow the rotation, there are several malfunctions...
Does it work on Kodi itself? Or are you also getting an error when using the Kodi UI?
I am asking as I installed the YT Add-on yesterday, and I do see the same error on my remote. But at the same time there is an error popup...