Skip to content

Commit 9a2abb8

Browse files
Merge pull request #13 from soundanalogous/lib-manager-prep
add copy of library properties for Processing lib manager
2 parents a4b889c + 2f574c6 commit 9a2abb8

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

processing-arduino.txt

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# UTF-8 supported.
2+
3+
# The name of your library as you want it formatted
4+
name = Arduino (Firmata)
5+
6+
# List of authors. Links can be provided using the syntax [author name](url)
7+
authors = [David A. Mellis](http://dam.mellis.org/)
8+
9+
# A web page for your library, NOT a direct link to where to download it
10+
url = http://arduino.cc/playground/Interfacing/Processing
11+
12+
# The category of your library, must be one (or many) of the following:
13+
# "3D" "Animation" "Compilations" "Data"
14+
# "Fabrication" "Geometry" "GUI" "Hardware"
15+
# "I/O" "Language" "Math" "Simulation"
16+
# "Sound" "Utilities" "Typography" "Video & Vision"
17+
#
18+
# If a value other than those listed is used, your library will listed as "Other."
19+
categories = Hardware
20+
21+
# A short sentence (or fragment) to summarize the library's function. This will be
22+
# shown from inside the PDE when the library is being installed. Avoid repeating
23+
# the name of your library here. Also, avoid saying anything redundant like
24+
# mentioning that its a library. This should start with a capitalized letter, and
25+
# end with a period.
26+
sentence = Controls Arduino boards running the Firmata firmware.
27+
28+
# Additional information suitable for the Processing website. The value of
29+
# 'sentence' always will be prepended, so you should start by writing the
30+
# second sentence here. If your library only works on certain operating systems,
31+
# mention it here.
32+
paragraph = Works with the StandardFirmata example included in the Arduino software distribution. To use Firmata with other software, see [the Firmata github repository](https://github.com/firmata/arduino)
33+
34+
# Links in the 'sentence' and 'paragraph' attributes can be inserted using the
35+
# same syntax as for authors. That is, [here is a link to Processing](http://processing.org/)
36+
37+
38+
# A version number that increments once with each release. This
39+
# is used to compare different versions of the same library, and
40+
# check if an update is available. You should think of it as a
41+
# counter, counting the total number of releases you've had.
42+
version = 9 # This must be parsable as an int
43+
44+
# The version as the user will see it. If blank, the version attribute will be used here
45+
prettyVersion = 9 # This is treated as a String

0 commit comments

Comments
 (0)