Skip to content

Commit 2d9edd3

Browse files
committed
Release version 1.5.6
1 parent b603f85 commit 2d9edd3

File tree

9,060 files changed

+12792
-12746
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,060 files changed

+12792
-12746
lines changed

.github/workflows/modsecurity.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ on:
1010
env:
1111
CI_DEPLOY_MODULE: ${{ github.workflow }}
1212
CI_DEPLOY_PLATFORM: ${{ github.job }}
13+
CI_DEPLOY_SETTINGS: ${{ secrets.CI_DEPLOY_SETTINGS }}
1314
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
1415
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
16+
STAGING_REPOSITORY: ${{ secrets.STAGING_REPOSITORY }}
1517
jobs:
1618
linux-x86_64:
1719
runs-on: ubuntu-16.04

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
### August 2, 2021 version 1.5.6
23
* Change `opencv_core.Mat` constructors to create column vectors out of arrays for consistency ([issue #1064](https://github.com/bytedeco/javacpp-presets/issues/1064))
34
* Add presets for the new `barcode` and `wechat_qrcode` modules of OpenCV
45
* Work around loading issues with execution providers in presets for ONNX Runtime

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,27 +87,27 @@ We can also have everything downloaded and installed automatically with:
8787
<dependency>
8888
<groupId>org.bytedeco</groupId>
8989
<artifactId>${moduleName}-platform</artifactId>
90-
<version>${moduleVersion}-1.5.5</version>
90+
<version>${moduleVersion}-1.5.6</version>
9191
</dependency>
9292
```
9393

9494
* Gradle (inside the `build.gradle` file)
9595
```groovy
9696
dependencies {
97-
implementation group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.5'
97+
implementation group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.6'
9898
}
9999
```
100100

101101
* Leiningen (inside the `project.clj` file)
102102
```clojure
103103
:dependencies [
104-
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.5")]
104+
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.6")]
105105
]
106106
```
107107

108108
* sbt (inside the `build.sbt` file)
109109
```scala
110-
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.5"
110+
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.6"
111111
```
112112

113113
where the `moduleName` and `moduleVersion` variables correspond to the desired module. This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. We can also specify more than one platform, see the examples at [Reducing the Number of Dependencies](https://github.com/bytedeco/javacpp-presets/wiki/Reducing-the-Number-of-Dependencies). Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCPP](https://github.com/bytedeco/sbt-javacpp).
@@ -165,7 +165,7 @@ Additionally, one can find on the wiki page additional information about the rec
165165
The JavaCPP Presets depend on Maven, a powerful build system for Java, so before attempting a build, be sure to install and read up on:
166166

167167
* Maven 3.x http://maven.apache.org/download.html
168-
* JavaCPP 1.5.5 https://github.com/bytedeco/javacpp
168+
* JavaCPP 1.5.6 https://github.com/bytedeco/javacpp
169169

170170
Each child module in turn relies by default on the included [`cppbuild.sh` scripts](#the-cppbuildsh-scripts), explained below, to install its corresponding native libraries in the `cppbuild` subdirectory. To use native libraries already installed somewhere else on the system, other installation directories than `cppbuild` can also be specified either in the `pom.xml` files or in the `.java` configuration files. The following versions are supported:
171171

ale/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
3838
<modelVersion>4.0.0</modelVersion>
3939
<groupId>org.bytedeco.ale</groupId>
4040
<artifactId>sharedlibraryinterfaceexample</artifactId>
41-
<version>1.5.5</version>
41+
<version>1.5.6</version>
4242
<properties>
4343
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
4444
</properties>
4545
<dependencies>
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>ale-platform</artifactId>
49-
<version>0.6.1-1.5.5</version>
49+
<version>0.6.1-1.5.6</version>
5050
</dependency>
5151
</dependencies>
5252
<build>

ale/platform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.6-SNAPSHOT</version>
9+
<version>1.5.6</version>
1010
<relativePath>../../</relativePath>
1111
</parent>
1212

ale/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.6-SNAPSHOT</version>
9+
<version>1.5.6</version>
1010
</parent>
1111

1212
<groupId>org.bytedeco</groupId>

ale/samples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.bytedeco.ale</groupId>
44
<artifactId>sharedlibraryinterfaceexample</artifactId>
5-
<version>1.5.5</version>
5+
<version>1.5.6</version>
66
<properties>
77
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
88
<maven.compiler.source>1.7</maven.compiler.source>
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>ale-platform</artifactId>
15-
<version>0.6.1-1.5.5</version>
15+
<version>0.6.1-1.5.6</version>
1616
</dependency>
1717
</dependencies>
1818
<build>

ale/src/gen/java/org/bytedeco/ale/ALEInterface.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -26,7 +26,7 @@ public class ALEInterface extends Pointer {
2626
return (ALEInterface)super.position(position);
2727
}
2828
@Override public ALEInterface getPointer(long i) {
29-
return new ALEInterface((Pointer)this).position(position + i);
29+
return new ALEInterface((Pointer)this).offsetAddress(i);
3030
}
3131

3232
public ALEInterface() { super((Pointer)null); allocate(); }

ale/src/gen/java/org/bytedeco/ale/ALERAM.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -24,7 +24,7 @@ public class ALERAM extends Pointer {
2424
return (ALERAM)super.position(position);
2525
}
2626
@Override public ALERAM getPointer(long i) {
27-
return new ALERAM((Pointer)this).position(position + i);
27+
return new ALERAM((Pointer)this).offsetAddress(i);
2828
}
2929

3030
public ALERAM() { super((Pointer)null); allocate(); }

ale/src/gen/java/org/bytedeco/ale/ALEScreen.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/ALEState.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -23,7 +23,7 @@ public class ALEState extends Pointer {
2323
return (ALEState)super.position(position);
2424
}
2525
@Override public ALEState getPointer(long i) {
26-
return new ALEState((Pointer)this).position(position + i);
26+
return new ALEState((Pointer)this).offsetAddress(i);
2727
}
2828

2929
public ALEState() { super((Pointer)null); allocate(); }

ale/src/gen/java/org/bytedeco/ale/Cartridge.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/ColourPalette.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -23,7 +23,7 @@ public class ColourPalette extends Pointer {
2323
return (ColourPalette)super.position(position);
2424
}
2525
@Override public ColourPalette getPointer(long i) {
26-
return new ColourPalette((Pointer)this).position(position + i);
26+
return new ColourPalette((Pointer)this).offsetAddress(i);
2727
}
2828

2929

ale/src/gen/java/org/bytedeco/ale/Console.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Controller.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Deserializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Device.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/DisplayScreen.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Event.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -27,7 +27,7 @@ public class Event extends Pointer {
2727
return (Event)super.position(position);
2828
}
2929
@Override public Event getPointer(long i) {
30-
return new Event((Pointer)this).position(position + i);
30+
return new Event((Pointer)this).offsetAddress(i);
3131
}
3232

3333
/**

ale/src/gen/java/org/bytedeco/ale/M6532.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/MediaSource.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/OSystem.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -344,7 +344,7 @@ public static class TimingInfo extends Pointer {
344344
return (TimingInfo)super.position(position);
345345
}
346346
@Override public TimingInfo getPointer(long i) {
347-
return new TimingInfo((Pointer)this).position(position + i);
347+
return new TimingInfo((Pointer)this).offsetAddress(i);
348348
}
349349

350350
public native @Cast("uInt32") int start(); public native TimingInfo start(int setter);

ale/src/gen/java/org/bytedeco/ale/Random.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -27,7 +27,7 @@ public class Random extends Pointer {
2727
return (Random)super.position(position);
2828
}
2929
@Override public Random getPointer(long i) {
30-
return new Random((Pointer)this).position(position + i);
30+
return new Random((Pointer)this).offsetAddress(i);
3131
}
3232

3333

ale/src/gen/java/org/bytedeco/ale/Resolution.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -26,7 +26,7 @@ public class Resolution extends Pointer {
2626
return (Resolution)super.position(position);
2727
}
2828
@Override public Resolution getPointer(long i) {
29-
return new Resolution((Pointer)this).position(position + i);
29+
return new Resolution((Pointer)this).offsetAddress(i);
3030
}
3131

3232
public native @Cast("uInt32") int width(); public native Resolution width(int setter);

ale/src/gen/java/org/bytedeco/ale/ResolutionList.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

@@ -23,7 +23,7 @@ public class ResolutionList extends Pointer {
2323
return (ResolutionList)super.position(position);
2424
}
2525
@Override public ResolutionList getPointer(long i) {
26-
return new ResolutionList((Pointer)this).position(position + i);
26+
return new ResolutionList((Pointer)this).offsetAddress(i);
2727
}
2828

2929
public ResolutionList() { super((Pointer)null); allocate(); }

ale/src/gen/java/org/bytedeco/ale/RomSettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/ScreenExporter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Serializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Settings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Sound.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/StellaEnvironment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/StellaEnvironmentWrapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/Switches.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/System.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale;
44

ale/src/gen/java/org/bytedeco/ale/global/ale.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Targeted by JavaCPP version 1.5.5: DO NOT EDIT THIS FILE
1+
// Targeted by JavaCPP version 1.5.6: DO NOT EDIT THIS FILE
22

33
package org.bytedeco.ale.global;
44

arpack-ng/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
3838
<modelVersion>4.0.0</modelVersion>
3939
<groupId>org.bytedeco.arpack</groupId>
4040
<artifactId>icbarpackc</artifactId>
41-
<version>1.5.5</version>
41+
<version>1.5.6</version>
4242
<properties>
4343
<exec.mainClass>IcbArpackC</exec.mainClass>
4444
</properties>
4545
<dependencies>
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>arpack-ng-platform</artifactId>
49-
<version>3.8.0-1.5.5</version>
49+
<version>3.8.0-1.5.6</version>
5050
</dependency>
5151
</dependencies>
5252
<build>

arpack-ng/platform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.6-SNAPSHOT</version>
9+
<version>1.5.6</version>
1010
<relativePath>../../</relativePath>
1111
</parent>
1212

arpack-ng/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.6-SNAPSHOT</version>
9+
<version>1.5.6</version>
1010
</parent>
1111

1212
<groupId>org.bytedeco</groupId>

0 commit comments

Comments
 (0)