Releases: cbpowell/MarqueeLabel
Releases · cbpowell/MarqueeLabel
v3.1.6: Better shutdown handling
v3.1.5
v3.1.4: Improved .left/.right implementation
v3.1.3: Rate-speed correction
- [Swift] Fixes an issue where a label configured with a
.ratetype speed and zero delay would cause a crash. (see #196, thanks for the help @florianweich!)
v3.1.2: Class function access control
v3.1.1: contentMode and ScrollStep fixes
- Fixes issue #191: forwards the
contentModeproperty setting to the sublabel, which can help with size changes (thanks @FlaviaBondJamesBondsHusband!) - Fixes issue #192: Fixes the access levels for the
ScrollStepandFadeSteptypes (for generating custom scrolls), which were incorrectly not markedpublic(thanks @cyonix!)
v3.1.0: New types and better (Swift) customization
- [Common] Adds new MarqueeLabel types:
LeftandRight. These new types are non-returning scrolls, meaning they scroll in one direction (likeLeftRightandRightLeft), but then do not ever return to the "home" position. - [Swift] Adds the functionality to create custom scroll types using the
scrollSequenceproperty. The sequences can contain custom positions (between the basichomeandawaypositions) at custom timings, as well as flexibility with edge fades.
v3.0.5: LeftRight type sizing
- [Common] Corrects the
LeftRighttype to use the MarqueeLabelboundsheight rather than the calculatedexpectedLabelSizeheight (which may be incorrect for custom fonts). Hopefully fixes #38.
v3.0.4: Better Carthage support
- Sets the Framework deployment target to iOS 8.0, which helps with Carthage support (fixes #182, thanks @Dschee!)
v3.0.3: Conform to CAAnimationDelegate
- [Obj-C] Objective-C version now conforms to CAAnimationDelgate (fixes #180)