Skip to content

Commit 499ee15

Browse files
committed
Minor fixes and PR-merge (check the CHANGELOG)
1 parent f2265cf commit 499ee15

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ The changelog for `MSCircularSlider`. Summarized release notes can be found in t
33

44
------------------------
55

6+
## 1.3.1 - 05-04-2020
7+
#### Fixed
8+
- The slider moving even when the initial touch is not on the slider (thanks to @endy-s and @MoonshineSG)
9+
- Triggering the `endedTrackingWith` delegate method before handle-snapping
10+
11+
#### Changed
12+
- Some delegate methods fixed to actually be optional
13+
614
## 1.3.0 - 02-07-2019
715
#### Added
816
- An option to bound the handle at 100% (after a given number of revolutions) and 0%, preventing endless looping

MSCircularSlider.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'MSCircularSlider'
3-
s.version = '1.3.0'
3+
s.version = '1.3.1'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.authors = { 'ThunderStruct' => '[email protected]' }
66
s.summary = 'A full-featured circular slider for iOS applications'
77
s.homepage = 'https://github.com/ThunderStruct/MSCircularSlider'
88

99
# Source Info
1010
s.platform = :ios, '9.3'
11+
s.swift_version = ['4.2', '5.0']
1112
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.3.0" }
1213
s.source_files = 'MSCircularSlider/*.{swift}'
1314

MSCircularSliderExample/MSCircularSliderExample/Base.lproj/Main.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<real key="value" value="25"/>
3737
</userDefinedRuntimeAttribute>
3838
<userDefinedRuntimeAttribute type="number" keyPath="_maximumRevolutions">
39-
<integer key="value" value="1"/>
39+
<integer key="value" value="0"/>
4040
</userDefinedRuntimeAttribute>
4141
</userDefinedRuntimeAttributes>
4242
</view>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MSCircularSlider
2-
[![Build Status](https://travis-ci.org/ThunderStruct/MSCircularSlider.svg?branch=master)](https://travis-ci.org/ThunderStruct/MSCircularSlider) [![Platform](https://img.shields.io/badge/platform-iOS-lightgrey.svg)](https://github.com/ThunderStruct/MSCircularSlider) [![CocoaPods](https://img.shields.io/badge/pod-1.3.0-blue.svg)](https://cocoapods.org/pods/MSCircularSlider) [![License](https://img.shields.io/cocoapods/l/AFNetworking.svg)](https://github.com/ThunderStruct/MSCircularSlider/blob/master/LICENSE)
2+
[![Build Status](https://travis-ci.org/ThunderStruct/MSCircularSlider.svg?branch=master)](https://travis-ci.org/ThunderStruct/MSCircularSlider) [![Platform](https://img.shields.io/badge/platform-iOS-lightgrey.svg)](https://github.com/ThunderStruct/MSCircularSlider) [![CocoaPods](https://img.shields.io/badge/pod-1.3.1-blue.svg)](https://cocoapods.org/pods/MSCircularSlider) [![License](https://img.shields.io/cocoapods/l/AFNetworking.svg)](https://github.com/ThunderStruct/MSCircularSlider/blob/master/LICENSE)
33

44
A fully `IBDesignable` and `IBInspectable` circular slider for iOS applications
55

0 commit comments

Comments
 (0)