Skip to content

Commit

Permalink
Release version 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Nov 2, 2022
1 parent 967caf4 commit e0e853e
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

### November 2, 2022 version 1.5.8
* Add workaround options for JDK 17+ in launch scripts ([issue #28](https://github.com/bytedeco/procamcalib/issues/28))
* Upgrade support to OpenCV 4.6.x
* Upgrade support to FFmpeg 5.1.x

### February 11, 2022 version 1.5.7
* Upgrade support to FFmpeg 5.0.x

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ Source Code
I make all the source code available on GitHub at https://github.com/bytedeco/procamcalib . You will also need the following to modify and build the application:

* A C/C++ compiler
* JavaCPP 1.5.7 https://github.com/bytedeco/javacpp
* JavaCV 1.5.7 https://github.com/bytedeco/javacv
* OpenCV 4.5.x http://sourceforge.net/projects/opencvlibrary/files/
* FFmpeg 5.0.x http://ffmpeg.org/download.html
* JavaCPP 1.5.8 https://github.com/bytedeco/javacpp
* JavaCV 1.5.8 https://github.com/bytedeco/javacv
* OpenCV 4.6.x http://sourceforge.net/projects/opencvlibrary/files/
* FFmpeg 5.1.x http://ffmpeg.org/download.html
* ARToolKitPlus 2.3.x https://launchpad.net/artoolkitplus
* NetBeans 12.x https://netbeans.apache.org/download/
* Maven 3.x http://maven.apache.org/download.html
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco</groupId>
<artifactId>procamcalib</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>

<name>ProCamCalib</name>
<description>A User-Friendly Method to Calibrate Cameras and Projector-Camera Systems</description>
Expand Down
3 changes: 3 additions & 0 deletions procamcalib-nativelook
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ OPTIONS=-Dapple.awt.fullscreencapturealldisplays=false
# by default, but you can try to enable it here to get lower latency.
#OPTIONS="-Dapple.awt.fullscreencapturealldisplays=false -Dsun.java2d.opengl=True"

# Required options for JDK 17+ since not yet supported by NetBeans
#OPTIONS="--add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED"

java -d64 -server -version
if [ $? -eq 0 ]
then
Expand Down
3 changes: 3 additions & 0 deletions procamcalib-nativelook.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ rem Under Windows, Java uses DirectX by default, but your video driver
rem might work better with OpenGL than DirectX. Try to use this option...
rem set OPTIONS=-Dsun.java2d.opengl=True

rem Required options for JDK 17+ since not yet supported by NetBeans
rem set "OPTIONS=--add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED"

set JAVA=%SystemRoot%\system32\java
if exist %JAVA%.exe goto CHECKSERVER
set JAVA=java
Expand Down
3 changes: 3 additions & 0 deletions procamcalib-oceanlook
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ OPTIONS=-Dapple.awt.fullscreencapturealldisplays=false
# by default, but you can try to enable it here to get lower latency.
#OPTIONS="-Dapple.awt.fullscreencapturealldisplays=false -Dsun.java2d.opengl=True"

# Required options for JDK 17+ since not yet supported by NetBeans
#OPTIONS="--add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED"

java -d64 -server -version
if [ $? -eq 0 ]
then
Expand Down
3 changes: 3 additions & 0 deletions procamcalib-oceanlook.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ rem Under Windows, Java uses DirectX by default, but your video driver
rem might work better with OpenGL than DirectX. Try to use this option...
rem set OPTIONS=-Dsun.java2d.opengl=True

rem Required options for JDK 17+ since not yet supported by NetBeans
rem set "OPTIONS=--add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.desktop/javax.swing.plaf.synth=ALL-UNNAMED"

set JAVA=%SystemRoot%\system32\java
if exist %JAVA%.exe goto CHECKSERVER
set JAVA=java
Expand Down

0 comments on commit e0e853e

Please sign in to comment.