Skip to content

Commit

Permalink
Prep release 0.0.9 which includes static linked binaries to avoid hav…
Browse files Browse the repository at this point in the history
…ing to install redistributable on Windows.
  • Loading branch information
vonnieda committed Oct 3, 2017
1 parent 9fc1af1 commit 5d6215b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: java

install: true

before_install: ./scripts/download-openpnp-capture.sh v0.0.8
before_install: ./scripts/download-openpnp-capture.sh v0.0.9

script: mvn clean package

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.openpnp</groupId>
<artifactId>openpnp-capture-java</artifactId>
<version>0.0.8</version>
<version>0.0.9</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/openpnp/capture/OpenPnpCapture.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public static String fourCcToString(int fourCc) {

public static void main(String[] args) throws Exception {
OpenPnpCapture capture = new OpenPnpCapture();
System.out.println(capture.getLibraryVersion());
CaptureDevice device = capture.getDevices().get(0);
CaptureFormat format = device.getFormats().get(0);
CaptureStream stream = device.openStream(format);
Expand Down

0 comments on commit 5d6215b

Please sign in to comment.