propane 2.6.5.pre-java → 2.6.6-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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b16068d31d618bf30b5900adc75c7ff12c3f74cbd57856e08b332d791221712
4
- data.tar.gz: 2803573c8faeda2fff247e0cfbbaedabec16ab11162cf269cdf1895166e25e7e
3
+ metadata.gz: 89ba6d3235b3cea165b0979c3eaffdc0087c91b3c090cb2ee472c54bc3ed418a
4
+ data.tar.gz: a6e6e90f5180c37ec3a8b62291f51562e29ccb850396c3fe21957383178476f4
5
5
  SHA512:
6
- metadata.gz: 7973f7932ec0314a9cd410af50821fffe0d715ea0f6df86977dda6c24f431dc8793acab956bdd84474581fe49c8a3072aded198ddd1a24023ef7bf9be7100cac
7
- data.tar.gz: c3f8c7dd36287403e448aae231f8a7b839167bdbf1fc0993a9aa66f4d5c396dcd28d7cfc20bfe4f6455242b21366dcba0ebd8b6cd24a588cf436f8b8b8f9b6be
6
+ metadata.gz: 6c37db6a939c014ba832a11566593308d259725739330089ebfd82c6b8b7b8b66ee0c51b7f6242f8c69e05785d36ac8217908165130784057f3a79cc3001803a
7
+ data.tar.gz: 58814035073725d305fe3fb0c7d86c04104d286a251f54dba3286d584555be6cdb88c712cb597a387a7644fd72a4dc22fee5a3303d6a3951320268be4cc9fc4b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ **v2.6.6** Using a modified processing-core to support jdk9 (NB FX2D and sketches with control_panel using sliders are still expected to fail with jdk9). Jdk8 users should not notice any change.
2
+
1
3
  **v2.6.5** bump for processing-3.3.7
2
4
 
3
5
  **v2.6.4** Vec2D and Vec3D now support `copy` constructor where the original can be a duck-type. Further the only requirement is that the duck-type responds to `:x`, and `:y` by returning a `float` or `fixnum` thus Vec2D can be promoted to Vec3D (where `z = 0`), or more usually some other Vector or Point class can be used as the original. A VectorUtils library has been implemented, see examples for usage.
data/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # Propane
2
- [![Gem Version](https://badge.fury.io/rb/propane.svg)](https://badge.fury.io/rb/propane) [![Travis CI](https://travis-ci.org/ruby-processing/propane.svg)](https://travis-ci.org/ruby-processing/propane)
2
+ To build custom core see [processing-core][processing-core]
3
3
 
4
- A slim layer to communicate with Processing from JRuby, features a polyglot maven build. We have created a configuration free version of ruby processing, for processing-3.3.7, where we include a modified processing core (`public runPropane()` replaces `protected runSketch()`, not currently useable with jruby and jdk 9). These jars are small enough to include in a gem distribution, and hence we do not require configuration. This has created a scriptable version, ie files get run direct from jruby, but you could use jruby-complete if you used the propane script (avoids need to give the absolute data path for the data folder, but would also be needed for a watch mode). See guide to [building ruby-processing projects][building].
4
+ A slim layer to communicate with Processing from JRuby, features a polyglot maven build. We have created a configuration free version of ruby processing, for processing-3.3.7, where we include a modified processing core (`public runPropane()` replaces `protected runSketch()`, not currently useable with jruby and jdk 9). These jars are small enough to include in a gem distribution, and hence we do not require configuration. This has created a scriptable version, ie files get run direct from jruby, but you could use jruby-complete if you used the propane script (avoids need to give the absolute data path for the data folder, but would also be needed for a watch mode). See guide to [building ruby-processing projects][building]. NB: this is a far from perfect solution and some sketches still fail to run with jdk9, but a least I get to diagnose those errors too.
5
5
 
6
6
  adjust above for your OS/distro setup.
7
7
 
8
8
  ## Requirements
9
9
 
10
- - jdk8+ (jdk9 works but is noisy)
10
+ - jdk8+ (jdk9 mostly works, see changelog, but is noisy)
11
11
  - jruby-9.1.16.0
12
12
  - mvn-3.5.0+
13
13
  - processing-core.jar (_build only_) not generally available
@@ -23,7 +23,7 @@ rake javadoc
23
23
  ## Installation
24
24
  ```bash
25
25
  jgem install propane # from rubygems
26
- jgem install propane-2.6.5.pre-java.gem # local install, NB: not currently possible
26
+ jgem install propane-2.6.6-java.gem # local install requires a custom processing-core
27
27
  ```
28
28
 
29
29
  ## Usage
@@ -81,3 +81,5 @@ propane --install samples
81
81
 
82
82
  [building]:http://ruby-processing.github.io/building/building/
83
83
  [gh-pages]:https://ruby-processing.github.io/propane/
84
+ [processing-core]:https://github.com/ruby-processing/processing-core
85
+
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '2.6.5.pre'.freeze
3
+ VERSION = '2.6.6'.freeze
4
4
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'fileutils'
2
2
  project 'rp5extras', 'https://github.com/monkstone/propane' do
3
3
  model_version '4.0.0'
4
- id 'propane:propane', '2.6.5'
4
+ id 'propane:propane', '2.6.6'
5
5
  packaging 'jar'
6
6
  description 'rp5extras for propane'
7
7
  organization 'ruby-processing', 'https://ruby-processing.github.io'
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>propane</groupId>
13
13
  <artifactId>propane</artifactId>
14
- <version>2.6.5</version>
14
+ <version>2.6.6</version>
15
15
  <name>rp5extras</name>
16
16
  <description>rp5extras for propane</description>
17
17
  <url>https://github.com/monkstone/propane</url>
@@ -44,15 +44,15 @@ DO NOT MODIFIY - GENERATED CODE
44
44
  <url>https://github.com/ruby-processing/propane/issues</url>
45
45
  </issueManagement>
46
46
  <properties>
47
- <propane.basedir>${project.basedir}</propane.basedir>
47
+ <jogl.version>2.3.2</jogl.version>
48
+ <jruby.api>http://jruby.org/apidocs/</jruby.api>
49
+ <source.directory>src</source.directory>
48
50
  <maven.compiler.target>1.8</maven.compiler.target>
49
51
  <processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>
50
- <source.directory>src</source.directory>
51
- <maven.compiler.source>1.8</maven.compiler.source>
52
- <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
52
+ <propane.basedir>${project.basedir}</propane.basedir>
53
53
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
54
- <jogl.version>2.3.2</jogl.version>
55
- <jruby.api>http://jruby.org/apidocs/</jruby.api>
54
+ <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
55
+ <maven.compiler.source>1.8</maven.compiler.source>
56
56
  </properties>
57
57
  <dependencies>
58
58
  <dependency>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.5.pre
4
+ version: 2.6.6
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-25 00:00:00.000000000 Z
11
+ date: 2018-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -168,9 +168,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ">"
171
+ - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: 1.3.1
173
+ version: '0'
174
174
  requirements:
175
175
  - java runtime >= 1.8.0_151+
176
176
  rubyforge_project: