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 +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +6 -4
- data/lib/propane/version.rb +1 -1
- data/pom.rb +1 -1
- data/pom.xml +7 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89ba6d3235b3cea165b0979c3eaffdc0087c91b3c090cb2ee472c54bc3ed418a
|
4
|
+
data.tar.gz: a6e6e90f5180c37ec3a8b62291f51562e29ccb850396c3fe21957383178476f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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.
|
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
|
+
|
data/lib/propane/version.rb
CHANGED
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.
|
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.
|
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
|
-
<
|
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
|
-
<
|
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
|
-
<
|
55
|
-
<
|
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.
|
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-
|
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:
|
173
|
+
version: '0'
|
174
174
|
requirements:
|
175
175
|
- java runtime >= 1.8.0_151+
|
176
176
|
rubyforge_project:
|