Skip to content

Commit a46a274

Browse files
committed
Update build and properties file- Ready to ship!
1 parent d61f0cd commit a46a274

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

resources/build.properties

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ author.url=http://joelmoniz.com
112112
# Set the web page for your tool.
113113
# This is NOT a direct link to where to download it.
114114

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

117117

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

125-
tool.category=GUI,Geometry
125+
tool.categories=GUI,Geometry
126126

127127

128128
# A short sentence (or fragment) to summarize the tool's function. This will be
129129
# shown from inside the PDE when the tool is being installed. Avoid repeating
130130
# the name of your tool here. Also, avoid saying anything redundant like
131131
# mentioning that it's a tool. This should start with a capitalized letter, and
132132
# end with a period.
133-
134-
tool.sentence=A collection of utilities for solving this and that problem.
133+
# Paint on a canvas; generate processing code. Easy peasy!
134+
# Generate processing code from shapes on a canvas
135+
# Draw simple shapes on a canvas and automatically generate processing code.
136+
tool.sentence=Paint on a canvas; generate processing code. Easy peasy!
135137

136138

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

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

144146

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

161163
# The version as the user will see it.
162164

163-
tool.prettyVersion=0.0.1
165+
tool.prettyVersion=0.8.0
166+
tool.minRevision=0245
167+
tool.maxRevision=0
168+
tool.lastUpdated=1455510195000
164169

165170

166-
tool.copyright=(c) 2014
171+
tool.copyright=(c) 2016
167172
tool.dependencies=?
168173
tool.keywords=?
169174

170175
tested.platform=windows
171-
tested.processingVersion=3.0a2
176+
tested.processingVersion=3.0b7+
172177

173178

174179
# Include javadoc references into your project's javadocs.

resources/build.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,12 @@ ${line}
270270

271271
<replaceregexp file="${file}" match="##tool.version##" replace="${tool.version}" flags="g" />
272272
<replaceregexp file="${file}" match="##tool.prettyVersion##" replace="${tool.prettyVersion}" flags="g" />
273+
<replaceregexp file="${file}" match="##tool.minRevision##" replace="${tool.minRevision}" flags="g" />
274+
<replaceregexp file="${file}" match="##tool.maxRevision##" replace="${tool.maxRevision}" flags="g" />
275+
<replaceregexp file="${file}" match="##tool.lastUpdated##" replace="${tool.lastUpdated}" flags="g" />
273276

274277
<replaceregexp file="${file}" match="##tool.url##" replace="${tool.url}" flags="g" />
275-
<replaceregexp file="${file}" match="##tool.category##" replace="${tool.category}" flags="g" />
278+
<replaceregexp file="${file}" match="##tool.categories##" replace="${tool.categories}" flags="g" />
276279
<replaceregexp file="${file}" match="##tool.sentence##" replace="${tool.sentence}" flags="g" />
277280
<replaceregexp file="${file}" match="##tool.paragraph##" replace="${tool.paragraph}" flags="g" />
278281
<replaceregexp file="${file}" match="##tool.keywords##" replace="${tool.keywords}" flags="g" />

resources/tool.properties

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name = ##tool.name##
66

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

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

2222
# A short sentence (or fragment) to summarize the tool's function. This will be
2323
# shown from inside the PDE when the tool is being installed. Avoid repeating
@@ -46,3 +46,7 @@ version = ##tool.version## # This must be parsable as an int
4646
# The version as the user will see it. If blank, the version attribute will be
4747
# used here.
4848
prettyVersion = ##tool.prettyVersion## # This is treated as a String
49+
50+
lastUpdated = ##tool.lastUpdated##
51+
maxRevision = ##tool.maxRevision##
52+
minRevision = ##tool.minRevision##

0 commit comments

Comments
 (0)