Skip to content

Commit

Permalink
Merge branch 'release/1.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
pisces committed May 18, 2021
2 parents 21c24d1 + e93ce34 commit 8be000a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- UINavigationBarDecorator (1.0.3)
- UINavigationBarDecorator (1.0.5)

DEPENDENCIES:
- UINavigationBarDecorator (from `../`)
Expand All @@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
UINavigationBarDecorator: a67deb06462d44648042442c88c684bf89bd1ca9
UINavigationBarDecorator: a09aaf81c7aec1a2293b81e62cbfd654e6aad24b

PODFILE CHECKSUM: e69d0e1d31440c59ccc6e4a46a16a38f45d97e83

COCOAPODS: 1.9.3
COCOAPODS: 1.10.1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ To run the example project, clone the repo, and run `pod install` from the Examp

## Requirements

iOS SDK 10.0 equal or higher
iOS SDK 9.0 equal or higher

## Installation

Expand All @@ -189,7 +189,7 @@ $ brew install carthage
To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "pisces/UINavigationBarDecorator" ~> 1.0.5
github "pisces/UINavigationBarDecorator" ~> 1.0.6
```

Run `carthage update` to build the framework and drag the built `UINavigationBarDecorator.framework` into your Xcode project.
Expand Down
4 changes: 2 additions & 2 deletions UINavigationBarDecorator.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

Pod::Spec.new do |s|
s.name = 'UINavigationBarDecorator'
s.version = '1.0.5'
s.version = '1.0.6'
s.summary = 'Compatible UINavigationBarAppearance'
s.description = 'Compatible UINavigationBarAppearance for all iOS versions'
s.homepage = 'https://github.com/pisces/UINavigationBarDecorator'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.author = { 'Steve Kim' => '[email protected]' }
s.source = { :git => 'https://github.com/pisces/UINavigationBarDecorator.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.ios.deployment_target = '9.0'
s.source_files = 'UINavigationBarDecorator/Classes/**/*'
end
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ open class PageSheetNavigationBar: AdvancedNavigationBar {
private lazy var thumbLayer: CALayer = {
let layer = CALayer()
layer.cornerRadius = 2
layer.backgroundColor = UIColor(displayP3Red: 166 / 255, green: 166 / 255, blue: 128 / 255, alpha: 0.18).cgColor
layer.backgroundColor = UIColor(red: 166 / 255, green: 166 / 255, blue: 128 / 255, alpha: 0.18).cgColor
layer.frame.size = .init(width: 44, height: 4)
return layer
}()
Expand Down

0 comments on commit 8be000a

Please sign in to comment.