Skip to content

Commit e182683

Browse files
committed
Release version 1.5.4
1 parent 27cfa61 commit e182683

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

CHANGELOG.md

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

2+
### September 9, 2020 version 1.5.4
23
* Fix error message thrown from `FFmpegFrameRecorder.start()` not containing filename ([pull #1492](https://github.com/bytedeco/javacv/pull/1492))
34
* Fix `FFmpegFrameFilter.pull()` not returning audio/video frames without audio/video filtergraph ([issue #1466](https://github.com/bytedeco/javacv/issues/1466))
45
* Update `OpenCVFrameConverter.convertToOrgOpenCvCoreMat()` with new API to set the stride ([issue #1460](https://github.com/bytedeco/javacv/issues/1460))

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ We can also have everything downloaded and installed automatically with:
2828
<dependency>
2929
<groupId>org.bytedeco</groupId>
3030
<artifactId>javacv-platform</artifactId>
31-
<version>1.5.3</version>
31+
<version>1.5.4</version>
3232
</dependency>
3333
```
3434

3535
* Gradle (inside the `build.gradle` file)
3636
```groovy
3737
dependencies {
38-
compile group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.3'
38+
compile group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.4'
3939
}
4040
```
4141

4242
* Leiningen (inside the `project.clj` file)
4343
```clojure
4444
:dependencies [
45-
[org.bytedeco/javacv-platform "1.5.3"]
45+
[org.bytedeco/javacv-platform "1.5.4"]
4646
]
4747
```
4848

4949
* sbt (inside the `build.sbt` file)
5050
```scala
51-
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.3"
51+
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.4"
5252
```
5353

5454
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. Please refer to the [README.md file of the JavaCPP Presets](https://github.com/bytedeco/javacpp-presets#downloads) for details. Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCV](https://github.com/bytedeco/sbt-javacv).
@@ -264,7 +264,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
264264
<modelVersion>4.0.0</modelVersion>
265265
<groupId>org.bytedeco.javacv</groupId>
266266
<artifactId>demo</artifactId>
267-
<version>1.5.3</version>
267+
<version>1.5.4</version>
268268
<properties>
269269
<maven.compiler.source>1.7</maven.compiler.source>
270270
<maven.compiler.target>1.7</maven.compiler.target>
@@ -273,7 +273,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
273273
<dependency>
274274
<groupId>org.bytedeco</groupId>
275275
<artifactId>javacv-platform</artifactId>
276-
<version>1.5.3</version>
276+
<version>1.5.4</version>
277277
</dependency>
278278
</dependencies>
279279
<build>
@@ -295,8 +295,8 @@ Build Instructions
295295
If the binary files available above are not enough for your needs, you might need to rebuild them from the source code. To this end, the project files were created for:
296296

297297
* Maven 3.x http://maven.apache.org/download.html
298-
* JavaCPP 1.5.3 https://github.com/bytedeco/javacpp
299-
* JavaCPP Presets 1.5.3 https://github.com/bytedeco/javacpp-presets
298+
* JavaCPP 1.5.4 https://github.com/bytedeco/javacpp
299+
* JavaCPP Presets 1.5.4 https://github.com/bytedeco/javacpp-presets
300300

301301
Once installed, simply call the usual `mvn install` command for JavaCPP, its Presets, and JavaCV. By default, no other dependencies than a C++ compiler for JavaCPP are required. Please refer to the comments inside the `pom.xml` files for further details.
302302

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.4-SNAPSHOT</version>
9+
<version>1.5.4</version>
1010
<relativePath></relativePath>
1111
</parent>
1212

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacv</artifactId>
7-
<version>1.5.4-SNAPSHOT</version>
7+
<version>1.5.4</version>
88

99
<name>JavaCV</name>
1010
<description>Java interface to OpenCV, FFmpeg, and more</description>

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.javacv</groupId>
44
<artifactId>demo</artifactId>
5-
<version>1.5.3</version>
5+
<version>1.5.4</version>
66
<properties>
77
<maven.compiler.source>1.7</maven.compiler.source>
88
<maven.compiler.target>1.7</maven.compiler.target>
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>javacv-platform</artifactId>
14-
<version>1.5.3</version>
14+
<version>1.5.4</version>
1515
</dependency>
1616
</dependencies>
1717
<build>

0 commit comments

Comments
 (0)