Releases: cbpowell/MarqueeLabel
Releases · cbpowell/MarqueeLabel
4.5.3
What's Changed
- Changed the custom compilation condition flag from
DEBUG
toMARQUEELABEL_DEBUG
for the new visual debugging features, so that it's not activated unintentionally/unexpectedly when using the more broadDEBUG
flag. (thanks @Liyongcong!, ref #303)
Full Changelog: 4.5.2...4.5.3
v4.5.2: UIGlassEffect fixes
What's Changed
- Fixed functionality when MarqueeLabels are used with
UIGlassEffect
- much thanks to @LeoNatan and @KaiOelfke for their help on #301!
Full Changelog: 4.5.1...4.5.2
v4.5.1: Xcode 16 fixes
What's Changed
- Bump supported platforms to avoid deprecation warning with Xcode 16 by @KaiOelfke in #300
New Contributors
- @KaiOelfke made their first contribution in #300
Full Changelog: 4.5.0...4.5.1
v4.5.0: visionOS Support
- Adds visionOS support (thanks @eric!)
- Bumps minimum deployment target to 12.0, to keep Xcode happy
Note that MarqueeLabel probably still supports older iOS versions than 12.0, but you might have do some manually import the library instead of using Cocoapods (or do some trickery with your own project Podfile).
What's Changed
New Contributors
Full Changelog: 4.4.0...4.5.0
v4.4.0: Content Size, Privacy, and You
- Add hooks to catch when content size settings change (thanks @iDevelopper and @LeoNatan!)
- Add a Privacy Manifest file to MarqueeLabel (as a third-party SDK), per Apple guidance and upcoming requirements.
v4.3.2: Min deployment bump
- Bumps minimum deployment target to iOS 11.0 to keep Xcode happy (thanks @ale-gen!)
v4.3.1: Fix overriding hold
- Thanks to @yujinakayama for correcting an issue where using
triggerScrollStart
wouldn't override aholdScrolling
condition (PR #289)
v4.3.0: Coordinate conversion to scrolling text and animation position
- Adds the
textCoordForFramePoint
function, which converts a point in a MarqueeLabel's frame coordinate system to a point in the scrolling label's coordinate system. It could be useful for determining the word or character under a user tap point, as now demonstrated in the demo project here. (thanks to @LucaGaspa for the feature request!) - Adds an
animationPosition
property that describes the position of the scroll animation (can be queried while the animation is in-progress). (thanks to @alexandre-odet for the suggestion!)
v4.1.1: Better "returned to home" notification
- Same fix as described in release 4.2.1
v4.2.1: Better "returned to home" notification
- Fixes an issue where the
labelReturnedToHome()
function was not being called in some cases, particularly if the scroll animation was interrupted by a frame resize (thanks to @alexandre-odet for helping to bring it to my attention!)