propane 3.4.1-java → 3.4.2-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f88b5c1c3e6afb699ccabb96cd98d9b60aa9d8ec0614d59a601a3e8df074946b
4
- data.tar.gz: 6943a2c007f56b01faf2ce1e3636f407d53dbf80c36458c27598e4365da46b48
3
+ metadata.gz: e6230638aa8f3fba662a21f16d203f35d4e54cbf8fa90f3d35aeec00aeae0aed
4
+ data.tar.gz: 62b86da2a9d1b46fa7f2f09463be5edbfd1d05336adf79ae17df362382b1fa34
5
5
  SHA512:
6
- metadata.gz: 0162ff22dcdda3764363e5fc2c1c07c9619a3f97e209837faa125a8d4fd6412e6077cd3ba3a436efbd33db7371a68adcbb166e46d324846aecff155ef4690c44
7
- data.tar.gz: c4fad0d7f20ca7b4b9fb5f840caf63da4d8f9f21805029e46fa024ce6c2b5d8cb7263df9ddba95932d2825d9510bd6bbd47884a478ce55aa135bcee2df4ab06d
6
+ metadata.gz: 8f8c4c2177460c3b96817b7c870de6312ebf864853216f3039bc33fec3ae97e713c4fe31c829a4e39d7e4aea56537cddece1399b772a0432e2d7695ec0f19e37
7
+ data.tar.gz: 286d27b5c13890175871709260d4a117545bf203679a40672518927a20a51940266cc5ae8293024d01a76f02f4ceac5ecdae61b686d9cf2f7259743500ea7b26
@@ -1,3 +1,5 @@
1
+ **v3.4.2** Fix native library bug on windows (thanks to Jay Scott). Add minim library examples
2
+
1
3
  **v3.4.1** Update to JRuby-9.2.9.0
2
4
 
3
5
  **v3.4.0** Experimental refactoring of ThinkDifferent, and some other processing classes
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.1-java.gem # local install
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.1-java.gem # local install
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(WINDOWS_FORMAT, '64') if /64/.match?(bit)
28
- return format(WINDOWS_FORMAT, '32') if /32/.match?(bit)
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
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '3.4.1'
3
+ VERSION = '3.4.2'
4
4
  end
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.1'
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.1</version>
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>
@@ -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 << 'lib/propane-3.4.1.jar'
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
- * The purpose of this tool is to allow propane users to use an alternative
3
- * to processing.org map, lerp and norm methods in their sketches
4
- * Copyright (c) 2015-19 Martin Prout. This tool is free software; you can
5
- * redistribute it and/or modify it under the terms of the GNU Lesser General
6
- * Public License as published by the Free Software Foundation; either version
7
- * 2.1 of the License, or (at your option) any later version.
8
- *
9
- * Obtain a copy of the license at http://www.gnu.org/licenses/lgpl-2.1.html
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;
@@ -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.6'.freeze
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.1
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-01 00:00:00.000000000 Z
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.1.jar
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