Skip to content

Commit 96dbab6

Browse files
author
monkstone
committed
update example
1 parent 45fb1bf commit 96dbab6

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
**v1.0.6** Experimental support for an in sketch slider, examples now featuring Joshua Davis hype library.
12

23
**v1.0.5** This version prefers processing-3.0.2 as the most recent version, and should be matched with oracle `jdk1.8.0_74+` for JavaFX fixes, or OpenJDK-8 and the latest OpenJFX otherwise stick with processing-3.0.1, which masks JavaFX inversion issue
34

@@ -23,7 +24,6 @@ map1d, lerp, norm, p5map and `constrained_map` as module methods in a JRuby exte
2324

2425
**v0.4.1** Implement a `live` mode with `pry`
2526

26-
2727
**v0.4.0** Update to jruby-9.0.0.0 we can revert to using require to load jars first release tested with processing-3.0a11 on linux
2828

2929
**v0.3.1** Update to jruby-complete-9.0.0.0.rc2, add vector type access to Vec2D and Vec3D parameters eg `vector[:x]` to return 'x' value, and `vector[:x] = 20` to assign value (also simplify the return type of assignment as input value).

jruby_art.gemspec

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ Gem::Specification.new do |spec|
1111
spec.email = '[email protected]'
1212
spec.description = <<-EOS
1313
JRubyArt is a ruby wrapper for the processing art framework.
14-
The current version supports processing-3.0.2, and uses jruby-9.0.5.0
15-
as the glue between ruby and java. You can use both processing libraries and ruby
16-
gems in your sketches. Features create/run/watch/live modes. The "watch" mode,
14+
The current release features examples using hype library by Joshua Davis.
15+
This version supports processing-3.0.2, and uses jruby-9.0.5.0 as the glue
16+
between ruby and java. You can use both processing libraries and ruby gems
17+
in your sketches. Features create/run/watch/live modes. The "watch" mode,
1718
provides a nice REPL-ish way to work on your processing sketches. Includes:-
1819
A "Control Panel" library, so that you can easily create sliders, buttons,
1920
checkboxes and drop-down menus, and hook them into your sketch's instance
@@ -34,6 +35,6 @@ Gem::Specification.new do |spec|
3435
spec.add_development_dependency 'rake', '~> 10.4'
3536
spec.add_development_dependency 'minitest', '~> 5.8'
3637
spec.requirements << 'A decent graphics card'
37-
spec.requirements << 'java runtime >= 1.8+'
38-
spec.requirements << 'processing = 3.0.1+'
38+
spec.requirements << 'java runtime >= 1.8.0_77+'
39+
spec.requirements << 'processing = 3.0.2+'
3940
end

vendors/Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WARNING = <<-EOS
99
EOS
1010

1111
JRUBYC_VERSION = '9.0.5.0'
12-
EXAMPLES = '1.4'
12+
EXAMPLES = '1.5'
1313
HOME_DIR = ENV['HOME']
1414
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1515

0 commit comments

Comments
 (0)