propane 2.6.1-java → 2.6.2-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c180c9608a7070063de7534892e0901c906ee6da
4
- data.tar.gz: a6b76bcf18c23aa49c92488bdc99e507b57e048c
3
+ metadata.gz: 25cbed1c51b8566efd012565a4c8d5247150cc7c
4
+ data.tar.gz: 4e7aec446225384cff1fc5380465c9860693df63
5
5
  SHA512:
6
- metadata.gz: 14d13c0d73c9569614a601b37dd7d08ee047f060096523777f767807482a1783433a1f54a6eb594b0966a7628eab7ec47addb166e37d590f667dc34dd66f12df
7
- data.tar.gz: 951952fcf4147f075e60dce534ed2fc69f829a009b5a532d01b08bb62d6b687e2bb6f7ce857c764887d74e3b23e946339ecfe0aea9648406305c8576549327a0
6
+ metadata.gz: fbdee922b6f42bd95fe0a199a8651081667cdad2313cf7ec84ddd6a016fa20934ac454fe9a7ba008fb7cd5a1623d29cd2613d19765b2c7b70e074bb736fbf27a
7
+ data.tar.gz: 43db2783552ad93b0afa607751616ef5e6aa50ee0d1c6f466162073f44ef27d901481af4d338ec44b83169f9bdf20fe839306cc6d72bac0a296eb12418e4c4b6
@@ -3,6 +3,6 @@
3
3
  <extension>
4
4
  <groupId>io.takari.polyglot</groupId>
5
5
  <artifactId>polyglot-ruby</artifactId>
6
- <version>0.2.0</version>
6
+ <version>0.2.1</version>
7
7
  </extension>
8
8
  </extensions>
@@ -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
- To install the samples. The samples get copied to `~/propane_samples`. Depends on wget.
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 -S propane --run my_sketch.rb # belt and braces version
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/
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '2.6.1'.freeze
3
+ VERSION = '2.6.2'.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.1'
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.12.0'
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.1</version>
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.12.0</version>
61
+ <version>9.1.13.0</version>
62
62
  <type>pom</type>
63
63
  </dependency>
64
64
  <dependency>
@@ -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 = %q{A batteries included version of processing in ruby, MacOS and linux64}
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($/)
@@ -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.6'.freeze
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.1
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-09-07 00:00:00.000000000 Z
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: A batteries included version of processing in ruby, MacOS and linux64
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: