Skip to content

Commit

Permalink
Version 1.2.4 release (added more tests and updated readme)
Browse files Browse the repository at this point in the history
  • Loading branch information
dehli committed Apr 9, 2016
1 parent f2b3f0b commit f1b73d3
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.2.4

- Added a few more tests
- Updated `README.md`

# 1.2.3

- Added a handful of tests
Expand Down
2 changes: 1 addition & 1 deletion Demo/TouchDrawDemo/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>1.2.3</string>
<string>1.2.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If programmatically adding the view, you can use the `init(frame: CGRect)` metho

#### Customizing

The first step when customizing the `TouchDrawView` is setting its delegate. The container must conform to `TouchDrawViewDelegate`, which has the following functions:
The first step when customizing the `TouchDrawView` is setting its `delegate`. The container must conform to `TouchDrawViewDelegate`, which has the following functions:

```
func undoEnabled() -> Void {
Expand Down Expand Up @@ -88,4 +88,14 @@ The `TouchDrawView` exposes the following methods:

If you'd like to see this library in action, you can download the entire repository and open [Demo/TouchDrawDemo.xcworkspace](Demo/TouchDrawDemo.xcworkspace).

[Demo/TouchDrawDemo/ViewController.swift](Demo/TouchDrawDemo/ViewController.swift) is where most of its functionality is demonstrated.

![Demo Screenshot](https://cloud.githubusercontent.com/assets/5856011/13918081/4b2fae7e-ef3b-11e5-96bd-978b62895aa7.png)

## Contributors

If you'd like to see additional functionality, feel free to open up a new issue or submit a pull request if you'd like to author it yourself.

## License

This package has the MIT license, which can be found here: [LICENSE](LICENSE).
2 changes: 1 addition & 1 deletion TouchDraw.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Pod::Spec.new do |s|

s.name = "TouchDraw"
s.version = "1.2.3"
s.version = "1.2.4"
s.summary = "TouchDraw is a UIView you can draw on."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion TouchDraw/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>1.2.3</string>
<string>1.2.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit f1b73d3

Please sign in to comment.