Skip to content

Commit

Permalink
Builds the library using Java 7 to solve android mode errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jagracar committed Jan 27, 2018
1 parent a0825cb commit a1c1e89
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="bin" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-7-oracle"/>
<classpathentry kind="lib" path="/home/jgracia/admin/eclipse-libs/core.jar"/>
<classpathentry kind="output" path="resources/code"/>
</classpath>
57 changes: 57 additions & 0 deletions releases/grafica-9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# More on this file here: https://github.com/processing/processing/wiki/Library-Basics
# UTF-8 supported.

# The name of your Library as you want it formatted.
name = grafica

# List of authors. Links can be provided using the syntax [author name](url).
authors = [Javier Gracia Carpio](http://jagracar.com)

# A web page for your Library, NOT a direct link to where to download it.
url = http://jagracar.com/grafica.php

# The category (or categories) of your Library, must be from the following list:
# "3D" "Animation" "Compilations" "Data"
# "Fabrication" "Geometry" "GUI" "Hardware"
# "I/O" "Language" "Math" "Simulation"
# "Sound" "Utilities" "Typography" "Video & Vision"
#
# If a value other than those listed is used, your Library will listed as
# "Other". Many categories must be comma-separated.
categories = Math

# A short sentence (or fragment) to summarize the Library's function. This will
# be shown from inside the PDE when the Library is being installed. Avoid
# repeating the name of your Library here. Also, avoid saying anything redundant
# like mentioning that it's a Library. This should start with a capitalized
# letter, and end with a period.
sentence = Create simple and configurable 2D plots with Processing.

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

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

# A version number that increments once with each release. This is used to
# compare different versions of the same Library, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = 9 # This must be parsable as an int

# The version as the user will see it. If blank, the version attribute will be
# used here. This should be a single word, with no spaces.
prettyVersion = 1.8.0 # This is treated as a String

# The min and max revision of Processing compatible with your Library.
# Note that these fields use the revision and not the version of Processing,
# parsable as an int. For example, the revision number for 2.2.1 is 227.
# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
# Only use maxRevision (or minRevision), when your Library is known to
# break in a later (or earlier) release. Otherwise, use the default value 0.
minRevision = 0
maxRevision = 0
Binary file added releases/grafica-9.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions releases/grafica.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ paragraph =
# compare different versions of the same Library, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = 8 # This must be parsable as an int
version = 9 # This must be parsable as an int

# The version as the user will see it. If blank, the version attribute will be
# used here. This should be a single word, with no spaces.
prettyVersion = 1.7.0 # This is treated as a String
prettyVersion = 1.8.0 # This is treated as a String

# The min and max revision of Processing compatible with your Library.
# Note that these fields use the revision and not the version of Processing,
Expand Down
Binary file modified releases/grafica.zip
Binary file not shown.
10 changes: 5 additions & 5 deletions resources/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ classpath.libraries.location=${sketchbook.location}/libraries

# Set the java version that should be used to compile your Library.

java.target.version=1.8
java.target.version=1.7


# Set the description of the Ant build.xml file.
Expand Down Expand Up @@ -132,12 +132,12 @@ source.repository=https://github.com/jagracar/grafica.git
# This is used to compare different versions of the same Library, and check if
# an update is available.

library.version=9
library.version=10


# The version as the user will see it.

library.prettyVersion=1.8.0
library.prettyVersion=1.9.0


# The min and max revision of Processing compatible with your Library.
Expand All @@ -155,7 +155,7 @@ compatible.maxRevision=0
# against. This information is only used in the generated webpage.

tested.platform=linux
tested.processingVersion=3.2.1
tested.processingVersion=3.3.6


# Additional information for the generated webpage.
Expand All @@ -167,5 +167,5 @@ library.keywords=data,visualization

# Include javadoc references into your project's javadocs.

javadoc.java.href=http://docs.oracle.com/javase/8/docs/api/
javadoc.java.href=http://docs.oracle.com/javase/7/docs/api/
javadoc.processing.href=http://processing.github.io/processing-javadocs/core/

0 comments on commit a1c1e89

Please sign in to comment.