propane 3.4.1-java → 3.4.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/README.md +2 -2
- data/lib/propane/native_folder.rb +2 -2
- data/lib/propane/version.rb +1 -1
- data/pom.rb +1 -1
- data/pom.xml +1 -1
- data/propane.gemspec +1 -1
- data/src/main/java/monkstone/MathToolModule.java +10 -9
- data/vendors/Rakefile +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6230638aa8f3fba662a21f16d203f35d4e54cbf8fa90f3d35aeec00aeae0aed
|
4
|
+
data.tar.gz: 62b86da2a9d1b46fa7f2f09463be5edbfd1d05336adf79ae17df362382b1fa34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f8c4c2177460c3b96817b7c870de6312ebf864853216f3039bc33fec3ae97e713c4fe31c829a4e39d7e4aea56537cddece1399b772a0432e2d7695ec0f19e37
|
7
|
+
data.tar.gz: 286d27b5c13890175871709260d4a117545bf203679a40672518927a20a51940266cc5ae8293024d01a76f02f4ceac5ecdae61b686d9cf2f7259743500ea7b26
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -27,10 +27,10 @@ rake javadoc
|
|
27
27
|
|
28
28
|
```bash
|
29
29
|
jgem install propane # from rubygems
|
30
|
-
jgem install propane-3.4.
|
30
|
+
jgem install propane-3.4.2-java.gem # local install
|
31
31
|
# Alternative
|
32
32
|
jruby -S gem install propane # from rubygems
|
33
|
-
jruby -S gem install propane-3.4.
|
33
|
+
jruby -S gem install propane-3.4.2-java.gem # local install
|
34
34
|
```
|
35
35
|
|
36
36
|
## Check Install
|
@@ -24,8 +24,8 @@ class NativeFolder
|
|
24
24
|
return 'macosx' if /darwin|mac/.match?(os)
|
25
25
|
return format(LINUX_FORMAT, bit) if os =~ /linux/
|
26
26
|
if WIN_PATTERNS.any? { |pat| pat =~ os }
|
27
|
-
return format(
|
28
|
-
return format(
|
27
|
+
return format(WIN_FORMAT, '64') if /64/.match?(bit)
|
28
|
+
return format(WIN_FORMAT, '32') if /32/.match?(bit)
|
29
29
|
end
|
30
30
|
raise 'Unsupported Architecture'
|
31
31
|
end
|
data/lib/propane/version.rb
CHANGED
data/pom.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
project 'propane', 'https://github.com/monkstone/propane' do
|
2
2
|
|
3
3
|
model_version '4.0.0'
|
4
|
-
id 'propane:propane:3.4.
|
4
|
+
id 'propane:propane:3.4.2'
|
5
5
|
packaging 'jar'
|
6
6
|
|
7
7
|
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
|
data/pom.xml
CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
12
12
|
<groupId>propane</groupId>
|
13
13
|
<artifactId>propane</artifactId>
|
14
|
-
<version>3.4.
|
14
|
+
<version>3.4.2</version>
|
15
15
|
<name>propane</name>
|
16
16
|
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
|
17
17
|
<url>https://github.com/monkstone/propane</url>
|
data/propane.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.summary = %q{ruby implementation of processing-4.0 on MacOS, linux and windows (64bit only)}
|
16
16
|
gem.homepage = 'https://ruby-processing.github.io/propane/'
|
17
17
|
gem.files = `git ls-files`.split($/)
|
18
|
-
gem.files <<
|
18
|
+
gem.files << "lib/propane-#{Propane::VERSION}.jar"
|
19
19
|
gem.files << 'lib/gluegen-rt.jar'
|
20
20
|
gem.files << 'lib/jogl-all.jar'
|
21
21
|
gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'
|
@@ -1,13 +1,14 @@
|
|
1
1
|
/**
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
* The purpose of this tool is to allow JRubyArt users to use an alternative
|
3
|
+
* to processing.org map, lerp and norm methods in their sketches and to implement
|
4
|
+
* JRubyArt convenenience method grid(width, height, stepW, stepH) { |x, y| do stuff }
|
5
|
+
* Copyright (c) 2015-19 Martin Prout. This tool is free software; you can
|
6
|
+
* redistribute it and/or modify it under the terms of the GNU Lesser General
|
7
|
+
* Public License as published by the Free Software Foundation; either version
|
8
|
+
* 2.1 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* Obtain a copy of the license at http://www.gnu.org/licenses/lgpl-2.1.html
|
11
|
+
*/
|
11
12
|
package monkstone;
|
12
13
|
|
13
14
|
import org.jruby.Ruby;
|
data/vendors/Rakefile
CHANGED
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
|
|
10
10
|
GLVIDEO = 'processing-glvideo.zip'
|
11
11
|
VIDEO = 'video-2.0-beta4.zip'
|
12
12
|
VIDEO_VERSION = 'r6-v2.0-beta4'
|
13
|
-
EXAMPLES = '2.
|
13
|
+
EXAMPLES = '2.7'.freeze
|
14
14
|
HOME_DIR = ENV['HOME']
|
15
15
|
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: propane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- monkstone
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-12-
|
11
|
+
date: 2019-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -91,7 +91,7 @@ files:
|
|
91
91
|
- lib/jogl-all-natives-macosx-universal.jar
|
92
92
|
- lib/jogl-all-natives-windows-amd64.jar
|
93
93
|
- lib/jogl-all.jar
|
94
|
-
- lib/propane-3.4.
|
94
|
+
- lib/propane-3.4.2.jar
|
95
95
|
- lib/propane.rb
|
96
96
|
- lib/propane/app.rb
|
97
97
|
- lib/propane/creators/sketch_class.rb
|