Skip to content

Commit

Permalink
Release version 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Sep 6, 2020
1 parent cb85afd commit 3204524
Show file tree
Hide file tree
Showing 7,129 changed files with 13,921 additions and 7,336 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

### September 9, 2020 version 1.5.4
* Bundle `libpostal_data` program, executable via `Loader.load()` for convenience ([issue #939](https://github.com/bytedeco/javacpp-presets/issues/939))
* Enable all stable target architectures in the presets for LLVM ([pull #937](https://github.com/bytedeco/javacpp-presets/pull/937))
* Virtualize `QObject` and its subclasses from Qt to allow customization ([issue bytedeco/javacpp#419](https://github.com/bytedeco/javacpp/issues/419))
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@ We can also have everything downloaded and installed automatically with:
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>${moduleName}-platform</artifactId>
<version>${moduleVersion}-1.5.3</version>
<version>${moduleVersion}-1.5.4</version>
</dependency>
```

* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
compile group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.3'
compile group: 'org.bytedeco', name: moduleName + '-platform', version: moduleVersion + '-1.5.4'
}
```

* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.3")]
[~(symbol (str "org.bytedeco/" moduleName "-platform")) ~(str moduleVersion "-1.5.4")]
]
```

* sbt (inside the `build.sbt` file)
```scala
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.3"
libraryDependencies += "org.bytedeco" % moduleName + "-platform" % moduleVersion + "-1.5.4"
```

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).
Expand Down Expand Up @@ -102,7 +102,7 @@ Additionally, one can find on the wiki page additional information about the rec
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:

* Maven 3.x http://maven.apache.org/download.html
* JavaCPP 1.5.3 https://github.com/bytedeco/javacpp
* JavaCPP 1.5.4 https://github.com/bytedeco/javacpp

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:

Expand Down
4 changes: 2 additions & 2 deletions ale/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.ale</groupId>
<artifactId>sharedlibraryinterfaceexample</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<properties>
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>ale-platform</artifactId>
<version>0.6.1-1.5.3</version>
<version>0.6.1-1.5.4</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion ale/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.5.4</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ale/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.5.4</version>
</parent>

<groupId>org.bytedeco</groupId>
Expand Down
4 changes: 2 additions & 2 deletions ale/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.ale</groupId>
<artifactId>sharedlibraryinterfaceexample</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<properties>
<exec.mainClass>SharedLibraryInterfaceExample</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>ale-platform</artifactId>
<version>0.6.1-1.5.3</version>
<version>0.6.1-1.5.4</version>
</dependency>
</dependencies>
<build>
Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEInterface.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -25,6 +25,9 @@ public class ALEInterface extends Pointer {
@Override public ALEInterface position(long position) {
return (ALEInterface)super.position(position);
}
@Override public ALEInterface getPointer(long i) {
return new ALEInterface(this).position(position + i);
}

public ALEInterface() { super((Pointer)null); allocate(); }
private native void allocate();
Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALERAM.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -23,6 +23,9 @@ public class ALERAM extends Pointer {
@Override public ALERAM position(long position) {
return (ALERAM)super.position(position);
}
@Override public ALERAM getPointer(long i) {
return new ALERAM(this).position(position + i);
}

public ALERAM() { super((Pointer)null); allocate(); }
private native void allocate();
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEScreen.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/ALEState.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -22,6 +22,9 @@ public class ALEState extends Pointer {
@Override public ALEState position(long position) {
return (ALEState)super.position(position);
}
@Override public ALEState getPointer(long i) {
return new ALEState(this).position(position + i);
}

public ALEState() { super((Pointer)null); allocate(); }
private native void allocate();
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Cartridge.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/ColourPalette.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -22,6 +22,9 @@ public class ColourPalette extends Pointer {
@Override public ColourPalette position(long position) {
return (ColourPalette)super.position(position);
}
@Override public ColourPalette getPointer(long i) {
return new ColourPalette(this).position(position + i);
}


public ColourPalette() { super((Pointer)null); allocate(); }
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Console.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Controller.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Deserializer.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Device.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/DisplayScreen.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/Event.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down Expand Up @@ -26,6 +26,9 @@ public class Event extends Pointer {
@Override public Event position(long position) {
return (Event)super.position(position);
}
@Override public Event getPointer(long i) {
return new Event(this).position(position + i);
}

/**
Enumeration of all possible events in Stella, including both
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/M6532.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/MediaSource.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/OSystem.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down Expand Up @@ -343,6 +343,9 @@ public static class TimingInfo extends Pointer {
@Override public TimingInfo position(long position) {
return (TimingInfo)super.position(position);
}
@Override public TimingInfo getPointer(long i) {
return new TimingInfo(this).position(position + i);
}

public native @Cast("uInt32") int start(); public native TimingInfo start(int setter);
public native @Cast("uInt32") int current(); public native TimingInfo current(int setter);
Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/Random.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down Expand Up @@ -26,6 +26,9 @@ public class Random extends Pointer {
@Override public Random position(long position) {
return (Random)super.position(position);
}
@Override public Random getPointer(long i) {
return new Random(this).position(position + i);
}


/**
Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/Resolution.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -25,6 +25,9 @@ public class Resolution extends Pointer {
@Override public Resolution position(long position) {
return (Resolution)super.position(position);
}
@Override public Resolution getPointer(long i) {
return new Resolution(this).position(position + i);
}

public native @Cast("uInt32") int width(); public native Resolution width(int setter);
public native @Cast("uInt32") int height(); public native Resolution height(int setter);
Expand Down
5 changes: 4 additions & 1 deletion ale/src/gen/java/org/bytedeco/ale/ResolutionList.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand All @@ -22,6 +22,9 @@ public class ResolutionList extends Pointer {
@Override public ResolutionList position(long position) {
return (ResolutionList)super.position(position);
}
@Override public ResolutionList getPointer(long i) {
return new ResolutionList(this).position(position + i);
}

public ResolutionList() { super((Pointer)null); allocate(); }
private native void allocate();
Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/RomSettings.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/ScreenExporter.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Serializer.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Settings.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Sound.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/StellaEnvironment.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/Switches.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/System.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale;

Expand Down
2 changes: 1 addition & 1 deletion ale/src/gen/java/org/bytedeco/ale/global/ale.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.4: DO NOT EDIT THIS FILE

package org.bytedeco.ale.global;

Expand Down
4 changes: 2 additions & 2 deletions arpack-ng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.arpack</groupId>
<artifactId>icbarpackc</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<properties>
<exec.mainClass>IcbArpackC</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>arpack-ng-platform</artifactId>
<version>3.7.0-1.5.3</version>
<version>3.7.0-1.5.4</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion arpack-ng/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.5.4</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion arpack-ng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bytedeco</groupId>
<artifactId>javacpp-presets</artifactId>
<version>1.5.4-SNAPSHOT</version>
<version>1.5.4</version>
</parent>

<groupId>org.bytedeco</groupId>
Expand Down
Loading

0 comments on commit 3204524

Please sign in to comment.