Skip to content

Commit

Permalink
Bump to v3.0.0 #6
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl committed Sep 14, 2016
1 parent 42d3810 commit 7999709
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Example/DynamicButton/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.1.0</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Example/DynamicButtonExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.0</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Example/TVExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.0</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

DynamicButton is a powerful flat design button written in Swift to display *hamburger button* like with animated transitions between style updates. It also allows you to create your own custom symbol / style buttons!

![DynamicButton](http://yannickloriot.com/resources/dynamicbutton.gif)
<p align="center">
<img src="http://yannickloriot.com/resources/dynamicbutton.gif" alt="DynamicButton" />
</p>

*Notes: compatible iOS 8.x and over and tvOS 9.x*
*N.B 1: compatible iOS 8.x and over and tvOS 9.x*

*N.B 2: This branch is Swift 3 compatible, use the [v2 version](https://github.com/yannickl/DynamicButton/tree/2.1.0) for Swift 2.x.*

## Usage

Expand Down Expand Up @@ -150,6 +154,24 @@ To integrate `DynamicButton` into your Xcode project using Carthage, specify it
github "yannickl/DynamicButton" >= 3.0.0
```

#### Swift Package Manager

You can use [The Swift Package Manager](https://swift.org/package-manager) to install `DynamicButton` by adding the proper description to your `Package.swift` file:

```swift
import PackageDescription

let package = Package(
name: "YOUR_PROJECT_NAME",
targets: [],
dependencies: [
.Package(url: "https://github.com/yannickl/DynamicButton.git", versions: "3.0.0" ..< Version.max)
]
)
```

Note that the [Swift Package Manager](https://swift.org/package-manager) is still in early design and development, for more information checkout its [GitHub Page](https://github.com/apple/swift-package-manager).

#### Manually

[Download](https://github.com/YannickL/DynamicButton/archive/master.zip) the project and copy the `DynamicButton` folder into your project to use it in.
Expand Down

0 comments on commit 7999709

Please sign in to comment.