Skip to content

Commit

Permalink
Multiple enhancements and new features
Browse files Browse the repository at this point in the history
  • Loading branch information
ThunderStruct committed Feb 2, 2018
1 parent 12bb4c6 commit 5b98092
Show file tree
Hide file tree
Showing 19 changed files with 898 additions and 357 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,24 @@ The changelog for `MSCircularSlider`. Summarized release notes can be found in t

------------------------

## 1.2.0 - 02-02-2018
#### Added
- A handle image property to assign a `UIImage` to the handle(s)
- Documentation for all exposed methods and members

#### Changed
- Major `MSCircularSliderHandle` structural enhancement

#### Fixed
- An issue that caused the `.doubleCircle` handle type to not highlight upon touch


## 1.1.1 - 28-12-2017
#### Fixed
- Access control levels causing IB to crash
- Podspec file configuration


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

## 0.X.X
All prerelease changes are not logged

4 changes: 2 additions & 2 deletions MSCircularSlider.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'MSCircularSlider'
s.version = '1.1.1'
s.version = '1.2.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ThunderStruct' => 'mohamedshahawy@aucegypt.edu' }
s.summary = 'A full-featured circular slider for iOS applications'
s.homepage = 'https://github.com/ThunderStruct/MSCircularSlider'

# Source Info
s.platform = :ios, '9.3'
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.1.1" }
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.2.0" }
s.source_files = 'MSCircularSlider/*.{swift}'

s.requires_arc = true
Expand Down
10 changes: 9 additions & 1 deletion MSCircularSlider/MSCircularSlider+IB.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,15 @@ extension MSCircularSlider {
handleColor = newValue
}
}

@IBInspectable public var _handleImage: UIImage {
get {
return handleImage ?? UIImage()
}
set {
handleImage = newValue
}
}

@IBInspectable public var _handleEnlargementPoints: Int {
get {
Expand Down Expand Up @@ -228,4 +237,3 @@ extension MSCircularSlider {




Loading

0 comments on commit 5b98092

Please sign in to comment.