Skip to content

Commit e8b5cfb

Browse files
committed
Release v0.0.12 with new properties.
1 parent 0267ba1 commit e8b5cfb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: java
22

33
install: true
44

5-
before_install: ./scripts/download-openpnp-capture.sh v0.0.11
5+
before_install: ./scripts/download-openpnp-capture.sh v0.0.12
66

77
script: mvn clean package
88

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.openpnp</groupId>
55
<artifactId>openpnp-capture-java</artifactId>
6-
<version>0.0.11</version>
6+
<version>0.0.12</version>
77
<properties>
88
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99
</properties>

src/main/java/org/openpnp/capture/CaptureProperty.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@
33
import org.openpnp.capture.library.OpenpnpCaptureLibrary;
44

55
public enum CaptureProperty {
6+
BackLightCompensation(OpenpnpCaptureLibrary.CAPPROPID_BACKLIGHTCOMP),
67
Brightness(OpenpnpCaptureLibrary.CAPPROPID_BRIGHTNESS),
78
Contrast(OpenpnpCaptureLibrary.CAPPROPID_CONTRAST),
89
Exposure(OpenpnpCaptureLibrary.CAPPROPID_EXPOSURE),
910
Focus(OpenpnpCaptureLibrary.CAPPROPID_FOCUS),
1011
Gain(OpenpnpCaptureLibrary.CAPPROPID_GAIN),
1112
Gamma(OpenpnpCaptureLibrary.CAPPROPID_GAMMA),
13+
Hue(OpenpnpCaptureLibrary.CAPPROPID_HUE),
14+
PowerLineFrequency(OpenpnpCaptureLibrary.CAPPROPID_POWERLINEFREQ),
1215
Saturation(OpenpnpCaptureLibrary.CAPPROPID_SATURATION),
16+
Sharpness(OpenpnpCaptureLibrary.CAPPROPID_SHARPNESS),
1317
WhiteBalance(OpenpnpCaptureLibrary.CAPPROPID_WHITEBALANCE),
1418
Zoom(OpenpnpCaptureLibrary.CAPPROPID_ZOOM)
1519
;

0 commit comments

Comments
 (0)