Skip to content

Commit

Permalink
Merge pull request #23 from jaewhyun/propertiesfileupdate
Browse files Browse the repository at this point in the history
updating build properties and tool properties
  • Loading branch information
jaewhyun committed Jun 16, 2018
2 parents 49b590e + ded96b4 commit 6bb23e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion processing-tool-template-3.0.2/resources/build.properties
Expand Up @@ -109,7 +109,7 @@ tool.categories=Other
# mentioning that it's a Tool. This should start with a capitalized letter, and
# end with a period.

tool.sentence=A Tool that gives a short introduction to the PDE for new/beginner users.
tool.sentence=A Tool that provides a quick introduction to the PDE for new/beginner users.


# Additional information suitable for the Processing website. The value of
Expand Down
18 changes: 9 additions & 9 deletions processing-tool-template-3.0.2/resources/tool.properties
Expand Up @@ -2,13 +2,13 @@
# UTF-8 supported.

# The name of your tool as you want it formatted.
name = ##tool.name##
name = Getting Started

# List of authors. Links can be provided using the syntax [author name](url).
authors = [##author.name##](##author.url##)
authors = [Jae Hyun](www.github.com/jaewhyun)

# A web page for your tool, NOT a direct link to where to download it.
url = ##tool.url##
url = www.github.com/jaewhyun/GettingStarted

# The category (or categories) of your tool, must be from the following list:
# "3D" "Animation" "Compilations" "Data"
Expand All @@ -18,14 +18,14 @@ url = ##tool.url##
#
# If a value other than those listed is used, your library will listed as
# "Other". Many categories must be comma-separated.
categories = ##tool.categories##
categories = Other

# A short sentence (or fragment) to summarize the tool's function. This will be
# shown from inside the PDE when the tool is being installed. Avoid repeating
# the name of your tool here. Also, avoid saying anything redundant like
# mentioning that it's a tool. This should start with a capitalized letter, and
# end with a period.
sentence = ##tool.sentence##
sentence = A Tool that provides a quick introduction to the PDE for new/beginner users.

# Additional information suitable for the Processing website. The value of
# 'sentence' always will be prepended, so you should start by writing the
Expand All @@ -41,17 +41,17 @@ paragraph = ##tool.paragraph##
# compare different versions of the same tool, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = ##tool.version## # This must be parsable as an int
version = 1

# The version as the user will see it. If blank, the version attribute will be
# used here. This should be a single word, with no spaces.
prettyVersion = ##tool.prettyVersion## # This is treated as a String
prettyVersion = 1.0.0

# The min and max revision of Processing compatible with your tool.
# Note that these fields use the revision and not the version of Processing,
# parsable as an int. For example, the revision number for 2.2.1 is 227.
# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
# Only use maxRevision (or minRevision), when your tool is known to break in a
# later (or earlier) release. Otherwise, use the default value 0.
minRevision = ##compatible.minRevision##
maxRevision = ##compatible.maxRevision##
minRevision = 228
maxRevision = 0

0 comments on commit 6bb23e3

Please sign in to comment.