Updated metadata

This commit is contained in:
Joe Blau 2014-03-23 21:21:39 -07:00
parent 0d54d40d3d
commit b841b36634
23 changed files with 789 additions and 741 deletions

View File

@ -1,4 +1,4 @@
# TouchVisualizer CHANGELOG
# COSTouchVisualizer CHANGELOG
## 0.1.0

View File

@ -0,0 +1,35 @@
#
# Be sure to run `pod spec lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "COSTouchVisualizer"
s.version = "0.1.0"
s.summary = "Visualize iOS finger touches, gestures and holds on external displays"
s.description = <<-DESC
Touch Screen Visualizer visualizes your touches, gestures, and holds on
the screen. Touches are visualized by a circle fading out and expanding.
Gestures are visualized by smaller ripples fading in. Holds are
are visualized by a morphing effect on the circle.
The library also lets you customize the color and opacity of and border
of the touch circles.
DESC
s.homepage = "https://github.com/conopsys/COSTouchVisualizer"
s.screenshots = "https://raw.githubusercontent.com/conopsys/COSTouchVisualizer/master/screenshot-drag.png", "https://raw.githubusercontent.com/conopsys/COSTouchVisualizer/master/screenshot-press.png"
s.license = 'MIT'
s.author = { "Joe Blau" => "josephblau@gmail.com" }
s.source = { :git => "https://github.com/conopsys/COSTouchVisualizer.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/joe_blau'
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Classes'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
end

View File

@ -10,9 +10,9 @@
// Turn this on to debug touches during development.
#ifdef TARGET_IPHONE_SIMULATOR
#define DEBUG_FINGERTIP_WINDOW 1
#define DEBUG_FINGERTIP_WINDOW 0
#else
#define DEBUG_FINGERTIP_WINDOW 1
#define DEBUG_FINGERTIP_WINDOW 0
#endif
@interface COSTouchSpotView : UIImageView

View File

@ -1 +1 @@
pod "TouchVisualizer", :path => "../TouchVisualizer.podspec"
pod "COSTouchVisualizer", :path => "../COSTouchVisualizer.podspec"

View File

@ -1,14 +1,14 @@
PODS:
- TouchVisualizer (0.1.0)
- COSTouchVisualizer (0.1.0)
DEPENDENCIES:
- TouchVisualizer (from `../TouchVisualizer.podspec`)
- COSTouchVisualizer (from `../COSTouchVisualizer.podspec`)
EXTERNAL SOURCES:
TouchVisualizer:
:path: ../TouchVisualizer.podspec
COSTouchVisualizer:
:path: ../COSTouchVisualizer.podspec
SPEC CHECKSUMS:
TouchVisualizer: 94db8af822148de722b5eeb5b6b7efc33332069a
COSTouchVisualizer: 41d7ccb9beac84e52af1cef9274541bac945ba9d
COCOAPODS: 0.29.0

View File

@ -0,0 +1,35 @@
#
# Be sure to run `pod spec lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "COSTouchVisualizer"
s.version = "0.1.0"
s.summary = "Visualize iOS finger touches, gestures and holds on external displays"
s.description = <<-DESC
Touch Screen Visualizer visualizes your touches, gestures, and holds on
the screen. Touches are visualized by a circle fading out and expanding.
Gestures are visualized by smaller ripples fading in. Holds are
are visualized by a morphing effect on the circle.
The library also lets you customize the color and opacity of and border
of the touch circles.
DESC
s.homepage = "https://github.com/conopsys/COSTouchVisualizer"
s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Joe Blau" => "josephblau@gmail.com" }
s.source = { :git => "https://github.com/conopsys/COSTouchVisualizer.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/joe_blau'
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Classes'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
end

View File

@ -1,14 +1,14 @@
PODS:
- TouchVisualizer (0.1.0)
- COSTouchVisualizer (0.1.0)
DEPENDENCIES:
- TouchVisualizer (from `../TouchVisualizer.podspec`)
- COSTouchVisualizer (from `../COSTouchVisualizer.podspec`)
EXTERNAL SOURCES:
TouchVisualizer:
:path: ../TouchVisualizer.podspec
COSTouchVisualizer:
:path: ../COSTouchVisualizer.podspec
SPEC CHECKSUMS:
TouchVisualizer: 94db8af822148de722b5eeb5b6b7efc33332069a
COSTouchVisualizer: 41d7ccb9beac84e52af1cef9274541bac945ba9d
COCOAPODS: 0.29.0

View File

@ -0,0 +1,5 @@
#include "Pods-COSTouchVisualizer.xcconfig"
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/BuildHeaders" "${PODS_ROOT}/BuildHeaders/COSTouchVisualizer" "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/COSTouchVisualizer"
OTHER_LDFLAGS = -ObjC
PODS_ROOT = ${SRCROOT}

View File

@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_COSTouchVisualizer : NSObject
@end
@implementation PodsDummy_Pods_COSTouchVisualizer
@end

View File

@ -0,0 +1,5 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-environment.h"

View File

View File

@ -1,7 +1,7 @@
# Acknowledgements
This application makes use of the following third party libraries:
## TouchVisualizer
## COSTouchVisualizer
Copyright (c) 2014 Joe Blau <josephblau@gmail.com>

View File

@ -35,7 +35,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
<key>Title</key>
<string>TouchVisualizer</string>
<string>COSTouchVisualizer</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>

View File

@ -6,9 +6,9 @@
// project.
// TouchVisualizer
#define COCOAPODS_POD_AVAILABLE_TouchVisualizer
#define COCOAPODS_VERSION_MAJOR_TouchVisualizer 0
#define COCOAPODS_VERSION_MINOR_TouchVisualizer 1
#define COCOAPODS_VERSION_PATCH_TouchVisualizer 0
// COSTouchVisualizer
#define COCOAPODS_POD_AVAILABLE_COSTouchVisualizer
#define COCOAPODS_VERSION_MAJOR_COSTouchVisualizer 0
#define COCOAPODS_VERSION_MINOR_COSTouchVisualizer 1
#define COCOAPODS_VERSION_PATCH_COSTouchVisualizer 0

View File

@ -1,5 +1,5 @@
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/TouchVisualizer"
OTHER_CFLAGS = $(inherited) "-isystem${PODS_ROOT}/Headers" "-isystem${PODS_ROOT}/Headers/TouchVisualizer"
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers" "${PODS_ROOT}/Headers/COSTouchVisualizer"
OTHER_CFLAGS = $(inherited) "-isystem${PODS_ROOT}/Headers" "-isystem${PODS_ROOT}/Headers/COSTouchVisualizer"
OTHER_LDFLAGS = -ObjC
PODS_ROOT = ${SRCROOT}/Pods

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,9 @@
# TouchVisualizer
# COSTouchVisualizer
![TouchVisualizer](https://raw.githubusercontent.com/conopsys/TouchVisualizer/master/touchvisdemo.gif "TouchVisualizer iOS")
![COSTouchVisualizer](https://raw.githubusercontent.com/conopsys/COSTouchVisualizer/master/touchvisdemo.gif "COSTouchVisualizer iOS")
[![Version](http://cocoapod-badges.herokuapp.com/v/TouchVisualizer/badge.png)](http://cocoadocs.org/docsets/TouchVisualizer)
[![Platform](http://cocoapod-badges.herokuapp.com/p/TouchVisualizer/badge.png)](http://cocoadocs.org/docsets/TouchVisualizer)
[![Version](http://cocoapod-badges.herokuapp.com/v/COSTouchVisualizer/badge.png)](http://cocoadocs.org/docsets/COSTouchVisualizer)
[![Platform](http://cocoapod-badges.herokuapp.com/p/COSTouchVisualizer/badge.png)](http://cocoadocs.org/docsets/COSTouchVisualizer)
## Usage
@ -58,10 +58,10 @@ To run the example project; clone the repo, and run `pod install` from the Examp
## Installation
TouchVisualizer is available through [CocoaPods](http://cocoapods.org), to install
COSTouchVisualizer is available through [CocoaPods](http://cocoapods.org), to install
it simply add the following line to your Podfile:
pod "TouchVisualizer"
pod "COSTouchVisualizer"
## Author
@ -69,4 +69,4 @@ Joe Blau, josephblau@gmail.com
## License
TouchVisualizer is available under the MIT license. See the LICENSE file for more info.
COSTouchVisualizer is available under the MIT license. See the LICENSE file for more info.

View File

@ -1,37 +0,0 @@
#
# Be sure to run `pod spec lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "TouchVisualizer"
s.version = "0.1.0"
s.summary = "A short description of TouchVisualizer."
s.description = <<-DESC
An optional longer description of TouchVisualizer
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "http://EXAMPLE/NAME"
s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Joe Blau" => "josephblau@gmail.com" }
s.source = { :git => "http://EXAMPLE/NAME.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/NAME'
# s.platform = :ios, '5.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
# s.resources = 'Resources'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end

BIN
screenshot-drag.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
screenshot-press.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 KiB

After

Width:  |  Height:  |  Size: 287 KiB