diff --git a/.gitignore b/.gitignore index cab8c69..8c160d2 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,5 @@ Carthage/Build fastlane/report.xml fastlane/Preview.html fastlane/screenshots -fastlane/test_output \ No newline at end of file +fastlane/test_output +.DS_Store diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 03e3548..e1127d7 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - HGCircularSlider (1.0.1) + - HGCircularSlider (1.0.2) DEPENDENCIES: - HGCircularSlider (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - HGCircularSlider: 3fb33a1bacdb459eb490f26a4739ca0057df48c4 + HGCircularSlider: e7ded3c342cf180d2b751a444aeb603c61b1f3fd PODFILE CHECKSUM: 7cb4c64ce59896052589f93ba9b0ea50a207f738 diff --git a/Example/Pods/Local Podspecs/HGCircularSlider.podspec.json b/Example/Pods/Local Podspecs/HGCircularSlider.podspec.json index 2d48dea..42436d8 100644 --- a/Example/Pods/Local Podspecs/HGCircularSlider.podspec.json +++ b/Example/Pods/Local Podspecs/HGCircularSlider.podspec.json @@ -1,6 +1,6 @@ { "name": "HGCircularSlider", - "version": "1.0.1", + "version": "1.0.2", "summary": "Multiple Circular Sliders used to select a value from a continuous range of values.", "description": "Circular Sliders used to select a value from a continuous range of values.\n\nCircularSlider: simple circular slider\nRangeCircularSlider: slider with two points to select a range of values from a continuous range of values\nMidPointCircularSlider: slider with fixed range to select a range of values from a continuois range of values", "homepage": "https://github.com/HamzaGhazouani/HGCircularSlider", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/HamzaGhazouani/HGCircularSlider.git", - "tag": "1.0.1" + "tag": "1.0.2" }, "social_media_url": "https://twitter.com/GhazouaniHamza", "platforms": { diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 03e3548..e1127d7 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,5 @@ PODS: - - HGCircularSlider (1.0.1) + - HGCircularSlider (1.0.2) DEPENDENCIES: - HGCircularSlider (from `../`) @@ -9,7 +9,7 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - HGCircularSlider: 3fb33a1bacdb459eb490f26a4739ca0057df48c4 + HGCircularSlider: e7ded3c342cf180d2b751a444aeb603c61b1f3fd PODFILE CHECKSUM: 7cb4c64ce59896052589f93ba9b0ea50a207f738 diff --git a/Example/Pods/Target Support Files/HGCircularSlider/Info.plist b/Example/Pods/Target Support Files/HGCircularSlider/Info.plist index 3c175b6..b35ab35 100644 --- a/Example/Pods/Target Support Files/HGCircularSlider/Info.plist +++ b/Example/Pods/Target Support Files/HGCircularSlider/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.1 + 1.0.2 CFBundleSignature ???? CFBundleVersion diff --git a/HGCircularSlider.podspec b/HGCircularSlider.podspec index d1240b1..9ee9842 100644 --- a/HGCircularSlider.podspec +++ b/HGCircularSlider.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'HGCircularSlider' -s.version = '1.0.1' +s.version = '1.0.2' s.summary = 'Multiple Circular Sliders used to select a value from a continuous range of values.' diff --git a/HGCircularSlider/Classes/RangeCircularSlider.swift b/HGCircularSlider/Classes/RangeCircularSlider.swift index ce23397..755f237 100644 --- a/HGCircularSlider/Classes/RangeCircularSlider.swift +++ b/HGCircularSlider/Classes/RangeCircularSlider.swift @@ -64,7 +64,7 @@ open class RangeCircularSlider: CircularSlider { * The minimum value of the receiver. * * If you change the value of this property, and the start value of the receiver is below the new minimum, the start value is adjusted to match the new minimum value automatically. - * The end value is also adjusted to match (startPointValue + distance) automatically (see startPointValue) + * The end value is also adjusted to match (startPointValue + distance) automatically if the distance is different to -1 (SeeAlso: startPointValue, distance) * The default value of this property is 0.0. */ override open var minimumValue: CGFloat { @@ -79,7 +79,7 @@ open class RangeCircularSlider: CircularSlider { * The maximum value of the receiver. * * If you change the value of this property, and the end value of the receiver is above the new maximum, the end value is adjusted to match the new maximum value automatically. - * The start value is also adjusted to match (endPointValue - distance) automatically (see endPointValue) + * The start value is also adjusted to match (endPointValue - distance) automatically if the distance is different to -1 (see endPointValue, distance) * The default value of this property is 1.0. */ @IBInspectable diff --git a/README.md b/README.md index d18fe8e..37a252d 100644 --- a/README.md +++ b/README.md @@ -58,11 +58,11 @@ You can also install documentation locally using [jazzy](https://github.com/real ## References The UI examples of the demo project inspired from [Dribbble](https://dribbble.com). - [Player](https://dribbble.com/shots/3062636-Countdown-Timer-Daily-UI-014) - [BasicExample](https://dribbble.com/shots/2153963-Dompet-Wallet-App) - [OClock](https://dribbble.com/shots/2671286-Clock-Alarm-app) +[Player](https://dribbble.com/shots/3062636-Countdown-Timer-Daily-UI-014)
+[BasicExample](https://dribbble.com/shots/2153963-Dompet-Wallet-App)
+[OClock](https://dribbble.com/shots/2671286-Clock-Alarm-app)
-The project is Inspired from [UICircularSlider](https://github.com/Zedenem/UICircularSlider) +The project is Inspired by [UICircularSlider](https://github.com/Zedenem/UICircularSlider) ## Author