Skip to content

Commit 30afce3

Browse files
author
Roland Kersche
committed
Finish v1.21.0
2 parents c840a73 + 1faf4ce commit 30afce3

7 files changed

Lines changed: 485 additions & 16 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your pom.xml:
1111
<dependency>
1212
<groupId>com.bitmovin.api</groupId>
1313
<artifactId>bitmovin-java</artifactId>
14-
<version>1.20.0</version>
14+
<version>1.21.0</version>
1515
</dependency>
1616
```
1717

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.bitmovin.api</groupId>
66
<artifactId>bitmovin-java</artifactId>
7-
<version>1.20.0</version>
7+
<version>1.21.0</version>
88
<name>Bitmovin Java Client</name>
99
<url>https://github.com/bitmovin/bitmovin-java</url>
1010
<description>JAVA-Client which enables you to seamlessly integrate the all new Bitmovin API into your existing projects.</description>

src/main/java/com/bitmovin/api/BitmovinApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class BitmovinApi
4747
private static String X_API_CLIENT_VERSION_CONFIGURATION_KEY = "x-api-client-version";
4848

4949
private static String DEFAULT_X_API_CLIENT = "bitmovin-java-api";
50-
private static String DEFAULT_X_API_CLIENT_VERSION = "1.20.0";
50+
private static String DEFAULT_X_API_CLIENT_VERSION = "1.21.0";
5151

5252
private Properties properties;
5353

src/main/java/com/bitmovin/api/encoding/encodings/thumbnails/Sprite.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class Sprite extends AbstractApiResponse
1818
private String spriteName;
1919
private String vttName;
2020
private Set<EncodingOutput> outputs;
21+
private Integer imagesPerFile;
2122

2223
public Sprite()
2324
{
@@ -34,6 +35,12 @@ public Sprite(Integer height, Integer width, Double distance, String spriteName,
3435
this.outputs = outputs;
3536
}
3637

38+
public Sprite(Integer height, Integer width, Double distance, String spriteName, String vttName, Set<EncodingOutput> outputs, Integer imagesPerFile)
39+
{
40+
this(height, width, distance, spriteName, vttName, outputs);
41+
this.imagesPerFile = imagesPerFile;
42+
}
43+
3744
public Integer getHeight()
3845
{
3946
return this.height;
@@ -108,4 +115,14 @@ public void setVttName(String vttName)
108115
{
109116
this.vttName = vttName;
110117
}
118+
119+
public Integer getImagesPerFile()
120+
{
121+
return imagesPerFile;
122+
}
123+
124+
public void setImagesPerFile(Integer imagesPerFile)
125+
{
126+
this.imagesPerFile = imagesPerFile;
127+
}
111128
}

0 commit comments

Comments
 (0)