1
- # Create a Library for the Processing open source programming language and
1
+ # Create a Library for the Processing open source programming language and
2
2
# environment (http://processing.org/)
3
3
#
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
5
5
# environment. How? Please read the comments below.
6
6
#
7
7
# The default properties are set for OS X. Please refer to comments for Windows
8
- # settings.
8
+ # settings.
9
9
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
12
12
# application preferences.
13
13
# ${user.home} points the compiler to your home directory.
14
14
# For windows the default path to your sketchbook would be
18
18
sketchbook.location =${user.home}/sketchbook
19
19
20
20
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
22
22
# such as e.g. core.jar?
23
23
# By default the local classpath location points to folder libs inside Eclipse's
24
24
# workspace (by default found in your home directory).
25
25
# For Windows, the default path would be
26
26
# ${user.home}/Documents/workspace/libs (make adjustments below)
27
27
# 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.
29
29
30
30
# classpath.local.location=${user.home}/Documents/workspace/libs
31
31
classpath.local.location =libs
32
32
33
33
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
36
36
# inside your classpath.local.location folder.
37
37
38
38
classpath.local.include =core.jar
39
39
40
40
41
41
# 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
43
43
# out the following line.
44
44
45
45
classpath.libraries.location =${sketchbook.location}/libraries
@@ -55,13 +55,13 @@ java.target.version=11
55
55
ant.description =Processing Library Ant build file.
56
56
57
57
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
59
59
# characters.
60
60
61
61
project.name =scratch
62
62
63
63
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
65
65
# characters.
66
66
67
67
project.prettyName =Scratch
@@ -71,7 +71,7 @@ project.prettyName=Scratch
71
71
# 'fast' will only compile the project into your sketchbook.
72
72
# 'normal' will compile the distribution including the javadoc-reference and all
73
73
# 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
75
75
# folder.
76
76
77
77
project.compile =normal
@@ -90,21 +90,21 @@ library.url=https://github.com/openpatch/scratch-for-java
90
90
91
91
92
92
# 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"
96
96
# "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
99
99
# "Other". Many categories must be comma-separated.
100
100
101
101
library.categories =Utilities
102
102
103
103
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
108
108
# letter, and end with a period.
109
109
110
110
library.sentence =Provides classes to match the functionality of scratch
@@ -115,7 +115,7 @@ library.sentence=Provides classes to match the functionality of scratch
115
115
# second sentence here. If your Library only works on certain operating systems,
116
116
# mention it here.
117
117
118
- library.paragraph =
118
+ library.paragraph =
119
119
120
120
121
121
# Set the source code repository for your project.
@@ -126,24 +126,24 @@ source.url=https://github.com/openpatch/scratch-for-java
126
126
source.repository =https://github.com/openpatch/scratch-for-java.git
127
127
128
128
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
132
132
# an update is available.
133
133
134
- library.version =23
134
+ library.version =24
135
135
136
136
137
137
# The version as the user will see it.
138
138
139
- library.prettyVersion =2.2
139
+ library.prettyVersion =3.0
140
140
141
141
142
142
# 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.
145
145
# 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
147
147
# break in a later (or earlier) release. Otherwise, use the default value 0.
148
148
149
149
compatible.minRevision =270
0 commit comments