picrate 2.4.0-java → 2.4.1-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,7 +39,7 @@ public class OpenSimplex2S {
39
39
  seed = seed * 6364136223846793005L + 1442695040888963407L;
40
40
  int r = (int) ((seed + 31) % (i + 1));
41
41
  if (r < 0) {
42
- r += (i + 1);
42
+ r += i + 1;
43
43
  }
44
44
  perm[i] = source[r];
45
45
  permGrad2[i] = GRADIENTS_2D[perm[i]];
data/vendors/Rakefile CHANGED
@@ -8,7 +8,7 @@ SOUND = 'sound.zip'
8
8
  PROCESSING_GITHUB = 'https://github.com/processing'
9
9
  VIDEO = 'video.zip'
10
10
  DOWNLOAD = 'releases/download/latest'
11
- EXAMPLES = '0.5.7'
11
+ EXAMPLES = '0.5.8'
12
12
  HOME_DIR = ENV['HOME']
13
13
  LIBRARY = File.join(HOME_DIR, '.picrate', 'libraries')
14
14
  PROJECT_DIR = File.join(HOME_DIR, 'projects')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picrate
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-06 00:00:00.000000000 Z
11
+ date: 2021-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -191,7 +191,7 @@ files:
191
191
  - lib/jogl-all-natives-linux-amd64.jar
192
192
  - lib/jogl-all-natives-linux-armv6hf.jar
193
193
  - lib/jogl-all.jar
194
- - lib/picrate-2.4.0.jar
194
+ - lib/picrate-2.4.1.jar
195
195
  - lib/picrate.rb
196
196
  - lib/picrate/app.rb
197
197
  - lib/picrate/creators/parameters.rb