propane 2.6.1-java → 2.6.2-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/.mvn/extensions.xml +1 -1
- data/CHANGELOG.md +2 -0
- data/README.md +10 -5
- data/lib/propane/version.rb +1 -1
- data/pom.rb +2 -2
- data/pom.xml +2 -2
- data/propane.gemspec +5 -1
- data/vendors/Rakefile +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25cbed1c51b8566efd012565a4c8d5247150cc7c
|
|
4
|
+
data.tar.gz: 4e7aec446225384cff1fc5380465c9860693df63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbdee922b6f42bd95fe0a199a8651081667cdad2313cf7ec84ddd6a016fa20934ac454fe9a7ba008fb7cd5a1623d29cd2613d19765b2c7b70e074bb736fbf27a
|
|
7
|
+
data.tar.gz: 43db2783552ad93b0afa607751616ef5e6aa50ee0d1c6f466162073f44ef27d901481af4d338ec44b83169f9bdf20fe839306cc6d72bac0a296eb12418e4c4b6
|
data/.mvn/extensions.xml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
**v2.6.2** Features example sketches using the PixelFlow library by Thomas Diewald
|
|
2
|
+
|
|
1
3
|
**v2.6.1** Bump processing version, bump recommended jruby version.
|
|
2
4
|
|
|
3
5
|
**v2.6.0** Refactored `LibraryLoader` knows less about `Library` class. The library class _knows_ about paths, and checks that they exist. Features ability to load GLVideo library, that will surely be the future for video (supports gstreamer-1.0 instead of gstreamer-0.1.0 that has already been dropped by some linux distros).
|
data/README.md
CHANGED
|
@@ -54,10 +54,7 @@ end
|
|
|
54
54
|
FlashingLightsSketch.new
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
propane --install samples
|
|
60
|
-
```
|
|
57
|
+
|
|
61
58
|
There is a handy sketch creator tool
|
|
62
59
|
```bash
|
|
63
60
|
propane -c my_sketch 200 200 # for default renderer
|
|
@@ -68,7 +65,7 @@ propane -c my_sketch 200 200 p3d # for opengl 3D renderer
|
|
|
68
65
|
To run sketches
|
|
69
66
|
|
|
70
67
|
```bash
|
|
71
|
-
jruby
|
|
68
|
+
jruby my_sketch.rb # or use script to run sketches from atom
|
|
72
69
|
```
|
|
73
70
|
To install the sound and video libraries `~/.propane/libraries`. Depends on wget.
|
|
74
71
|
```bash
|
|
@@ -79,5 +76,13 @@ Other java libraries can be manually installed to the same folder (no need for p
|
|
|
79
76
|
|
|
80
77
|
See [gh-pages][gh-pages] for more detailed instructions and much more.
|
|
81
78
|
|
|
79
|
+
## Examples
|
|
80
|
+
|
|
81
|
+
[Worked Examples](https://github.com/ruby-processing/propane-examples) more to follow, feel free to add your own, especially ruby-2.2+ syntax now we can. To install the samples. The samples get copied to `~/propane_samples`. Depends on wget.
|
|
82
|
+
```bash
|
|
83
|
+
propane --install samples
|
|
84
|
+
```
|
|
85
|
+
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.
|
|
86
|
+
|
|
82
87
|
[building]:http://ruby-processing.github.io/building/building/
|
|
83
88
|
[gh-pages]:https://ruby-processing.github.io/propane/
|
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.2'
|
|
5
5
|
packaging 'jar'
|
|
6
6
|
description 'rp5extras for propane'
|
|
7
7
|
organization 'ruby-processing', 'https://ruby-processing.github.io'
|
|
@@ -32,7 +32,7 @@ project 'rp5extras', 'https://github.com/monkstone/propane' do
|
|
|
32
32
|
'jogl.version' => '2.3.2'
|
|
33
33
|
)
|
|
34
34
|
|
|
35
|
-
pom 'org.jruby:jruby:9.1.
|
|
35
|
+
pom 'org.jruby:jruby:9.1.13.0'
|
|
36
36
|
jar 'org.processing:core:3.3.6'
|
|
37
37
|
jar 'org.processing:video:3.0.2'
|
|
38
38
|
jar('org.jogamp.jogl:jogl-all:${jogl.version}')
|
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.2</version>
|
|
15
15
|
<name>rp5extras</name>
|
|
16
16
|
<description>rp5extras for propane</description>
|
|
17
17
|
<url>https://github.com/monkstone/propane</url>
|
|
@@ -58,7 +58,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
58
58
|
<dependency>
|
|
59
59
|
<groupId>org.jruby</groupId>
|
|
60
60
|
<artifactId>jruby</artifactId>
|
|
61
|
-
<version>9.1.
|
|
61
|
+
<version>9.1.13.0</version>
|
|
62
62
|
<type>pom</type>
|
|
63
63
|
</dependency>
|
|
64
64
|
<dependency>
|
data/propane.gemspec
CHANGED
|
@@ -9,7 +9,11 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.authors = ['monkstone']
|
|
10
10
|
gem.email = ['mamba2928@yahoo.co.uk']
|
|
11
11
|
gem.licenses = %w(GPL-3.0 LGPL-2.0)
|
|
12
|
-
gem.description
|
|
12
|
+
gem.description = <<-EOS
|
|
13
|
+
A batteries included version of processing in ruby, for MacOS and linux64. The
|
|
14
|
+
current release features several PixelFlow glsl library examples, including a
|
|
15
|
+
few shadertoy demos as sketches.
|
|
16
|
+
EOS
|
|
13
17
|
gem.summary = %q{ruby wrapper for processing-3.3.6 on MacOS and linux64 bit only for opengl}
|
|
14
18
|
gem.homepage = 'https://ruby-processing.github.io/propane/'
|
|
15
19
|
gem.files = `git ls-files`.split($/)
|
data/vendors/Rakefile
CHANGED
|
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
|
|
|
10
10
|
GLVIDEO = 'processing-glvideo.zip'
|
|
11
11
|
VIDEO = 'video-2.zip'
|
|
12
12
|
VIDEO_VERSION = '2' # version 1.0.1
|
|
13
|
-
EXAMPLES = '1.
|
|
13
|
+
EXAMPLES = '1.7'.freeze
|
|
14
14
|
HOME_DIR = ENV['HOME']
|
|
15
15
|
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
|
|
16
16
|
|
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.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- monkstone
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -58,7 +58,10 @@ dependencies:
|
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: 1.0.0
|
|
61
|
-
description:
|
|
61
|
+
description: |2
|
|
62
|
+
A batteries included version of processing in ruby, for MacOS and linux64. The
|
|
63
|
+
current release features several PixelFlow glsl library examples, including a
|
|
64
|
+
few shadertoy demos as sketches.
|
|
62
65
|
email:
|
|
63
66
|
- mamba2928@yahoo.co.uk
|
|
64
67
|
executables:
|