propane 2.3.1-java → 2.3.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
  SHA1:
3
- metadata.gz: 4d725a63b42635bff188a63809d845500b3d4827
4
- data.tar.gz: 1da37fcd8930186d6824153fa80b85b91360cec8
3
+ metadata.gz: f367e2f0aeb69bf6eb53537bc1c17846f7c1961b
4
+ data.tar.gz: cd1ea6e20cfc78740c234bfd9c93e6fc583c2622
5
5
  SHA512:
6
- metadata.gz: edb41b6d1e2f885412901f3156b8f32000eadfbf5cbf3752a154bbd6b2dcaabdf5d395262f11c7edfad5c55aea99cb90654855e5c36cffac40d001d2bf906c45
7
- data.tar.gz: 02263c502b43aa18190da5e63d14605810edbc80c28610dd72cc57d68825f357db51683def11736d09d0b433b1ffa1155323f9855794dfcef221f98332a297ee
6
+ metadata.gz: 5c56827f7ea02240d754466c5a9a63e73d806cefe74d1aa8441fffe6435fbbe95eb128aaab5fa289da74db6d2918b2ac3ceece88426a64b668370e2249442141
7
+ data.tar.gz: 8f80c1e5cfd46105b8805b67b785123ad8d4161635fd35e644803eda41643d149a06f557d0c818a7d3b9a81d9d0e8a2966029984e721d52f085dcb157fbd38c7
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Propane
3
- VERSION = '2.3.1'.freeze
3
+ VERSION = '2.3.2'.freeze
4
4
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'fileutils'
2
2
  project 'rp5extras', 'https://github.com/monkstone/propane' do
3
3
  model_version '4.0.0'
4
- id 'propane:propane', '2.3.1'
4
+ id 'propane:propane', '2.3.2'
5
5
  packaging 'jar'
6
6
  description 'rp5extras for propane'
7
7
  organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -33,7 +33,7 @@ project 'rp5extras', 'https://github.com/monkstone/propane' do
33
33
  )
34
34
 
35
35
  pom 'org.jruby:jruby:9.1.8.0'
36
- jar 'org.processing:core:3.3.1'
36
+ jar 'org.processing:core:3.3.2'
37
37
  jar 'org.processing:video:3.0.2'
38
38
  jar('org.jogamp.jogl:jogl-all:${jogl.version}')
39
39
  jar('org.jogamp.gluegen:gluegen-rt-main:${jogl.version}')
@@ -44,7 +44,7 @@ project 'rp5extras', 'https://github.com/monkstone/propane' do
44
44
  execute_goals( id: 'default-cli',
45
45
  artifactItems: [ { groupId: 'org.processing',
46
46
  artifactId: 'core',
47
- version: '3.3.1',
47
+ version: '3.3.2',
48
48
  type: 'jar',
49
49
  outputDirectory: '${propane.basedir}/lib'
50
50
  },
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>2.3.1</version>
14
+ <version>2.3.2</version>
15
15
  <name>rp5extras</name>
16
16
  <description>rp5extras for propane</description>
17
17
  <url>https://github.com/monkstone/propane</url>
@@ -64,7 +64,7 @@ DO NOT MODIFIY - GENERATED CODE
64
64
  <dependency>
65
65
  <groupId>org.processing</groupId>
66
66
  <artifactId>core</artifactId>
67
- <version>3.3.1</version>
67
+ <version>3.3.2</version>
68
68
  </dependency>
69
69
  <dependency>
70
70
  <groupId>org.processing</groupId>
@@ -103,7 +103,7 @@ DO NOT MODIFIY - GENERATED CODE
103
103
  <artifactItem>
104
104
  <groupId>org.processing</groupId>
105
105
  <artifactId>core</artifactId>
106
- <version>3.3.1</version>
106
+ <version>3.3.2</version>
107
107
  <type>jar</type>
108
108
  <outputDirectory>${propane.basedir}/lib</outputDirectory>
109
109
  </artifactItem>
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
  gem.homepage = 'https://ruby-processing.github.io/propane/'
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.files << 'lib/propane.jar'
17
- gem.files << 'lib/core-3.3.1.jar'
17
+ gem.files << 'lib/core-3.3.2.jar'
18
18
  gem.files << 'lib/gluegen-rt-2.3.2.jar'
19
19
  gem.files << 'lib/jogl-all-2.3.2.jar'
20
20
  gem.files << 'lib/gluegen-rt-2.3.2-natives-linux-amd64.jar'
@@ -23,7 +23,7 @@ Gem::Specification.new do |gem|
23
23
  gem.files << 'lib/jogl-all-2.3.2-natives-macosx-universal.jar'
24
24
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
25
25
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
26
- gem.add_runtime_dependency 'arcball', '~> 0.0.3'
26
+ gem.add_runtime_dependency 'arcball', '~> 1.0', '>= 1.0.0'
27
27
  gem.require_paths = ['lib']
28
28
  gem.platform = 'java'
29
29
  end
@@ -9,7 +9,7 @@ SOUND = 'sound.zip'.freeze
9
9
  SOUND_VERSION = 'v1.3.2' # version 1.3.2
10
10
  VIDEO = 'video-2.zip'
11
11
  VIDEO_VERSION = '2' # version 1.0.1
12
- EXAMPLES = '1.2'.freeze
12
+ EXAMPLES = '1.0'.freeze
13
13
  HOME_DIR = ENV['HOME']
14
14
  MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
15
15
 
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: 2.3.1
4
+ version: 2.3.2
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-24 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: arcball
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.0.3
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
- version: 0.0.3
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
27
33
  description: A batteries included version of processing in ruby, MacOS and linux64
28
34
  email:
29
35
  - mamba2928@yahoo.co.uk
@@ -45,7 +51,7 @@ files:
45
51
  - Rakefile
46
52
  - bin/propane
47
53
  - lib/PROCESSING_LICENSE.txt
48
- - lib/core-3.3.1.jar
54
+ - lib/core-3.3.2.jar
49
55
  - lib/export.txt
50
56
  - lib/gluegen-rt-2.3.2-natives-linux-amd64.jar
51
57
  - lib/gluegen-rt-2.3.2-natives-macosx-universal.jar