Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Releases: luispadron/UICircularProgressRing

Version 2.2.0

22 Jun 22:59
Compare
Choose a tag to compare

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

22 Jun 02:18
Compare
Choose a tag to compare
  • Add example playground

Version 2.1.2

20 Jun 22:22
Compare
Choose a tag to compare

Enable app safe extension API

Version 2.1.1

11 Jun 22:53
Compare
Choose a tag to compare
  • Build with Swift 4.1.2

Version 2.1.0

14 May 19:14
Compare
Choose a tag to compare

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 when rightToLeft = true, the progress will be GB 100 instead of 100 GB.

Version 2.0.0

12 Apr 23:50
Compare
Choose a tag to compare

Version 2.0.0

Add feature requested in #86 and general clean up and refactoring of API.

  • Add new ring paramater to functions didUpdateProgressValue and willDisplayLabel so that they can be used with multiple rings if needed.

Breaking API Changes

  • finishedUpdatingProgress(forRing:) now changed to finishedUpdatingProgress(for:)
  • didUpdateProgressValue(to:) now changed to didUpdateProgressValue(for:to:)
  • willDisplayLabel(label:) now changed to willDisplayLabel(for:_:)
  • setProgress(value:animationDuration:completion:) now changed to setProgress(to:duration:completion:)

Version 1.8.5

04 Apr 16:37
Compare
Choose a tag to compare

Version 1.8.5

  • Build project with Swift 4.1

Version 1.8.4

16 Feb 19:38
Compare
Choose a tag to compare

Version 1.8.4

  • Mark delegate methods as @objc optional to allow default or optional conformance, thanks to @AbelToy

Version 1.8.3

14 Feb 20:18
Compare
Choose a tag to compare

Version 1.8.3

  • Fix issue with @objc and new willDisplayLabel method in UICircularProgressRingDelegate.

Version 1.8.2

14 Feb 05:07
Compare
Choose a tag to compare

Version 1.8.2

  • Add ability to modify ring label before drawing, thanks to @hohteri