Skip to content

Commit

Permalink
Release Aspose.Cells Cloud SDK 22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roywangaspose committed Feb 24, 2022
1 parent 118c51d commit cd94334
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,13 @@ Android Cloud SDK wraps Aspose.Cells Cloud API. The SDK enhances your Android ap
- Leverage the power of named ranges.


## Feature & Enhancements in Version 22.1

- SaveAs API add the parameter of target storage name.
- Workbok merged API add the parameter of merged file storage name.
- Workbok split API add the parameter of target storage name
- Workbok smart marker API add the parameter of output storage name.
- Batch convert API add the parameters of intput and output storage name.
- Remove AutoshapesController from Aspose.Cells Cloud.
- Rename LiteCellsApi to LightCellsApi.
## Feature & Enhancements in Version 22.2

- Update return value for the DeleteUnprotectWorksheet API.
- Update return value for the PutProtectWorksheet API.
- Update return value for the PostSetCellHtmlString API.
- Update return value for the PostUpdateWorksheetProperty API.


## Read & Write Spreadsheet Formats

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = 'com.aspose'
project.version = '22.1'
project.version = '22.2'

buildscript {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ public void cellsPostSetCellHtmlStringTest() throws ApiException {
String folder = TEMPFOLDER;
String htmlString ="https://api.aspose.cloud/v3.0/cells";
CellsApiUtil.Upload(api, folder , name);
CellResponse response = api.cellsPostSetCellHtmlString(name, sheetName, cellName,htmlString.getBytes() ,folder,null);
CellsCloudResponse response = api.cellsPostSetCellHtmlString(name, sheetName, cellName,htmlString.getBytes() ,folder,null);
Assert.assertEquals("cellsPostSetCellHtmlStringTest is OK.", "OK", response.getStatus());
// TODO: test validations
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void cellsWorksheetsDeleteUnprotectWorksheetTest()
protectParameter.setPassword("123456");
String folder = TEMPFOLDER;
CellsApiUtil.Upload(api, folder, name);
WorksheetResponse response = api
CellsCloudResponse response = api
.cellsWorksheetsDeleteUnprotectWorksheet(name, sheetName,
protectParameter, folder, null);

Expand Down Expand Up @@ -585,7 +585,7 @@ public void cellsWorksheetsPostUpdateWorksheetPropertyTest()
sheet.setIndex(0);
String folder = TEMPFOLDER;
CellsApiUtil.Upload(api, folder, name);
WorksheetResponse response = api
CellsCloudResponse response = api
.cellsWorksheetsPostUpdateWorksheetProperty(name, sheetName,
sheet, folder, null);

Expand Down Expand Up @@ -771,7 +771,7 @@ public void cellsWorksheetsPutProtectWorksheetTest() throws ApiException {
protectParameter.setPassword("123456");
String folder = TEMPFOLDER;
CellsApiUtil.Upload(api, folder, name);
WorksheetResponse response = api.cellsWorksheetsPutProtectWorksheet(
CellsCloudResponse response = api.cellsWorksheetsPutProtectWorksheet(
name, sheetName, protectParameter, folder, null);

// TODO: test validations
Expand Down

0 comments on commit cd94334

Please sign in to comment.