Start using SF Symbols
In iOS 13 Apple introduced a set of around 1.500 symbols (icon images) which are easy to use in an app. This makes live, at least on iOS 13, easier so I started migrating to these symbols where possible. To keep it backwards compatible, I’m extending UIImage for every image that I migrate: extension UIImage { static var play: UIImage { if #available(iOS 13.0, *) { return UIImage(systemName: “play.fill”)! } else { return UIImage(named: “Play-Small”)! […]
iPad full screen view coming along nicely
One of the most requested features for Rigelian is a full screen now playing view on the iPad. After a significant amount of preparation work in the form of code cleanup, creating the actual screen was a breeze. So here’s the teaser picture:
v1.7 almost ready
All changes needed for v1.7 are ready. What is remaining is final testing, and then it will be released. The today widget is now also supporting dark mode, and a problem where it sometimes wouldn’t load is also fixed.