README.md in nuklear-0.1.0 vs README.md in nuklear-0.1.1

- old
+ new

@@ -16,10 +16,17 @@ This project implements a set of Ruby classes which wrap the Nuklear API. It also provides two sample renderers (OpenGL 2 and OpenGL 4). +## Screenshots + +![Hello Nuklear](https://github.com/sinisterchipmunk/nuklear-ruby/blob/master/examples/hello_nuklear.png) + +![Calculator](https://github.com/sinisterchipmunk/nuklear-ruby/blob/master/examples/calculator.png) + + ## Installation Add this line to your application's Gemfile: ```ruby @@ -73,11 +80,11 @@ # Nuklear::Renderer, but this will not actually draw anything. # Nuklear::Renderer is great for unit testing and as a base class for us # to actually implement our real renderer on top of. Here, we'll use the # bundled OpenGL 2 renderer. require 'nuklear/nuklear_renderer_opengl2' -ctx.renderer = Nuklear::Renderer::OpenGL2.new(ctx) +ctx.renderer = Nuklear::Renderer::OpenGL2.new ``` ### With DSL For convenience, a DSL is provided. It is particularly useful for building @@ -186,10 +193,10 @@ ## Contributing Bug reports and pull requests are welcome on GitHub at -https://github.com/[USERNAME]/nuklear. +https://github.com/sinisterchipmunk/nuklear-ruby. ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).