Skip to content

Commit e8e1384

Browse files
committed
New release: 1.3.0
1 parent 4d7a1b8 commit e8e1384

File tree

5 files changed

+86
-21
lines changed

5 files changed

+86
-21
lines changed

releases/grafica-4.txt

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# More on this file here: https://github.com/processing/processing/wiki/Library-Basics
2+
# UTF-8 supported.
3+
4+
# The name of your Library as you want it formatted.
5+
name = grafica
6+
7+
# List of authors. Links can be provided using the syntax [author name](url).
8+
authors = [Javier Gracia Carpio](http://jagracar.com)
9+
10+
# A web page for your Library, NOT a direct link to where to download it.
11+
url = http://jagracar.com/grafica.php
12+
13+
# The category (or categories) of your Library, must be from the following list:
14+
# "3D" "Animation" "Compilations" "Data"
15+
# "Fabrication" "Geometry" "GUI" "Hardware"
16+
# "I/O" "Language" "Math" "Simulation"
17+
# "Sound" "Utilities" "Typography" "Video & Vision"
18+
#
19+
# If a value other than those listed is used, your Library will listed as
20+
# "Other". Many categories must be comma-separated.
21+
categories = Math
22+
23+
# A short sentence (or fragment) to summarize the Library's function. This will
24+
# be shown from inside the PDE when the Library is being installed. Avoid
25+
# repeating the name of your Library here. Also, avoid saying anything redundant
26+
# like mentioning that it's a Library. This should start with a capitalized
27+
# letter, and end with a period.
28+
sentence = Create simple and configurable 2D plots with Processing.
29+
30+
# Additional information suitable for the Processing website. The value of
31+
# 'sentence' always will be prepended, so you should start by writing the
32+
# second sentence here. If your Library only works on certain operating systems,
33+
# mention it here.
34+
paragraph =
35+
36+
# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
37+
# same syntax as for authors.
38+
# That is, [here is a link to Processing](http://processing.org/)
39+
40+
# A version number that increments once with each release. This is used to
41+
# compare different versions of the same Library, and check if an update is
42+
# available. You should think of it as a counter, counting the total number of
43+
# releases you've had.
44+
version = 4 # This must be parsable as an int
45+
46+
# The version as the user will see it. If blank, the version attribute will be
47+
# used here. This should be a single word, with no spaces.
48+
prettyVersion = 1.3.0 # This is treated as a String
49+
50+
# The min and max revision of Processing compatible with your Library.
51+
# Note that these fields use the revision and not the version of Processing,
52+
# parsable as an int. For example, the revision number for 2.2.1 is 227.
53+
# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
54+
# Only use maxRevision (or minRevision), when your Library is known to
55+
# break in a later (or earlier) release. Otherwise, use the default value 0.
56+
minRevision = 0
57+
maxRevision = 0

releases/grafica-4.zip

192 KB
Binary file not shown.

releases/grafica.txt

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,57 @@
11
# More on this file here: https://github.com/processing/processing/wiki/Library-Basics
22
# UTF-8 supported.
33

4-
# The name of your library as you want it formatted.
4+
# The name of your Library as you want it formatted.
55
name = grafica
66

77
# List of authors. Links can be provided using the syntax [author name](url).
8-
authorList = [Javier Gracia Carpio](http://www.openprocessing.org/user/16300)
8+
authors = [Javier Gracia Carpio](http://jagracar.com)
99

10-
# A web page for your library, NOT a direct link to where to download it.
11-
url = https://github.com/jagracar/grafica
10+
# A web page for your Library, NOT a direct link to where to download it.
11+
url = http://jagracar.com/grafica.php
1212

13-
# The category of your library, must be one (or many) of the following:
13+
# The category (or categories) of your Library, must be from the following list:
1414
# "3D" "Animation" "Compilations" "Data"
1515
# "Fabrication" "Geometry" "GUI" "Hardware"
1616
# "I/O" "Language" "Math" "Simulation"
1717
# "Sound" "Utilities" "Typography" "Video & Vision"
1818
#
19-
# If a value other than those listed is used, your library will listed as
20-
# "Other".
21-
category = Math
22-
23-
# A short sentence (or fragment) to summarize the library's function. This will
24-
# be shown from inside the PDE when the library is being installed. Avoid
25-
# repeating the name of your library here. Also, avoid saying anything redundant
26-
# like mentioning that it's a library. This should start with a capitalized
19+
# If a value other than those listed is used, your Library will listed as
20+
# "Other". Many categories must be comma-separated.
21+
categories = Math
22+
23+
# A short sentence (or fragment) to summarize the Library's function. This will
24+
# be shown from inside the PDE when the Library is being installed. Avoid
25+
# repeating the name of your Library here. Also, avoid saying anything redundant
26+
# like mentioning that it's a Library. This should start with a capitalized
2727
# letter, and end with a period.
2828
sentence = Create simple and configurable 2D plots with Processing.
2929

3030
# Additional information suitable for the Processing website. The value of
3131
# 'sentence' always will be prepended, so you should start by writing the
32-
# second sentence here. If your library only works on certain operating systems,
32+
# second sentence here. If your Library only works on certain operating systems,
3333
# mention it here.
3434
paragraph =
3535

3636
# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
3737
# same syntax as for authors.
3838
# That is, [here is a link to Processing](http://processing.org/)
3939

40-
4140
# A version number that increments once with each release. This is used to
42-
# compare different versions of the same library, and check if an update is
41+
# compare different versions of the same Library, and check if an update is
4342
# available. You should think of it as a counter, counting the total number of
4443
# releases you've had.
45-
version = 3 # This must be parsable as an int
44+
version = 4 # This must be parsable as an int
4645

4746
# The version as the user will see it. If blank, the version attribute will be
48-
# used here.
49-
prettyVersion = 1.2.0 # This is treated as a String
47+
# used here. This should be a single word, with no spaces.
48+
prettyVersion = 1.3.0 # This is treated as a String
49+
50+
# The min and max revision of Processing compatible with your Library.
51+
# Note that these fields use the revision and not the version of Processing,
52+
# parsable as an int. For example, the revision number for 2.2.1 is 227.
53+
# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
54+
# Only use maxRevision (or minRevision), when your Library is known to
55+
# break in a later (or earlier) release. Otherwise, use the default value 0.
56+
minRevision = 0
57+
maxRevision = 0

releases/grafica.zip

2.54 KB
Binary file not shown.

resources/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,12 @@ source.repository=https://github.com/jagracar/grafica.git
150150
# This is used to compare different versions of the same library, and check if
151151
# an update is available.
152152

153-
library.version=3
153+
library.version=4
154154

155155

156156
# The version as the user will see it.
157157

158-
library.prettyVersion=1.2.0
158+
library.prettyVersion=1.3.0
159159

160160
# The min and max revision of Processing compatible with your Library.
161161
# Note that these fields use the revision and not the version of Processing,

0 commit comments

Comments
 (0)