toxiclibs 0.9.2 → 0.9.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3766bf61befbcc60a27816721ef8528c930f0a5
4
- data.tar.gz: cea30dbee7899c25c4183b78b0ab13f894f71a1d
3
+ metadata.gz: 6f3d33ee0f9f83586b8def699d2bdf8867b6a992
4
+ data.tar.gz: 6085ba979f1dcbeb6f97baab27e4a121f99f5fe1
5
5
  SHA512:
6
- metadata.gz: 76c77948c8763555278cb9f32eb784f875ffac5388a7d337201d978c514cfbe666811efa3f600823ce2a237f665670772e64c3b380f29b4e0abf9db08d272ab2
7
- data.tar.gz: 5e6f35deccaf8e35809cf02495b8377b606c57929b5579ef0615085c90a804f78c34f4cd1b4823ecb41058e1b2c6e1706b55fd7fab91e697ae60d094973f77b8
6
+ metadata.gz: 9dd5915cfc0900a502fea967efbd4a3b3ef2d0718d99445b0719cf54cbbb70737f3e4b24191f356a1d8600d3278ca8ca8f3db4619ffe0f9ee2fc642219565087
7
+ data.tar.gz: dd164f6da93f3ba3925071e408988501696579f78295671d01e66f7561abb985dbb25685bb64675beb29f30db4e4d4c1bf2fb024453b4a3906be4e3225e2ee09
@@ -1,5 +1,7 @@
1
1
 
2
- **v0.9.2** Bump processing version, removed audio, refactored color, including export to ruby string.
2
+ **v0.9.3** Bump processing version to processing-3.3.2.
3
+
4
+ **v0.9.2** Bump processing version, add `to_ruby_string` method to `ColorList` see examples, allow use of `TColor` without `Toxi` prefix. Removed audio.
3
5
 
4
6
  **v0.9.1** Make it easier to load PerlinNoise and SimplexNoise
5
7
 
@@ -83,6 +83,8 @@ if RUBY_PLATFORM == 'java'
83
83
  TVec2D = Toxi::Vec2D
84
84
  TVec3D = Toxi::Vec3D
85
85
  AABB = Toxi::AABB
86
+ # alias Toxi::TColor
87
+ TColor = Toxi::TColor
86
88
  volume = %w(AdditiveBrush ArrayIsoSurface BoxBrush BrushMode HashIsoSurface
87
89
  IsoSurface MarchingCubesIndex MeshLatticeBuilder MeshVoxelizer
88
90
  MultiplyBrush PeakBrush ReplaceBrush RoundBrush VolumetricBrush
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+ # wrapper to give version a meaningful name
2
3
  module Toxiclibs
3
- VERSION = '0.9.2'.freeze
4
+ VERSION = '0.9.3'.freeze
4
5
  end
data/pom.rb CHANGED
@@ -1,17 +1,17 @@
1
1
  project 'toxiclibs' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'ruby-processing:toxiclibs:0.9.2'
4
+ id 'ruby-processing:toxiclibs:0.9.3'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'toxiclibs-library for JRubyArt'
8
-
8
+
9
9
  organization 'ruby-processing', 'https://ruby-processing.github.io'
10
10
 
11
11
  developer 'monkstone' do
12
12
  name 'Martin Prout'
13
13
  email 'mamba2928@yahoo.co.uk'
14
- roles 'developer'
14
+ roles 'developer'
15
15
  end
16
16
 
17
17
  license 'LGPL 2', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html'
@@ -29,7 +29,7 @@ project 'toxiclibs' do
29
29
  )
30
30
 
31
31
  jar 'args4j:args4j:2.0.31'
32
- jar 'org.processing:core:3.3.0'
32
+ jar 'org.processing:core:3.3.2'
33
33
 
34
34
  plugin( :compiler, '3.5.1',
35
35
  'source' => '1.8',
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>ruby-processing</groupId>
13
13
  <artifactId>toxiclibs</artifactId>
14
- <version>0.9.2</version>
14
+ <version>0.9.3</version>
15
15
  <name>toxiclibs</name>
16
16
  <description>toxiclibs-library for JRubyArt</description>
17
17
  <organization>
@@ -58,7 +58,7 @@ DO NOT MODIFIY - GENERATED CODE
58
58
  <dependency>
59
59
  <groupId>org.processing</groupId>
60
60
  <artifactId>core</artifactId>
61
- <version>3.3.0</version>
61
+ <version>3.3.2</version>
62
62
  </dependency>
63
63
  </dependencies>
64
64
  <build>
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.extra_rdoc_files = %w(README.md LICENSE.md)
11
11
  spec.summary = %q(Updated and extended toxiclibs libraries for JRubyArt and propane)
12
12
  spec.description =<<-EOS
13
- Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.0 and processing-3.3
13
+ Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.2 and processing-3.3.2
14
14
  EOS
15
15
  spec.licenses = %w(MIT LGPL-3.0)
16
16
  spec.authors = %w(Karsten\ Schmidt Martin\ Prout)
@@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
20
20
  spec.files << 'lib/toxiclibs.jar'
21
21
  spec.files << 'lib/args4j-2.0.31.jar'
22
22
  spec.require_paths = ['lib']
23
- spec.add_development_dependency 'rake', '~> 11.2', '>= 11.2.2'
23
+ spec.add_development_dependency 'rake', '~> 12.0', '>= 12.0.0'
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toxiclibs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karsten Schmidt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-04-02 00:00:00.000000000 Z
12
+ date: 2017-04-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -17,22 +17,22 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: '11.2'
20
+ version: '12.0'
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 11.2.2
23
+ version: 12.0.0
24
24
  type: :development
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
28
  - - "~>"
29
29
  - !ruby/object:Gem::Version
30
- version: '11.2'
30
+ version: '12.0'
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 11.2.2
33
+ version: 12.0.0
34
34
  description: " Toxiclibs java libraries wrapped in a rubygem. Compiled and tested
35
- with JRubyArt-1.3.0 and processing-3.3\n"
35
+ with JRubyArt-1.3.2 and processing-3.3.2\n"
36
36
  email: mamba2928@yahoo.co.uk
37
37
  executables: []
38
38
  extensions: []
@@ -42,7 +42,6 @@ extra_rdoc_files:
42
42
  files:
43
43
  - ".gitignore"
44
44
  - ".mvn/extensions.xml"
45
- - ".mvn/wrapper/maven-wrapper.properties"
46
45
  - ".travis.yml"
47
46
  - CHANGELOG.md
48
47
  - COPYING.md
@@ -1 +0,0 @@
1
- distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip