diff --git a/GradientLoadingBar.podspec b/GradientLoadingBar.podspec index 750465f..8890b82 100644 --- a/GradientLoadingBar.podspec +++ b/GradientLoadingBar.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'GradientLoadingBar' - s.version = '1.1.0' + s.version = '1.1.1' s.license = { :type => 'MIT', :file => 'LICENSE' } s.summary = 'An animated gradient loading bar.' s.description = 'An animated gradient loading bar. Inspired by http://www.cssscript.com/ios-style-gradient-progress-bar-with-pure-css-css3/' @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.screenshot = 'http://felix.hamburg/files/github/gradient-loading-bar/screen.gif' s.author = { 'Felix Mau' => 'contact@felix.hamburg' } - s.source = { :git => 'https://github.com/fxm90/GradientLoadingBar.git', :tag => '1.1.0' } + s.source = { :git => 'https://github.com/fxm90/GradientLoadingBar.git', :tag => '1.1.1' } s.source_files = 'GradientLoadingBar', 'GradientLoadingBar/**/*.swift' s.platform = :ios, '9.0' diff --git a/readme.md b/readme.md index 3d1298f..83b2ec8 100644 --- a/readme.md +++ b/readme.md @@ -43,7 +43,7 @@ For custom colors you have to pass an array with `CGColor` values. For creating If you don't want to save the instance on a variable and use the singleton instead, you can use the `saveInstance()` method. Add the following code to your app delegate `didFinishLaunchingWithOptions` method: ```swift GradientLoadingBar( - height: 1.0, + height: 3.0, durations: Durations(fadeIn: 1.0, fadeOut: 2.0, progress: 3.00), gradientColors: [ UIColor(hexString:"#4cd964").cgColor, @@ -58,7 +58,7 @@ After that you can use `GradientLoadingBar.sharedInstance()` as mentioned above. Check out [my GitHub Gist](https://gist.github.com/fxm90/698554e8335f34e0c6ab95194a4678fb) on how to easily use GradientLoadingBar with [PromiseKit](http://promisekit.org/). ### Version -1.1.0 +1.1.1 ### Author Felix Mau (contact(@)felix.hamburg)