1- # Create a Library for the Processing open source programming language and
1+ # Create a Library for the Processing open source programming language and
22# environment (http://processing.org/)
33#
4- # Customize the build properties to make the ant-build-process work for your
4+ # Customize the build properties to make the ant-build-process work for your
55# environment. How? Please read the comments below.
66#
77# The default properties are set for OS X. Please refer to comments for Windows
8- # settings.
8+ # settings.
99
10- # Where is your Processing sketchbook located?
11- # If you are not sure, check the sketchbook location in your Processing
10+ # Where is your Processing sketchbook located?
11+ # If you are not sure, check the sketchbook location in your Processing
1212# application preferences.
1313# ${user.home} points the compiler to your home directory.
1414# For windows the default path to your sketchbook would be
1818sketchbook.location =${user.home}/sketchbook
1919
2020
21- # Where are the jar files located that are required for compiling your Library
21+ # Where are the jar files located that are required for compiling your Library
2222# such as e.g. core.jar?
2323# By default the local classpath location points to folder libs inside Eclipse's
2424# workspace (by default found in your home directory).
2525# For Windows, the default path would be
2626# ${user.home}/Documents/workspace/libs (make adjustments below)
2727# For OS X,the following path will direct you into Processing's application
28- # package, in case you put Processing inside your Applications folder.
28+ # package, in case you put Processing inside your Applications folder.
2929
3030# classpath.local.location=${user.home}/Documents/workspace/libs
3131classpath.local.location =libs
3232
3333
34- # Add all jar files that are required for compiling your project to the local
35- # and project classpath. Use a comma as delimiter. These jar files must be
34+ # Add all jar files that are required for compiling your project to the local
35+ # and project classpath. Use a comma as delimiter. These jar files must be
3636# inside your classpath.local.location folder.
3737
3838classpath.local.include =core.jar
3939
4040
4141# Add Processing's libraries folder to the classpath.
42- # If you don't need to include the libraries folder to your classpath, comment
42+ # If you don't need to include the libraries folder to your classpath, comment
4343# out the following line.
4444
4545classpath.libraries.location =${sketchbook.location}/libraries
@@ -55,13 +55,13 @@ java.target.version=11
5555ant.description =Processing Library Ant build file.
5656
5757
58- # Give your Library a name. The name must not contain spaces or special
58+ # Give your Library a name. The name must not contain spaces or special
5959# characters.
6060
6161project.name =scratch
6262
6363
64- # The name as the user will see it. This can contain spaces and special
64+ # The name as the user will see it. This can contain spaces and special
6565# characters.
6666
6767project.prettyName =Scratch
@@ -71,7 +71,7 @@ project.prettyName=Scratch
7171# 'fast' will only compile the project into your sketchbook.
7272# 'normal' will compile the distribution including the javadoc-reference and all
7373# web-files (the compile process here takes longer).
74- # All files compiled with project.compile=normal are stored in the distribution
74+ # All files compiled with project.compile=normal are stored in the distribution
7575# folder.
7676
7777project.compile =normal
@@ -90,21 +90,21 @@ library.url=https://github.com/openpatch/scratch-for-java
9090
9191
9292# Set the category (or categories) of your Library from the following list:
93- # "3D" "Animation" "Compilations" "Data"
94- # "Fabrication" "Geometry" "GUI" "Hardware"
95- # "I/O" "Language" "Math" "Simulation"
93+ # "3D" "Animation" "Compilations" "Data"
94+ # "Fabrication" "Geometry" "GUI" "Hardware"
95+ # "I/O" "Language" "Math" "Simulation"
9696# "Sound" "Utilities" "Typography" "Video & Vision"
97- #
98- # If a value other than those listed is used, your Library will listed as
97+ #
98+ # If a value other than those listed is used, your Library will listed as
9999# "Other". Many categories must be comma-separated.
100100
101101library.categories =Utilities
102102
103103
104- # A short sentence (or fragment) to summarize the Library's function. This will
105- # be shown from inside the PDE when the Library is being installed. Avoid
106- # repeating the name of your Library here. Also, avoid saying anything redundant
107- # like mentioning that it's a Library. This should start with a capitalized
104+ # A short sentence (or fragment) to summarize the Library's function. This will
105+ # be shown from inside the PDE when the Library is being installed. Avoid
106+ # repeating the name of your Library here. Also, avoid saying anything redundant
107+ # like mentioning that it's a Library. This should start with a capitalized
108108# letter, and end with a period.
109109
110110library.sentence =Provides classes to match the functionality of scratch
@@ -115,7 +115,7 @@ library.sentence=Provides classes to match the functionality of scratch
115115# second sentence here. If your Library only works on certain operating systems,
116116# mention it here.
117117
118- library.paragraph =
118+ library.paragraph =
119119
120120
121121# Set the source code repository for your project.
@@ -126,24 +126,24 @@ source.url=https://github.com/openpatch/scratch-for-java
126126source.repository =https://github.com/openpatch/scratch-for-java.git
127127
128128
129- # The current version of your Library.
130- # This number must be parsable as an int. It increments once with each release.
131- # This is used to compare different versions of the same Library, and check if
129+ # The current version of your Library.
130+ # This number must be parsable as an int. It increments once with each release.
131+ # This is used to compare different versions of the same Library, and check if
132132# an update is available.
133133
134- library.version =23
134+ library.version =24
135135
136136
137137# The version as the user will see it.
138138
139- library.prettyVersion =2.2
139+ library.prettyVersion =3.0
140140
141141
142142# The min and max revision of Processing compatible with your Library.
143- # Note that these fields use the revision and not the version of Processing,
144- # parsable as an int. For example, the revision number for 2.2.1 is 227.
143+ # Note that these fields use the revision and not the version of Processing,
144+ # parsable as an int. For example, the revision number for 2.2.1 is 227.
145145# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
146- # Only use maxRevision (or minRevision), when your Library is known to
146+ # Only use maxRevision (or minRevision), when your Library is known to
147147# break in a later (or earlier) release. Otherwise, use the default value 0.
148148
149149compatible.minRevision =270
0 commit comments