Skip to content

Commit fe6a081

Browse files
committed
ready for release
1 parent 0a5d872 commit fe6a081

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
**v1.1.1** Even more `data_path` fixes in examples, update to jruby-complete-9.1.2.0
2+
13
**v1.1.0** Using ruby to implement the `data_path` wrapper (to avoid java permission issues). Any macosx users that have problems with accessing the local data folders should use this wrapper within `load_image`, `load_shader` etc or provide the absolute path to the data file eg `File.absolute_path('data/image.png')`. Using the `data_path` wrapper or providing the absolute data path also may fix the permission issue that required the `--no-jruby` flag (tested on linux). Includes update to jruby-complete-9.1.1.0.
24

35
**v1.0.8** Exposed Constrain functionality for ArcBall, added literate perspektive method. No longer trying to expose `sketchPath` variable (that was private since recent changes to vanilla processing), but provided an overloaded `sketchPath` method. Re-factor `MathTool` module class (jruby extension) to a simpler more correct form. Recommending the use of latest processing-3.1.1.
6+
47
**v1.0.7** Added tool to efficiently convert an Array of web colour Strings to and Array of color int (should be used by users of hype library, that uses of web strings in most of its examples). Update to use jruby-complete-9.1.0.0.
58

69
**v1.0.6** Experimental support for an in sketch slider, examples now featuring Joshua Davis hype library.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A clean start for `jruby_art` that works best with the latest version of [processing-3.1.1](https://github.com/processing/processing/releases) and [jruby-9.1.0.0](http://jruby.org/download) see [wiki](https://github.com/ruby-processing/JRubyArt/wiki/Building-latest-gem) for building gem from this repo. Changes from processing- 2.0 to [processing-3.0 here](https://github.com/processing/processing/wiki/Changes-in-3.0). Should work on same platforms as vanilla processing (windows, mac, linux) for Android see Yuki Morohoshi [rubuto-processing3][].
77
## Requirements
88

9-
A suitable version of ruby (MRI ruby > 2.2 or `jruby-9.1.0.0+`) to download gem.
9+
A suitable version of ruby (MRI ruby > 2.2 or `jruby-9.1.2.0+`) to download gem.
1010

1111
`processing-3.1.1`
1212

@@ -33,11 +33,11 @@ sketchbook_path: /home/tux/sketchbook
3333
3434
```bash
3535
gem install jruby_art
36-
k9 setup install # installs jruby-complete-9.1.0.0
36+
k9 setup install # installs jruby-complete-9.1.2.0
3737
k9 setup unpack_samples # downloads and installs samples to ~/k9_samples
3838
cd ~/k9_samples/contributed
39-
k9 --nojruby run jwishy.rb # unless you have jruby-9.1.0.0 installed or config JRUBY: 'false'
40-
k9 run jwishy.rb # if you have jruby-9.1.0.0 installed or config JRUBY: 'false'
39+
k9 --nojruby run jwishy.rb # unless you have jruby-9.1.2.0 installed or config JRUBY: 'false'
40+
k9 run jwishy.rb # if you have jruby-9.1.2.0 installed or config JRUBY: 'false'
4141
```
4242
## Create sketches from built in templates
4343
```bash
@@ -51,7 +51,7 @@ k9 create ted 200 200 p2d --emacs # class wrapped P2D sketch ted.rb for emac
5151

5252
## Simple Sketch
5353
```ruby
54-
# :sketch_title belongs in setup it is a convenience method of jruby_art-3.0
54+
# :sketch_title belongs in setup it is a convenience method of jruby_art-3.0+
5555
def setup
5656
sketch_title 'My Sketch'
5757
end

0 commit comments

Comments
 (0)