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

Commit 4103db1

Browse files
author
Luis Padron
committed
Version 1.4.1, fix issue with value indiciator
1 parent c18273b commit 4103db1

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 1.4.1
2+
3+
- Fix bug where the default `valueIndicator` _'%'_ - was not set on initialization
4+
5+
#### Breaking API Changes in 1.4.1
6+
7+
Nothing really, but previously if you had not set the `valueIndicator` property then there would be no value indicator shown to the right of the value. This was not inteded and has been fixed in this release. If you prefer to have no value indicator, you must now explicitly set the property to empty
8+
9+
```swift
10+
ring.valueIndicator = ""
11+
```
12+
113
# Version 1.4.0
214

315
- Remove the `fontSize` and `customFontWithName` properties

UICircularProgressRing.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Pod::Spec.new do |s|
33

44
s.name = "UICircularProgressRing"
5-
s.version = "1.4.0"
5+
s.version = "1.4.1"
66
s.summary = "A highly customizable circular progress bar for iOS written in Swift 3"
77

88
s.description = <<-DESC

UICircularProgressRing/UICircularProgressRingView.swift

+1
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ import UIKit
570570
self.ringLayer.innerCapStyle = inStyle
571571
self.ringLayer.innerRingSpacing = innerRingSpacing
572572
self.ringLayer.shouldShowValueText = shouldShowValueText
573+
self.ringLayer.valueIndicator = valueIndicator
573574
self.ringLayer.fontColor = fontColor
574575
self.ringLayer.font = font
575576
self.ringLayer.showFloatingPoint = showFloatingPoint

0 commit comments

Comments
 (0)