propane 3.3.0-java → 3.3.1-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/lib/propane/version.rb +1 -1
- data/pom.rb +1 -1
- data/pom.xml +1 -1
- data/src/main/java/processing/awt/PSurfaceAWT.java +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a45edb342ed732fe93fc0e6866df3e64378b7b5e5cbfa86870f289d53ac7306c
|
|
4
|
+
data.tar.gz: 18b06c7111468e2b157a7b92158e5f18ba1122cea435b14da9a756199dc09caf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8cb5318d84264ae49a575d6af4a2e477f082ee55c61381012fb87c632c5052ef9b896f520748f3a7b4b83944d60e2fbea823b8d788b95b4c09db8973cb0a0fa
|
|
7
|
+
data.tar.gz: 691b2c1b03a5989c1db763487df32cb83b6073da18d0c986838f5eecae9008d0cccb86c37d999e9879d1a13b0c6cb7f64103fbdb20ccf84a6a60f495a14eac47
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
**v3.3.1** Reflection makes refactoring a nightmare DesktopHandler => ThinkDifferent
|
|
2
|
+
|
|
1
3
|
**v3.3.0** Compile with jdk12. Changed AppRender to GfxRender (PGraphics instead of PApplet). Attempt fix for macOS icons
|
|
2
4
|
|
|
3
5
|
**v3.2.0** Now is the time for some serious refactoring for jdk11. Might even work on MacOS and Windows, ahead of vanilla processing.
|
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.3.
|
|
4
|
+
id 'propane:propane:3.3.1'
|
|
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.3.
|
|
14
|
+
<version>3.3.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>
|
|
@@ -606,9 +606,9 @@ public class PSurfaceAWT extends PSurfaceNone {
|
|
|
606
606
|
// as well as the cmd-tab image that's shown. Just one size, I guess.
|
|
607
607
|
URL url = PApplet.class.getResource("/icon/icon-512.png");
|
|
608
608
|
// Seems dangerous to have this in code instead of using reflection, no?
|
|
609
|
-
//
|
|
609
|
+
// ThinkDifferent.setIconImage(Toolkit.getDefaultToolkit().getImage(url));
|
|
610
610
|
try {
|
|
611
|
-
final String td = "processing.core.
|
|
611
|
+
final String td = "processing.core.ThinkDifferent";
|
|
612
612
|
Class<?> thinkDifferent
|
|
613
613
|
= Thread.currentThread().getContextClassLoader().loadClass(td);
|
|
614
614
|
Method method
|
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.3.
|
|
4
|
+
version: 3.3.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- monkstone
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|