Skip to content

Commit

Permalink
20200819 update 1 : Release Aspose.Cells Cloud SDK 20.8
Browse files Browse the repository at this point in the history
  • Loading branch information
roywangaspose committed Aug 19, 2020
1 parent 19f8434 commit d7daec9
Show file tree
Hide file tree
Showing 7 changed files with 4,769 additions and 5,048 deletions.
2 changes: 1 addition & 1 deletion Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void CellsShapesPutWorksheetShapeTest()
int? height = 90;
string folder = TEMPFOLDER;
UpdateDataFile(instance,folder, name);
var response = instance.CellsShapesPutWorksheetShape(name, sheetName, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder);
var response = instance.CellsShapesPutWorksheetShape(name, sheetName, null,drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder);
Assert.IsInstanceOf<ShapeResponse>(response, "response is ShapeResponse");
Assert.AreEqual(response.Code, 200);
}
Expand Down
2 changes: 1 addition & 1 deletion Aspose.Cells.Cloud.SDK.Test/Api/CellsWorkbookApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ public void CellsWorkbookPutWorkbookCreateTest()

}

[Ignore("Ignore DropBox")]
//[Ignore("Ignore DropBox")]
public void CellsWorkbookPostWorkbooksTextSearchTestForDropBox()
{
string name = BOOK1;
Expand Down
13 changes: 9 additions & 4 deletions Aspose.Cells.Cloud.SDK.sln
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2009
# Visual Studio Version 16
VisualStudioVersion = 16.0.30128.74
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Cells.Cloud.SDK", "Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj", "{CCFC6447-7804-4C73-B5BE-6444ACBEF9A3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Aspose.Cells.Cloud.SDK", "Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj", "{CCFC6447-7804-4C73-B5BE-6444ACBEF9A3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Cells.Cloud.SDK.Test", "Aspose.Cells.Cloud.SDK.Test\Aspose.Cells.Cloud.SDK.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Aspose.Cells.Cloud.SDK.Test", "Aspose.Cells.Cloud.SDK.Test\Aspose.Cells.Cloud.SDK.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{146713BF-C18D-47F9-BEEA-8B1C71A834C1}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
9,782 changes: 4,748 additions & 5,034 deletions Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<Description>This SDK allows you to work with Aspose.Cells Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost.</Description>
<Copyright>MIT</Copyright>
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
<AssemblyVersion>20.6</AssemblyVersion>
<FileVersion>20.6</FileVersion>
<Version>20.6</Version>
<AssemblyVersion>20.8</AssemblyVersion>
<FileVersion>20.8</FileVersion>
<Version>20.8</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions Aspose.Cells.Cloud.SDK/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Configuration(ApiClient apiClient = null,
string tempFolderPath = null,
string dateTimeFormat = null,
int timeout = 100000,
string userAgent = "Swagger-Codegen/20.7/csharp"
string userAgent = "Swagger-Codegen/20.8/csharp"
)
{
setApiClientUsingDefault(apiClient);
Expand Down Expand Up @@ -94,7 +94,7 @@ public Configuration(ApiClient apiClient)
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "20.7";
public const string Version = "20.8";

/// <summary>
/// Gets or sets the default Configuration.
Expand Down Expand Up @@ -338,7 +338,7 @@ public static String ToDebugReport()
.GetExecutingAssembly()
.GetReferencedAssemblies()
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
report += " SDK Package Version: 20.7\n";
report += " SDK Package Version: 20.8\n";

return report;
}
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ This Cloud SDK enhances your C#, ASP.NET, & other .NET cloud-based apps to [proc
- Cloud SDK to Read & Process Excel Worksheets.
- Leverage the Power of Pivot Tables & Ranges.

## Feature & Enhancements in Version 20.7
## Feature & Enhancements in Version 20.8

- Enhancement for CellsApi constructor.
- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
- Get output file size without downloading during conversion.
- Enhancement for CellsShapesPutWorksheetShape API.

## Read & Write Spreadsheet Formats

Expand Down

0 comments on commit d7daec9

Please sign in to comment.