Skip to content

Commit 5b98092

Browse files
committed
Multiple enhancements and new features
1 parent 12bb4c6 commit 5b98092

19 files changed

+898
-357
lines changed

CHANGELOG.md

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

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

6+
## 1.2.0 - 02-02-2018
7+
#### Added
8+
- A handle image property to assign a `UIImage` to the handle(s)
9+
- Documentation for all exposed methods and members
10+
11+
#### Changed
12+
- Major `MSCircularSliderHandle` structural enhancement
13+
14+
#### Fixed
15+
- An issue that caused the `.doubleCircle` handle type to not highlight upon touch
16+
17+
618
## 1.1.1 - 28-12-2017
719
#### Fixed
820
- Access control levels causing IB to crash
921
- Podspec file configuration
1022

23+
1124
## 1.1.0 - 27-12-2017
1225
#### Added
1326
- Support for using `snapToLabels` concurrently with `snapToMarkers` (snaps to the nearest label or marker)
@@ -29,3 +42,4 @@ The changelog for `MSCircularSlider`. Summarized release notes can be found in t
2942

3043
## 0.X.X
3144
All prerelease changes are not logged
45+

MSCircularSlider.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'MSCircularSlider'
3-
s.version = '1.1.1'
3+
s.version = '1.2.0'
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.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.1.1" }
11+
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.2.0" }
1212
s.source_files = 'MSCircularSlider/*.{swift}'
1313

1414
s.requires_arc = true

MSCircularSlider/MSCircularSlider+IB.swift

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,15 @@ extension MSCircularSlider {
113113
handleColor = newValue
114114
}
115115
}
116+
117+
@IBInspectable public var _handleImage: UIImage {
118+
get {
119+
return handleImage ?? UIImage()
120+
}
121+
set {
122+
handleImage = newValue
123+
}
124+
}
116125

117126
@IBInspectable public var _handleEnlargementPoints: Int {
118127
get {
@@ -228,4 +237,3 @@ extension MSCircularSlider {
228237

229238

230239

231-

0 commit comments

Comments
 (0)