Skip to content

Commit

Permalink
Minor fixes and PR-merge (check the CHANGELOG)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThunderStruct committed Apr 5, 2020
1 parent f2265cf commit 499ee15
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ The changelog for `MSCircularSlider`. Summarized release notes can be found in t

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

## 1.3.1 - 05-04-2020
#### Fixed
- The slider moving even when the initial touch is not on the slider (thanks to @endy-s and @MoonshineSG)
- Triggering the `endedTrackingWith` delegate method before handle-snapping

#### Changed
- Some delegate methods fixed to actually be optional

## 1.3.0 - 02-07-2019
#### Added
- An option to bound the handle at 100% (after a given number of revolutions) and 0%, preventing endless looping
Expand Down
3 changes: 2 additions & 1 deletion MSCircularSlider.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Pod::Spec.new do |s|
s.name = 'MSCircularSlider'
s.version = '1.3.0'
s.version = '1.3.1'
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.swift_version = ['4.2', '5.0']
s.source = { :git => 'https://github.com/ThunderStruct/MSCircularSlider.git', :branch => "master", :tag => "1.3.0" }
s.source_files = 'MSCircularSlider/*.{swift}'

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<real key="value" value="25"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="_maximumRevolutions">
<integer key="value" value="1"/>
<integer key="value" value="0"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</view>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MSCircularSlider
[![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)
[![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)

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

Expand Down

0 comments on commit 499ee15

Please sign in to comment.