From a46a274bada261c487c1bdc0d5e42b1266b6a946 Mon Sep 17 00:00:00 2001 From: Joel Moniz Date: Mon, 15 Feb 2016 00:03:32 -0500 Subject: [PATCH] Update build and properties file- Ready to ship! --- resources/build.properties | 21 +++++++++++++-------- resources/build.xml | 5 ++++- resources/tool.properties | 8 ++++++-- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/resources/build.properties b/resources/build.properties index ca10d22..b84f2da 100644 --- a/resources/build.properties +++ b/resources/build.properties @@ -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: @@ -122,7 +122,7 @@ 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 @@ -130,8 +130,10 @@ tool.category=GUI,Geometry # 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 @@ -139,7 +141,7 @@ tool.sentence=A collection of utilities for solving this and that problem. # 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. @@ -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. diff --git a/resources/build.xml b/resources/build.xml index 0840f89..33937bc 100644 --- a/resources/build.xml +++ b/resources/build.xml @@ -270,9 +270,12 @@ ${line} + + + - + diff --git a/resources/tool.properties b/resources/tool.properties index 8197aaf..c4c1885 100644 --- a/resources/tool.properties +++ b/resources/tool.properties @@ -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## @@ -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 @@ -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##