Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Apr 24, 2016
1 parent 45fb1bf commit 96dbab6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**v1.0.6** Experimental support for an in sketch slider, examples now featuring Joshua Davis hype library.

**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

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

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


**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

**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).
Expand Down
11 changes: 6 additions & 5 deletions jruby_art.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ Gem::Specification.new do |spec|
spec.email = 'martin_p@lineone.net'
spec.description = <<-EOS
JRubyArt is a ruby wrapper for the processing art framework.
The current version supports processing-3.0.2, and uses jruby-9.0.5.0
as the glue between ruby and java. You can use both processing libraries and ruby
gems in your sketches. Features create/run/watch/live modes. The "watch" mode,
The current release features examples using hype library by Joshua Davis.
This version supports processing-3.0.2, and uses jruby-9.0.5.0 as the glue
between ruby and java. You can use both processing libraries and ruby gems
in your sketches. Features create/run/watch/live modes. The "watch" mode,
provides a nice REPL-ish way to work on your processing sketches. Includes:-
A "Control Panel" library, so that you can easily create sliders, buttons,
checkboxes and drop-down menus, and hook them into your sketch's instance
Expand All @@ -34,6 +35,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rake', '~> 10.4'
spec.add_development_dependency 'minitest', '~> 5.8'
spec.requirements << 'A decent graphics card'
spec.requirements << 'java runtime >= 1.8+'
spec.requirements << 'processing = 3.0.1+'
spec.requirements << 'java runtime >= 1.8.0_77+'
spec.requirements << 'processing = 3.0.2+'
end
2 changes: 1 addition & 1 deletion vendors/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WARNING = <<-EOS
EOS

JRUBYC_VERSION = '9.0.5.0'
EXAMPLES = '1.4'
EXAMPLES = '1.5'
HOME_DIR = ENV['HOME']
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']

Expand Down

0 comments on commit 96dbab6

Please sign in to comment.