propane 3.7.0.pre-java → 3.7.1-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: b0e8998483c06aa7d27737cd3b9d1f87ef8edb0268367f58d42356b7f5c20aa1
4
- data.tar.gz: de9bb8230f17b2aa2cd0da453b465c8d9f529a74b74c0de0f6c39aa62fb39eb9
3
+ metadata.gz: 8d91c85e879a5cf795566043ce69accbc17b2d71f34ddbfbe7f3a7855975b5e3
4
+ data.tar.gz: 70ddc22146913b60b6cf5dc66e9cbb47efa20e394acc039aca71a16282f80e76
5
5
  SHA512:
6
- metadata.gz: a54ad411a64dd89249880b5a72cf4687b475267196659bb1887b0fe9dbbce3013357ba5196a0da2369cbc92a49a9410c1c9155f9028feff3152149725c021957
7
- data.tar.gz: 2ca39c591cb7a15b0a9f592c4f335ba5062c1a9b6dbda26afb7707d981b9d73278c0e84044b948f61f4f53eb274f5dd9430c96600d599db5a29c06cd47849c44
6
+ metadata.gz: 6d17d5093f9e26213ec22d936ae15cf0c50b3cc9ae162423c7499294cc0d96df7bc964e20f9cd9bfb47b31afeed9d1407482a1137fc0f837e7235950fb25963b
7
+ data.tar.gz: e22db42e8e8b3a780da3faa62fbbcb7bd7f653ba6bda5f92cc3338853178d2a21e77662e1d08871cbb2b6223ccdffe4047d4e5ec7e78bea946424c6d660d7190
data/CHANGELOG.md CHANGED
@@ -1,6 +1,4 @@
1
- **v3.7.0** Experimental support for ios-arm64
2
-
3
- **v3.6.0** Recommend JRuby-9.2.14.0 use video-2.0 release
1
+ **v3.7.1** Recommend JRuby-9.2.15.0 use
4
2
 
5
3
  **v3.5.0** Rebase processing core code around Sam Pottingers latest fixes for JOGL an image save, does mean breaking some of Diwis and Joshua Davis examples, but one hopes codeanticode knows what he's doing.
6
4
 
data/README.md CHANGED
@@ -10,8 +10,8 @@ adjust above for your OS/distro setup.
10
10
 
11
11
  There may be a linker issue with P2D or P3D sketches with stock openjdk with some linux distros, in which case you might find [Adopt open jdk binaries][adopt] will work for you.
12
12
 
13
- - `jdk-11.0.3+`
14
- - `jruby-9.2.12.0`
13
+ - `jdk-11.0.7+`
14
+ - `jruby-9.2.14.0`
15
15
 
16
16
  Currently you can ignore `illegal reflective access` warnings, see [here how to suppress them][warning].
17
17
 
@@ -69,31 +69,29 @@ module Propane
69
69
  SketchWriter.new(File.basename(filename, '.rb'), argc).write
70
70
  end
71
71
 
72
- def show_version
73
- v_format = "Propane version %s\nJRuby version %s"
74
- puts format(v_format, Propane::VERSION, JRUBY_VERSION)
75
- end
76
-
77
72
  def show_version
78
73
  require 'erb'
79
74
  require_relative 'helpers/version_error'
80
75
  raise JDKVersionError if ENV_JAVA['java.specification.version'] < '11'
81
76
 
82
- template = ERB.new <<-EOF
77
+ template = ERB.new <<-VERSION
83
78
  propane version <%= Propane::VERSION %>
84
79
  JRuby version <%= JRUBY_VERSION %>
85
- EOF
80
+ VERSION
86
81
  puts template.result(binding)
87
82
  end
88
83
 
89
84
  def install(library)
85
+ library ||= 'new'
90
86
  choice = library.downcase
91
- valid = Regexp.union('samples', 'sound', 'video', 'glvideo')
92
- unless valid.match?(choice)
93
- return warn format('No installer for %<lib>s', lib: choice)
87
+ case choice
88
+ when /samples|sound|video/
89
+ system "cd #{PROPANE_ROOT}/vendors && rake download_and_copy_#{choice}"
90
+ when /new/
91
+ system "cd #{PROPANE_ROOT}/vendors && rake download_and_copy_samples"
92
+ else
93
+ warn format('No installer for %<lib>s', lib: choice)
94
94
  end
95
-
96
- system "cd #{PROPANE_ROOT}/vendors && rake download_and_copy_#{choice}"
97
95
  end
98
96
  end
99
97
  # class Runner
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Propane
4
- VERSION = '3.7.0.pre'
4
+ VERSION = '3.7.1'
5
5
  end
data/pom.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  project 'propane', 'https://github.com/monkstone/propane' do
4
4
  model_version '4.0.0'
5
- id 'propane:propane:3.7.0.pre'
5
+ id 'propane:propane:3.7.1'
6
6
  packaging 'jar'
7
7
 
8
8
  description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -46,7 +46,7 @@ project 'propane', 'https://github.com/monkstone/propane' do
46
46
  'jogl.version' => '2.3.2', # for compiling actual included 2.4.0-rc
47
47
  'jruby.api' => 'http://jruby.org/apidocs/')
48
48
 
49
- pom 'org.jruby:jruby:9.2.14.0'
49
+ pom 'org.jruby:jruby:9.2.15.0'
50
50
  jar 'org.processing:video:3.3.7' # only for compiling
51
51
  jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
52
52
  jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
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.7.0.pre</version>
14
+ <version>3.7.1</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>
@@ -74,7 +74,7 @@ DO NOT MODIFIY - GENERATED CODE
74
74
  <dependency>
75
75
  <groupId>org.jruby</groupId>
76
76
  <artifactId>jruby</artifactId>
77
- <version>9.2.14.0</version>
77
+ <version>9.2.15.0</version>
78
78
  <type>pom</type>
79
79
  </dependency>
80
80
  <dependency>
data/propane.gemspec CHANGED
@@ -21,11 +21,9 @@ Gem::Specification.new do |gem|
21
21
  gem.files << 'lib/jogl-all.jar'
22
22
  gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'
23
23
  gem.files << 'lib/gluegen-rt-natives-macosx-universal.jar'
24
- gem.files << 'lib/gluegen-rt-natives-ios-arm64.jar'
25
24
  gem.files << 'lib/gluegen-rt-natives-windows-amd64.jar'
26
25
  gem.files << 'lib/jogl-all-natives-linux-amd64.jar'
27
- gem.files << 'lib/gluegen-rt-natives-macosx-universal.jar'
28
- gem.files << 'lib/jogl-all-natives-ios-arm64.jar'
26
+ gem.files << 'lib/jogl-all-natives-macosx-universal.jar'
29
27
  gem.files << 'lib/jogl-all-natives-windows-amd64.jar'
30
28
  gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
31
29
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
@@ -35,5 +33,5 @@ Gem::Specification.new do |gem|
35
33
  gem.add_runtime_dependency 'arcball', '~> 1.0', '>= 1.0.2'
36
34
  gem.require_paths = ['lib']
37
35
  gem.platform = 'java'
38
- gem.requirements << 'java runtime >= 11.0.7+'
36
+ gem.requirements << 'java runtime >= 11.0.2+'
39
37
  end
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.7.0.pre
4
+ version: 3.7.1
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-24 00:00:00.000000000 Z
11
+ date: 2021-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -103,16 +103,15 @@ files:
103
103
  - lib/.gitignore
104
104
  - lib/PROCESSING_LICENSE.txt
105
105
  - lib/export.txt
106
- - lib/gluegen-rt-natives-ios-arm64.jar
107
106
  - lib/gluegen-rt-natives-linux-amd64.jar
108
107
  - lib/gluegen-rt-natives-macosx-universal.jar
109
108
  - lib/gluegen-rt-natives-windows-amd64.jar
110
109
  - lib/gluegen-rt.jar
111
- - lib/jogl-all-natives-ios-arm64.jar
112
110
  - lib/jogl-all-natives-linux-amd64.jar
111
+ - lib/jogl-all-natives-macosx-universal.jar
113
112
  - lib/jogl-all-natives-windows-amd64.jar
114
113
  - lib/jogl-all.jar
115
- - lib/propane-3.7.0.pre.jar
114
+ - lib/propane-3.7.1.jar
116
115
  - lib/propane.rb
117
116
  - lib/propane/app.rb
118
117
  - lib/propane/creators/sketch_class.rb
@@ -293,11 +292,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
293
292
  version: '0'
294
293
  required_rubygems_version: !ruby/object:Gem::Requirement
295
294
  requirements:
296
- - - ">"
295
+ - - ">="
297
296
  - !ruby/object:Gem::Version
298
- version: 1.3.1
297
+ version: '0'
299
298
  requirements:
300
- - java runtime >= 11.0.7+
299
+ - java runtime >= 11.0.2+
301
300
  rubygems_version: 3.0.6
302
301
  signing_key:
303
302
  specification_version: 4