Skip to content

Commit

Permalink
Release 2.0.7.7
Browse files Browse the repository at this point in the history
29.07.23   Change to core.jar Processing 4.3
06.09.23   Update JSpoutLIB with SpoutGL files 2.007.012
Rebuild Release 2.0.7.7 (Version 9)
  • Loading branch information
leadedge committed Sep 6, 2023
1 parent ebb3d1e commit a9823da
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 11 deletions.
Binary file modified core.jar
Binary file not shown.
Binary file added core_4-3.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions examples/SpoutSender/SpoutSender.pde
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PGraphics pgr; // Graphics for demo
Spout spout;

void setup() {

// Initial window size
size(640, 360, P3D);
textureMode(NORMAL);
Expand All @@ -31,14 +31,14 @@ void setup() {
pgr = createGraphics(1280, 720, P3D);

// Load an image
img = loadImage("SpoutLogoMarble3.jpg");
img = loadImage("data/SpoutLogoMarble3.jpg");

// The dimensions of graphics or image objects
// do not have to be the same as the sketch window

// CREATE A NEW SPOUT OBJECT
spout = new Spout(this);

// Option - enable Spout logging to detect warnings and errors.
// Note that the concolelogs will only show up in the sketch console
// window after the sketch is closed and not while the sketch is running.
Expand Down
Binary file modified lib/JNISpout_32.dll
Binary file not shown.
Binary file modified lib/JNISpout_64.dll
Binary file not shown.
8 changes: 5 additions & 3 deletions resources/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ source.repository=https://github.com/leadedge/spoutprocessing
# This is used to compare different versions of the same Library, and check if
# an update is available.

library.version = 8
library.version = 9


# The version as the user will see it.

library.prettyVersion = 2.0.7.6
library.prettyVersion = 2.0.7.7


# The min and max revision of Processing compatible with your Library.
Expand All @@ -168,6 +168,8 @@ library.prettyVersion = 2.0.7.6
# PROCESSING 3.4 (REV 0265) - 26 July 2018
# PROCESSING 3.5.4 (REV 0270) - 17 January 2020
# PROCESSING 4.0.1 (REV 1286) - 09 August 2022
# Processing 4.3 (REV 1293) - 26 July 2023

compatible.minRevision=246
compatible.maxRevision=0

Expand All @@ -176,7 +178,7 @@ compatible.maxRevision=0
# against. This information is only used in the generated webpage.

tested.platform=windows
tested.processingVersion=4.0.1
tested.processingVersion=4.3.0


# Additional information for the generated webpage.
Expand Down
4 changes: 2 additions & 2 deletions resources/library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ paragraph = Find out more about Spout [here](https://spout.zeal.co).
# compare different versions of the same Library, and check if an update is
# available. You should think of it as a counter, counting the total number of
# releases you've had.
version = 8
version = 9

# The version as the user will see it. If blank, the version attribute will be
# used here. This should be a single word, with no spaces.
prettyVersion = 2.0.7.6
prettyVersion = 2.0.7.7

# The min and max revision of Processing compatible with your Library.
# Note that these fields use the revision and not the version of Processing,
Expand Down
2 changes: 1 addition & 1 deletion src/spout/JNISpout.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class JNISpout {

// Java instead of operating system
String sunDataModel = System.getProperty("sun.arch.data.model");
System.out.println("Spout " + sunDataModel +"bit v2.0.7.5 - Java " + jvm_version);
System.out.println("Spout " + sunDataModel +"bit v2.0.7.7 - Java " + jvm_version);
// System.out.println("Java " + sunDataModel + "bit " + jvm_version);
if(sunDataModel.equals("32"))
System.loadLibrary("JNISpout_32");
Expand Down
10 changes: 8 additions & 2 deletions src/spout/Spout.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@
// 24.07.23 Update JSpoutLIB with SpoutGL files 2.007.011
// Update core.jar to Processing 4.2
// Rebuild Release 2.0.7.6 (Version 8)
// 25.07.23 Updated incorrect version display in JNISpout.java
// Rebuild Release 2.0.7.6 (Version 8)
// Update GitHub release spout.txt and spout.zip
// 29.07.23 Change to core.jar Processing 4.3
// 06.09.23 Update JSpoutLIB with SpoutGL files 2.007.012
// Rebuild Release 2.0.7.7 (Version 9)
//
// ========================================================================================================

Expand Down Expand Up @@ -1264,7 +1270,7 @@ public void infoBox(String infoMessage)
JFrame jf=new JFrame();
jf.setAlwaysOnTop(true);
JOptionPane.showMessageDialog(jf, infoMessage, "Spout", JOptionPane.INFORMATION_MESSAGE);
}

}
} // end class Spout

0 comments on commit a9823da

Please sign in to comment.