diff --git a/README.rdoc b/README.rdoc index 2f65c4d..be68e5a 100644 --- a/README.rdoc +++ b/README.rdoc @@ -71,6 +71,8 @@ For more details, see the examples. examples/color_picker.rb is the most complex == Changelog +=== v.0.2.0 + * double buffering (see Launchpad::Device#buffering_mode) * don't update grid button 0,0 before change_all (in order to reset rapid update pointer), use MIDI message without visual effect * (at least) doubled the speed of change_all by not sending each message individually but sending them in one go (as an array) diff --git a/launchpad.gemspec b/launchpad.gemspec index a21aba8..774ecfe 100644 --- a/launchpad.gemspec +++ b/launchpad.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{launchpad} - s.version = "0.1.1" + s.version = "0.2.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Thomas Jachmann"] - s.date = %q{2009-11-18} + s.date = %q{2009-11-24} s.description = %q{This gem provides an interface to access novation's launchpad programmatically. LEDs can be lighted and button presses can be evaluated using launchpad's MIDI input/output.} s.email = %q{tom.j@gmx.net} s.extra_rdoc_files = [ @@ -25,6 +25,7 @@ Gem::Specification.new do |s| "examples/color_picker.rb", "examples/colors.rb", "examples/doodle.rb", + "examples/double_buffering.rb", "examples/drawing_board.rb", "examples/feedback.rb", "examples/reset.rb", @@ -53,6 +54,7 @@ Gem::Specification.new do |s| "examples/color_picker.rb", "examples/colors.rb", "examples/doodle.rb", + "examples/double_buffering.rb", "examples/drawing_board.rb", "examples/feedback.rb", "examples/reset.rb", diff --git a/lib/launchpad/version.rb b/lib/launchpad/version.rb index 09390d0..1cf184f 100644 --- a/lib/launchpad/version.rb +++ b/lib/launchpad/version.rb @@ -1,3 +1,3 @@ module Launchpad - VERSION = '0.1.1' + VERSION = '0.2.0' end \ No newline at end of file