Skip to content

Commit

Permalink
library and build properties files
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman committed Mar 13, 2014
1 parent c79d081 commit 405ae3b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 70 deletions.
30 changes: 15 additions & 15 deletions resources/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# For windows the default path to your sketchbook would be
# ${user.home}/My Documents/Processing (make adjustments below).

sketchbook.location=${user.home}/Documents/Processing
sketchbook.location=${user.home}/Dropbox/Processing



Expand All @@ -38,7 +38,7 @@ sketchbook.location=${user.home}/Documents/Processing
# Uncommenting the line below will overwrite the classpath.local.location from
# above.

classpath.local.location=/Applications/Processing.app/Contents/Resources/Java/core/library/
classpath.local.location=/Applications/Processing-2.1.app/Contents/Java/core/library/


# Add all jar files that are required for compiling your project to the local
Expand All @@ -59,7 +59,7 @@ classpath.libraries.location=${sketchbook.location}/libraries
# (3)
# Set the java version that should be used to compile your library.

java.target.version=1.6
java.target.version=1.7


# Set the description of the Ant build.xml file.
Expand All @@ -72,11 +72,11 @@ ant.description=ProcessingLibs Ant build file.
# Project details.
# Give your library a name. The name must not contain spaces or special characters.

project.name=YourLibrary
project.name=httprequests_processing

# The name as the user will see it. This can contain spaces and special characters.

project.prettyName=Your Library
project.prettyName=HTTP Requests for Processing


# Use 'normal' or 'fast' as value for project.compile.
Expand All @@ -98,14 +98,14 @@ project.compile=normal
# If you need more control, you can edit web/index.html and
# web/library.properties directly.

author.name=Your Name
author.url=http://yoururl.com
author.name=Rune Madsen
author.url=http://www.runemadsen.com


# Set the web page for your library.
# This is NOT a direct link to where to download it.

library.url=http://yourlibraryname.com
library.url=https://github.com/runemadsen/HTTProcessing


# Set the category of your library. This must be one (or many) of the following:
Expand Down Expand Up @@ -139,9 +139,9 @@ library.paragraph=
# Set the source code repository for your project.
# Recommendations for storing your source code online are Google Code or GitHub.

source.host=Google Code
source.url=http://code.google.com/p/yourProject
source.repository=http://code.google.com/p/yourProject/source/browse/
source.host=Github
source.url=https://github.com/runemadsen/HTTProcessing
source.repository=https://github.com/runemadsen/HTTProcessing


# The current version of your library.
Expand All @@ -154,18 +154,18 @@ library.version=1

# The version as the user will see it.

library.prettyVersion=1.0.0
library.prettyVersion=0.1.1


library.copyright=(c) 2013
library.copyright=(c) 2014
library.dependencies=?
library.keywords=?

tested.platform=osx,windows
tested.processingVersion=1.5
tested.processingVersion=2.1


# Include javadoc references into your project's javadocs.

javadoc.java.href=http://java.sun.com/javase/6/docs/api/
javadoc.processing.href=http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/
javadoc.processing.href=http://processing.org/reference/javadoc/core/
12 changes: 6 additions & 6 deletions resources/library.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# More on this file here: http://code.google.com/p/processing/wiki/LibraryBasics
# More on this file here: https://github.com/processing/processing/wiki/Library-Basics
# UTF-8 supported.

# The name of your library as you want it formatted.
name = HTTProcessing
name = HTTP Requests for Processing

# List of authors. Links can be provided using the syntax [author name](url).
authorList = [Rune Madsen](http://www.runemadsen.com)
authorList = [Rune Madsen](http://www.runemadsen.com), [Daniel Shiffman](http://shiffman.net])

# A web page for your library, NOT a direct link to where to download it.
url = http://github.com/runemadsen/HTTProcessing
Expand All @@ -25,13 +25,13 @@ category = Data
# repeating the name of your library here. Also, avoid saying anything redundant
# like mentioning that it's a library. This should start with a capitalized
# letter, and end with a period.
sentence = HTTProcessing is a small library that takes the pain out of doing HTTP requests in Processing.
sentence = HTTP Requests for Processing is a small library that takes the pain out of doing HTTP requests in Processing.

# Additional information suitable for the Processing website. The value of
# 'sentence' always will be prepended, so you should start by writing the
# second sentence here. If your library only works on certain operating systems,
# mention it here.
paragraph =
paragraph =

# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
# same syntax as for authors.
Expand All @@ -46,4 +46,4 @@ version = 1 # This must be parsable as an int

# The version as the user will see it. If blank, the version attribute will be
# used here.
prettyVersion = 0.1.1 # This is treated as a String
prettyVersion = 0.1.1 # This is treated as a String
49 changes: 0 additions & 49 deletions resources/library.properties.template

This file was deleted.

0 comments on commit 405ae3b

Please sign in to comment.