You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
2
-
**v1.2.7** Introduce new config parameters `sketch_title`, `width` and `height` with a view to better static sketch support (for youngsters, absolute novices.
2
+
**v1.2.7** Introduce new config parameters `sketch_title`, `width` and `height` with a view to better static sketch support (for youngsters, absolute novices). Update to use jruby-9.1.7.0 and latest samples 1.8 (includes joons renderer examples)
3
3
4
4
**v1.2.6** Update to processing-3.2.3 and jruby-9.1.6.0-complete, re-factor to use a Command class to create argument array and exec.
5
+
5
6
**v1.2.5** Change gemspec description, trying to get people not to ignore changes to documentation?
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Versions before JRubyArt-1.2.0, are unsupported, please update, preferably to la
7
7
_Note the main reason for the current build to fail on travis is when the current version of [processing is not available from maven central][testing], it has only ever been available by third parties (I am eternally hopeful that one day processing.org will see the light), actually rvm with jruby as used by travis-ci is also pretty crap as judged by the build traces._
8
8
9
9
## Requirements
10
-
A clean start for `jruby_art` that works best with the latest version of [processing-3.2.3](https://github.com/processing/processing/releases) and [jruby-9.1.6.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][].
10
+
A clean start for `jruby_art` that works best with the latest version of [processing-3.2.3](https://github.com/processing/processing/releases) and [jruby-9.1.7.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][].
11
11
## Requirements
12
12
13
13
A suitable version of ruby (MRI ruby > 2.3 or `jruby-9.1.6.0+`) to download gem.
@@ -32,15 +32,18 @@ PROCESSING_ROOT: "/home/tux/processing-3.2.3" # typical linux shown
32
32
# important sketch_book path may be different for processing-3.0
33
33
sketchbook_path: "/home/tux/sketchbook"
34
34
template: bare
35
+
sketch_title: 'Edit Static Sketch'# for static sketch only
36
+
width: 600# for static sketch only
37
+
height: 600# for static sketch only
35
38
```
36
39
37
40
## Install Steps (assumes you have requirements above)
38
41
39
42
```bash
40
43
gem install jruby_art
41
-
k9 --install # installs jruby-complete-9.1.6.0 and downloads and installs samples to ~/k9_samples
44
+
k9 --install # installs jruby-complete-9.1.7.0 and downloads and installs samples to ~/k9_samples
42
45
cd ~/k9_samples/contributed
43
-
k9 --run jwishy.rb # if you have jruby-9.1.6.0 installed or config `JRUBY: false`
46
+
k9 --run jwishy.rb # if you have jruby-9.1.7.0 installed or config `JRUBY: false`
44
47
# to use jruby-complete set `JRUBY: false` in config
0 commit comments