Skip to content

Commit bda5766

Browse files
committed
Release Aspose.Cells Cloud SDK 25.8.0
1 parent f33961b commit bda5766

File tree

3 files changed

+61
-22
lines changed

3 files changed

+61
-22
lines changed

HistoryVersion.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release History Version
22

3+
4+
## Feature & Enhancements in Version 25.7
5+
6+
- Optimize the operation scope options for Text Processing Controller.
7+
- Add protect/unprotect spreadsheet APIs.
8+
- Add convert worksheet/table/range to other formats.
9+
10+
## Feature & Enhancements in Version 25.6
11+
12+
- Optimize the upload file API. Improvement
13+
- Support deletes blank rows, columns, and worksheets.
14+
- Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area.
15+
- Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area.
16+
- Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area.
17+
18+
## Feature & Enhancements in Version 25.4
19+
20+
- New API for Comprehensive Formula Error Checks in Excel Workbooks.
21+
- New API for External Reference Checks in Excel Workbooks.
22+
23+
324
## Feature & Enhancements in Version 25.4
425

526
- New API for Comprehensive Formula Error Checks in Excel Workbooks.

Pack_NugetPackage.ps1

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,36 @@
11
dotnet build -c Release Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj
2-
$RootFoler=(Get-Location).Path
3-
$File = "$RootFoler\Aspose.Cells.Cloud.SDK\bin\Release\net6\Aspose.Cells.Cloud.SDK.dll"
2+
$RootFolder = (Get-Location).Path
3+
$File = "$RootFolder\Aspose.Cells.Cloud.SDK\bin\Release\net6.0\Aspose.Cells.Cloud.SDK.dll" # 修正为 net6.0
44
$FileVersion = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($File).FileVersion.split(".")
5-
$version
5+
66
if( $FileVersion.Length -eq 2 ){
7-
$version=$fileVersion[0],$fileVersion[1],"0" -join('.')
8-
}else{
9-
$version=$fileVersion[0],$fileVersion[1],$fileVersion[2] -join('.')
7+
$version = $fileVersion[0],$fileVersion[1],"0" -join('.')
8+
} else {
9+
$version = $fileVersion[0],$fileVersion[1],$fileVersion[2] -join('.')
1010
}
11-
$PackFile="Aspose.Cells-Cloud.$version.nupkg"
12-
11+
$PackFile = "Aspose.Cells-Cloud.$version.nupkg"
1312
Write-Output "Pack Aspose.Cells Cloud SDK $version For Net."
14-
dotnet pack -c Release --output .\
15-
dotnet nuget sign --hash-algorithm sha256 --certificate-path aspose.pfx --certificate-password f27Hp99Ds3 --timestamper http://timestamp.digicert.com $PackFile
16-
dotnet nuget verify $PackFile
17-
Write-Output "Move-Item -Path $PackFile -Destination packages/$PackFile"
18-
if (-not (Test-Path packages)){
19-
New-Item -type Directory packages
13+
dotnet pack Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj -c Release --output .\ --no-build
14+
if (Test-Path "aspose.pfx") {
15+
dotnet nuget sign $PackFile `
16+
--hash-algorithm sha256 `
17+
--certificate-path aspose.pfx `
18+
--certificate-password f27Hp99Ds3 `
19+
--timestamper http://timestamp.digicert.com
20+
21+
dotnet nuget verify $PackFile
2022
}
21-
if (Test-Path packages/$PackFile){
22-
Remove-Item -Path packages/$PackFile
23+
if (-not (Test-Path packages)) {
24+
New-Item -ItemType Directory packages | Out-Null
2325
}
24-
Move-Item -Path "$PackFile" -Destination "packages/$PackFile"
26+
27+
if (Test-Path "packages\$PackFile") {
28+
Remove-Item -Path "packages\$PackFile" -Force
29+
}
30+
31+
if (Test-Path $PackFile) {
32+
Move-Item -Path $PackFile -Destination "packages\" -Force
33+
Write-Output "Package moved to: $((Get-Item "packages\$PackFile").FullName)"
34+
} else {
35+
Write-Error "Package file not found: $PackFile"
36+
}

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/aspose.cells%20Cloud%20SDK-v25.7.0-blue?style=for-the-badge&logo=dotnet) [![Product Page](https://img.shields.io/badge/Product-0288d1?style=for-the-badge&logo=Google-Chrome&logoColor=white)](https://products.aspose.cloud/cells/net/) [![Documentation](https://img.shields.io/badge/Documentation-388e3c?style=for-the-badge&logo=Hugo&logoColor=white)](https://docs.aspose.cloud/cells/) [![API Ref](https://img.shields.io/badge/Reference-f39c12?style=for-the-badge&logo=html5&logoColor=white)](https://reference.aspose.cloud/cells/) [![Examples](https://img.shields.io/badge/Examples-1565c0?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/tree/main/examples) [![Blog](https://img.shields.io/badge/Blog-d32f2f?style=for-the-badge&logo=WordPress&logoColor=white)](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [![Support](https://img.shields.io/badge/Support-7b1fa2?style=for-the-badge&logo=Discourse&logoColor=white)](https://forum.aspose.cloud/c/cells/7) [![License](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-go?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE)
1+
![](https://img.shields.io/badge/aspose.cells%20Cloud%20SDK-v25.8.0-blue?style=for-the-badge&logo=dotnet) [![Product Page](https://img.shields.io/badge/Product-0288d1?style=for-the-badge&logo=Google-Chrome&logoColor=white)](https://products.aspose.cloud/cells/net/) [![Documentation](https://img.shields.io/badge/Documentation-388e3c?style=for-the-badge&logo=Hugo&logoColor=white)](https://docs.aspose.cloud/cells/) [![API Ref](https://img.shields.io/badge/Reference-f39c12?style=for-the-badge&logo=html5&logoColor=white)](https://reference.aspose.cloud/cells/) [![Examples](https://img.shields.io/badge/Examples-1565c0?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/tree/main/examples) [![Blog](https://img.shields.io/badge/Blog-d32f2f?style=for-the-badge&logo=WordPress&logoColor=white)](https://blog.aspose.cloud/categories/aspose.cells-cloud-product-family/) [![Support](https://img.shields.io/badge/Support-7b1fa2?style=for-the-badge&logo=Discourse&logoColor=white)](https://forum.aspose.cloud/c/cells/7) [![License](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-go?style=for-the-badge&logo=rocket&logoColor=white)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/blob/master/LICENSE)
22

33
# .NET package for Aspose.Cells Cloud
44

@@ -96,15 +96,21 @@ To get started with Aspose.Cells Cloud for .NET, follow these steps:
9696
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
9797
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
9898

99-
## Feature & Enhancements in Version v25.7.0
99+
## Feature & Enhancements in Version v25.8.0
100100

101101
Full list of issues covering all changes in this release:
102102

103103
|**Summary**| **Category** |
104104
| :- |:-------------|
105-
| Optimize operate scope options for extProcessingController. | Improvement |
106-
| Add protect/unprotect spreadsheet APIs. | New Feature |
107-
| Add convert worksheet/table/range to other formats. | New Feature |
105+
| Support of Authorization in Aspose.Cells Cloud Docker Container | New Feature |
106+
| New Feature: Aggregate cells by color in CalculateController. | New Feature |
107+
| New Feature: Math Calculations in CalculateController. | New Feature |
108+
| New Feature: Adding/Deleting/Renaming worksheet in ManagementController. | New Feature |
109+
| New Feature: Adding/Deleting worksheet in ManagementController. | New Feature |
110+
| New Feature: create spreadsheet in ManagementController. | New Feature |
111+
| New feature: Redesign the data import into the Spreadsheet. | New Feature |
112+
| New feature: Swap data ranges in the spreadsheet. | New Feature |
113+
| Fix the code generator of the cells cloud SDK specification for the enum query parameter. | Bug |
108114

109115
## Available SDKs
110116

0 commit comments

Comments
 (0)