Skip to content

Commit

Permalink
Update build and properties file- Ready to ship!
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmoniz committed Feb 15, 2016
1 parent d61f0cd commit a46a274
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
21 changes: 13 additions & 8 deletions resources/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ author.url=http://joelmoniz.com
# Set the web page for your tool.
# This is NOT a direct link to where to download it.

tool.url=http://joelmoniz.com/Shape-Sketch
tool.url=https://github.com/joelmoniz/Shape-Sketch


# Set the category of your tool. This must be one (or many) of the following:
Expand All @@ -122,24 +122,26 @@ tool.url=http://joelmoniz.com/Shape-Sketch
# "Sound" "Utilities" "Typography" "Video & Vision"
# If a value other than those listed is used, your tool will listed as "Other."

tool.category=GUI,Geometry
tool.categories=GUI,Geometry


# 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.

tool.sentence=A collection of utilities for solving this and that problem.
# Paint on a canvas; generate processing code. Easy peasy!
# Generate processing code from shapes on a canvas
# Draw simple shapes on a canvas and automatically generate processing code.
tool.sentence=Paint on a canvas; generate processing code. Easy peasy!


# 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 tool only works on certain operating systems,
# mention it here.

tool.paragraph=
tool.paragraph= This tool enables quickly drawing and coloring in shapes, and then automatically converts everything into processing code.


# Set the source code repository for your project.
Expand All @@ -160,15 +162,18 @@ tool.version=1

# The version as the user will see it.

tool.prettyVersion=0.0.1
tool.prettyVersion=0.8.0
tool.minRevision=0245
tool.maxRevision=0
tool.lastUpdated=1455510195000


tool.copyright=(c) 2014
tool.copyright=(c) 2016
tool.dependencies=?
tool.keywords=?

tested.platform=windows
tested.processingVersion=3.0a2
tested.processingVersion=3.0b7+


# Include javadoc references into your project's javadocs.
Expand Down
5 changes: 4 additions & 1 deletion resources/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,12 @@ ${line}

<replaceregexp file="${file}" match="##tool.version##" replace="${tool.version}" flags="g" />
<replaceregexp file="${file}" match="##tool.prettyVersion##" replace="${tool.prettyVersion}" flags="g" />
<replaceregexp file="${file}" match="##tool.minRevision##" replace="${tool.minRevision}" flags="g" />
<replaceregexp file="${file}" match="##tool.maxRevision##" replace="${tool.maxRevision}" flags="g" />
<replaceregexp file="${file}" match="##tool.lastUpdated##" replace="${tool.lastUpdated}" flags="g" />

<replaceregexp file="${file}" match="##tool.url##" replace="${tool.url}" flags="g" />
<replaceregexp file="${file}" match="##tool.category##" replace="${tool.category}" flags="g" />
<replaceregexp file="${file}" match="##tool.categories##" replace="${tool.categories}" flags="g" />
<replaceregexp file="${file}" match="##tool.sentence##" replace="${tool.sentence}" flags="g" />
<replaceregexp file="${file}" match="##tool.paragraph##" replace="${tool.paragraph}" flags="g" />
<replaceregexp file="${file}" match="##tool.keywords##" replace="${tool.keywords}" flags="g" />
Expand Down
8 changes: 6 additions & 2 deletions resources/tool.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name = ##tool.name##

# List of authors. Links can be provided using the syntax [author name](url).
authorList = [##author.name##](##author.url##)
authors = [##author.name##](##author.url##)

# A web page for your tool, NOT a direct link to where to download it.
url = ##tool.url##
Expand All @@ -17,7 +17,7 @@ url = ##tool.url##
# "Sound" "Utilities" "Typography" "Video & Vision"
#
# If a value other than those listed is used, your tool will listed as "Other".
category = ##tool.category##
categories = ##tool.categories##

# 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
Expand Down Expand Up @@ -46,3 +46,7 @@ version = ##tool.version## # 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 = ##tool.prettyVersion## # This is treated as a String

lastUpdated = ##tool.lastUpdated##
maxRevision = ##tool.maxRevision##
minRevision = ##tool.minRevision##

0 comments on commit a46a274

Please sign in to comment.