Skip to content

Commit 6efb202

Browse files
committed
version 0.9.2
1 parent e0114d6 commit 6efb202

File tree

13 files changed

+5
-1710
lines changed

13 files changed

+5
-1710
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
**v0.9.2** Bump processing version
2+
**v0.9.2** Bump processing version, removed audio, refactored color, including export to ruby string.
33

44
**v0.9.1** Make it easier to load PerlinNoise and SimplexNoise
55

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
gem install toxiclibs
99
```
1010

11-
### NB: Use version 0.4 for ruby-processing, and 0.9.1 for propane and JRubyArt
11+
### NB: Use version 0.4 for ruby-processing, and 0.9.2 for propane and JRubyArt
1212

1313
NB: Build is only failing because current version of processing is not available at maven central.
14-
This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars for JRubyArt. To compile the gem follow the instructions for [JRubyArt][]. Most parts of toxiclibs API is exposed in the latest version, (but only a few examples are included) in principle it should be possible to make all available!!! For this demonstration I have used up to date source code for version 21, since [toxis final release][] has not yet been released (although [Dan Shiffman][] has released a version for processing-3.0+). There are reported to be number of outstanding bugs with toxiclibs, if they affect you report it [here][] (or better fix them yourself and submit a pull request). Version 0.9.2 features java code updated to use java lambda (jdk8) and was compiled against processing-3.3 core.jar.
14+
This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars for JRubyArt. To compile the gem follow the instructions for [JRubyArt][]. Most parts of toxiclibs API is exposed in the latest version, (but only a few examples are included) in principle it should be possible to make all available!!! For this demonstration I have used up to date source code for version 21, since [toxis final release][] has not yet been released (although [Dan Shiffman][] has released a version for processing-3.0+). There are reported to be number of outstanding bugs with toxiclibs, if they affect you report it [here][] (or better fix them yourself and submit a pull request). Version 0.9.2 features java code updated to use java lambda (jdk8) and was compiled against processing-3.3 core.jar. The audio library was not working and has been dropped since version 0.9.2.
1515

1616
![grayscott image](http://4.bp.blogspot.com/-d4MiL4_0Njk/VFJMv6VUicI/AAAAAAAAEgY/fFAfrXDxNXM/s400/grayscott.png)
1717

@@ -28,7 +28,7 @@ This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars f
2828
### Licensing
2929

3030
I should be clear that the original toxiclibs is the work of Karsten Schmidt see [Copyright][]
31-
31+
3232
This demo & library is free software you can redistribute it and/or
3333
modify it under the terms of the GNU Lesser General Public
3434
License as published by the Free Software Foundation either

pom.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
'polyglot.dump.pom' => 'pom.xml'
2929
)
3030

31-
jar 'org.jogamp.joal:joal-main:2.3.1'
3231
jar 'args4j:args4j:2.0.31'
3332
jar 'org.processing:core:3.3.0'
3433

@@ -46,11 +45,6 @@
4645
'artifactId' => 'args4j',
4746
'version' => '2.0.31',
4847
'type' => 'jar',
49-
'outputDirectory' => 'lib' },
50-
{ 'groupId' => 'org.jogamp.joal',
51-
'artifactId' => 'joal',
52-
'version' => '2.3.1',
53-
'type' => 'jar',
5448
'outputDirectory' => 'lib' } ] )
5549
end
5650

pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ DO NOT MODIFIY - GENERATED CODE
5050
<maven.compiler.target>1.8</maven.compiler.target>
5151
</properties>
5252
<dependencies>
53-
<dependency>
54-
<groupId>org.jogamp.joal</groupId>
55-
<artifactId>joal-main</artifactId>
56-
<version>2.3.1</version>
57-
</dependency>
5853
<dependency>
5954
<groupId>args4j</groupId>
6055
<artifactId>args4j</artifactId>
@@ -107,13 +102,6 @@ DO NOT MODIFIY - GENERATED CODE
107102
<type>jar</type>
108103
<outputDirectory>lib</outputDirectory>
109104
</artifactItem>
110-
<artifactItem>
111-
<groupId>org.jogamp.joal</groupId>
112-
<artifactId>joal</artifactId>
113-
<version>2.3.1</version>
114-
<type>jar</type>
115-
<outputDirectory>lib</outputDirectory>
116-
</artifactItem>
117105
</artifactItems>
118106
</configuration>
119107
</execution>

src/toxi/audio/AudioBuffer.java

Lines changed: 0 additions & 229 deletions
This file was deleted.

0 commit comments

Comments
 (0)