This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
Releases: luispadron/UICircularProgressRing
Releases · luispadron/UICircularProgressRing
Version 2.2.0
Version 2.2.0
- Add new
isClockwise
property which allows users of the library to
set whether or not the ring should rotate in a clockwise fashion.
Thanks to @petewalker for adding this!
Version 2.1.3
- Add example playground
Version 2.1.2
Enable app safe extension API
Version 2.1.1
- Build with Swift 4.1.2
Version 2.1.0
Version 2.1.0
Add right-to-left language support, thanks eladhayun.
- New property
rightToLeft
which when set to true will display the ring with RTL language support, for example whenrightToLeft = true
, the progress will beGB 100
instead of100 GB
.
Version 2.0.0
Version 2.0.0
Add feature requested in #86 and general clean up and refactoring of API.
- Add new
ring
paramater to functionsdidUpdateProgressValue
andwillDisplayLabel
so that they can be used with multiple rings if needed.
Breaking API Changes
finishedUpdatingProgress(forRing:)
now changed tofinishedUpdatingProgress(for:)
didUpdateProgressValue(to:)
now changed todidUpdateProgressValue(for:to:)
willDisplayLabel(label:)
now changed towillDisplayLabel(for:_:)
setProgress(value:animationDuration:completion:)
now changed tosetProgress(to:duration:completion:)
Version 1.8.5
Version 1.8.5
- Build project with Swift 4.1
Version 1.8.4
Version 1.8.4
- Mark delegate methods as
@objc optional
to allow default or optional conformance, thanks to @AbelToy
Version 1.8.3
Version 1.8.3
- Fix issue with
@objc
and newwillDisplayLabel
method inUICircularProgressRingDelegate
.
Version 1.8.2
Version 1.8.2
- Add ability to modify ring label before drawing, thanks to @hohteri