You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
**v3.8.0** Refactor noise to delegate pattern, improve default implementation and add simplex noise option
2
+
1
3
**v3.7.1** Recommend JRuby-9.2.15.0 use
2
4
3
5
**v3.5.0** Rebase processing core code around Sam Pottingers latest fixes for JOGL an image save, does mean breaking some of Diwis and Joshua Davis examples, but one hopes codeanticode knows what he's doing.
Copy file name to clipboardExpand all lines: README.md
+5-12Lines changed: 5 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,10 @@ adjust above for your OS/distro setup.
8
8
9
9
## Requirements
10
10
11
-
There may be a linker issue with P2D or P3D sketches with stock openjdk with some linux distros, in which case you might find [Adopt open jdk binaries][adopt]will work for you.
11
+
Previously there has been linker issue with P2D or P3D sketches with stock openjdk with some linux distros, but that seems to have gone away. [Adopt open jdk binaries][adopt]have always worked.
12
12
13
13
-`jdk-11.0.7+`
14
-
-`jruby-9.2.14.0`
15
-
16
-
Currently you can ignore `illegal reflective access` warnings, see [here how to suppress them][warning].
14
+
-`jruby-9.2.16.0`
17
15
18
16
## Building and testing
19
17
@@ -27,10 +25,10 @@ rake javadoc
27
25
28
26
```bash
29
27
jgem install propane # from rubygems
30
-
jgem install propane-3.6.0-java.gem # local install
28
+
jgem install propane-3.8.0-java.gem # local install
31
29
# Alternative
32
30
jruby -S gem install propane # from rubygems
33
-
jruby -S gem install propane-3.6.0-java.gem # local install
31
+
jruby -S gem install propane-3.8.0-java.gem # local install
34
32
```
35
33
36
34
## Check Install
@@ -39,11 +37,6 @@ To check version and confirm gem bin files are on your path (also checks JDK ver
39
37
```bash
40
38
propane --version
41
39
```
42
-
43
-
## Suppressing Reflective Access warnings
44
-
45
-
Since propane-3.5.0 it is possible to suppress reflective access warnings by setting JAVA_HOME environmental variable jruby does the rest.
46
-
47
40
## Usage
48
41
49
42
A propane sketch:-
@@ -100,7 +93,7 @@ See [gh-pages][gh-pages] for more detailed instructions and much more.
100
93
```bash
101
94
propane --install samples
102
95
```
103
-
please move existing `propane_samples` if you wish to keep them. The current release features several PixelFlow glsl library examples, including a few shadertoy demos as sketches.
96
+
please move existing `propane_samples` if you wish to keep them. The current release features some noise sketches that exploit the new choice of noise implementation.
0 commit comments