Skip to content

Commit 184fa60

Browse files
committed
Updated sources
1 parent a8da1bc commit 184fa60

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add following repository and dependency to your project's POM
2424
<dependency>
2525
<groupId>com.groupdocs</groupId>
2626
<artifactId>groupdocs-viewer-cloud</artifactId>
27-
<version>25.7</version>
27+
<version>26.6</version>
2828
<scope>compile</scope>
2929
</dependency>
3030
```
@@ -43,7 +43,7 @@ repositories {
4343
...
4444
dependencies {
4545
...
46-
implementation 'com.groupdocs:groupdocs-viewer-cloud:25.7'
46+
implementation 'com.groupdocs:groupdocs-viewer-cloud:26.6'
4747
}
4848
```
4949

@@ -178,7 +178,7 @@ mvn package -D maven.test.skip=true
178178

179179
Then manually install the following JARs:
180180

181-
* target/groupdocs-viewer-cloud-25.7.jar
181+
* target/groupdocs-viewer-cloud-26.6.jar
182182
* target/lib/*.jar
183183

184184
## Licensing

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>groupdocs-viewer-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>groupdocs-viewer-cloud</name>
8-
<version>25.7</version>
8+
<version>26.6</version>
99
<url>https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-java</url>
1010
<description>Java library for communicating with the GroupDocs.Viewer Cloud API</description>
1111
<scm>

src/main/java/com/groupdocs/cloud/viewer/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public ApiClient(Configuration configuration) {
9797
this.json = new JSON();
9898

9999
// Set default User-Agent.
100-
setUserAgent("java-sdk/25.7");
100+
setUserAgent("java-sdk/26.6");
101101

102102
// Set connection timeout
103103
setConnectTimeout(configuration.getTimeout());

src/test/java/com/groupdocs/cloud/viewer/api/TestFiles.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@
3232
public class TestFiles {
3333

3434

35-
public static TestFile OnePageDocx = new TestFile("one-page.docx", "words\\docx\\");
35+
public static TestFile OnePageDocx = new TestFile("one-page.docx", "words/docx/");
3636
public static TestFile NotExist = new TestFile("NotExist.docx", "some-folder/");
37-
public static TestFile PasswordProtectedDocx = new TestFile("password-protected.docx", "words\\docx\\");
38-
public static TestFile TwoHiddenPagesVsd = new TestFile("two-hidden-pages.vsd", "diagram\\vsd\\");
39-
public static TestFile WithHiddenRowsAndColumns = new TestFile("with-hidden-rows-and-columns.xlsx", "cells\\xlsx\\");
40-
public static TestFile ThreeLayoutsDwf = new TestFile("three-layouts.dwf", "cad\\dwf\\");
41-
public static TestFile ProjectMpp = new TestFile("sample.mpp", "project\\mpp\\");
42-
public static TestFile UsesCustomFontPptx = new TestFile("uses-custom-font.pptx", "slides\\pptx\\");
43-
public static TestFile FontTtf = new TestFile("foo.ttf", "font\\ttf\\");
44-
public static TestFile FourPagesDocx = new TestFile("four-pages.docx", "words\\docx\\");
37+
public static TestFile PasswordProtectedDocx = new TestFile("password-protected.docx", "words/docx/");
38+
public static TestFile TwoHiddenPagesVsd = new TestFile("two-hidden-pages.vsd", "diagram/vsd/");
39+
public static TestFile WithHiddenRowsAndColumns = new TestFile("with-hidden-rows-and-columns.xlsx", "cells/xlsx/");
40+
public static TestFile ThreeLayoutsDwf = new TestFile("three-layouts.dwf", "cad/dwf/");
41+
public static TestFile ProjectMpp = new TestFile("sample.mpp", "project/mpp/");
42+
public static TestFile UsesCustomFontPptx = new TestFile("uses-custom-font.pptx", "slides/pptx/");
43+
public static TestFile FontTtf = new TestFile("foo.ttf", "font/ttf/");
44+
public static TestFile FourPagesDocx = new TestFile("four-pages.docx", "words/docx/");
4545

4646
static {
4747
PasswordProtectedDocx.setPassword("password");

0 commit comments

Comments
 (0)