diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e7c057..01889c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +v1.2.3 Favor latest beta Video2 library over GLVideo. + v1.2.2 Removed landscape from example as too taxing for raspberryPI. Improved geany tools. v1.2.1 Fix install Samples etc. in runner.rb to match modified vendor Rakefile. diff --git a/Rakefile b/Rakefile index e8d24ce..a016b63 100644 --- a/Rakefile +++ b/Rakefile @@ -12,7 +12,7 @@ task :init do # for Archlinux etc # processing_root = File.dirname(`readlink -f $(which processing)`) # alternative for debian linux etc - processing_root = File.join(HOME_DIR, 'processing-3.4') + processing_root = File.join(HOME_DIR, 'processing-3.5.3') jar_dir = File.join(processing_root, 'core', 'library') opengl = Dir.entries(jar_dir).grep(/amd64|armv6hf/).select { |jar| jar =~ /linux/ } opengl.concat %w[jogl-all.jar gluegen-rt.jar] diff --git a/lib/picrate/version.rb b/lib/picrate/version.rb index d1f4f50..5579239 100644 --- a/lib/picrate/version.rb +++ b/lib/picrate/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PiCrate - VERSION = '1.2.2' + VERSION = '1.2.3' end diff --git a/pom.rb b/pom.rb index 7673d20..803ce81 100644 --- a/pom.rb +++ b/pom.rb @@ -1,7 +1,7 @@ project 'picrate', 'http://maven.apache.org' do model_version '4.0.0' - id 'ruby-processing:picrate:1.2.2' + id 'ruby-processing:picrate:1.2.3' packaging 'jar' description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'