Skip to content

Commit 38eb60c

Browse files
committed
1.41.1
1 parent 01785ae commit 38eb60c

File tree

7 files changed

+45
-1
lines changed

7 files changed

+45
-1
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,6 +1513,12 @@ MiniExcel.AddPicture(path, images);
15131513
```
15141514
![Image](https://github.com/user-attachments/assets/19c4d241-9753-4ede-96c8-f810c1a22247)
15151515

1516+
#### 7. Get Sheets Dimension
1517+
1518+
```csharp
1519+
var dim = MiniExcel.GetSheetsDimensions(path);
1520+
```
1521+
15161522
### Examples:
15171523

15181524
#### 1. SQLite & Dapper `Large Size File` SQL Insert Avoid OOM

README.zh-CN.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,11 @@ MiniExcel.AddPicture(path, images);
16561656
```
16571657
![Image](https://github.com/user-attachments/assets/19c4d241-9753-4ede-96c8-f810c1a22247)
16581658

1659+
#### 7. Get Sheets Dimension
16591660

1661+
```csharp
1662+
var dim = MiniExcel.GetSheetsDimensions(path);
1663+
```
16601664

16611665

16621666

README.zh-Hant.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,11 @@ MiniExcel.AddPicture(path, images);
13891389

13901390
![Image](https://github.com/user-attachments/assets/19c4d241-9753-4ede-96c8-f810c1a22247)
13911391

1392+
#### 7. Get Sheets Dimension
13921393

1394+
```csharp
1395+
var dim = MiniExcel.GetSheetsDimensions(path);
1396+
```
13931397

13941398

13951399
### 範例

docs/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323
---
2424

2525

26+
### 1.41.1
27+
- [New] Added sheet dimensions feature (#774) (via @michelebastione)
28+
- [Bug] Fix Saving by template introduces unintended value replication in each row #771
29+
(via @shps951023)
30+
- [Bug] SaveAsByTemplate not working in > v1.39.0 for templates with columns past Z #773 (via @shps951023)
31+
- [Bug] Fix Excel style.xml duplicate numFmtId, system error: An item with the same key has already been added. #772 (via @shps951023)
32+
33+
2634
### 1.41.0
2735
- [New] MiniExcel AddPicture #770 (via @shps951023)
2836
- [New] Add a configuration item in OpenXmlConfiguration to control writing the file path, enabling the corresponding cell to remain empty when importing images. (via @dotnetfans)

docs/README.zh-CN.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525

2626
---
2727

28+
29+
30+
31+
32+
### 1.41.1
33+
- [New] Added sheet dimensions feature (#774) (via @michelebastione)
34+
- [Bug] Fix Saving by template introduces unintended value replication in each row #771
35+
(via @shps951023)
36+
- [Bug] SaveAsByTemplate not working in > v1.39.0 for templates with columns past Z #773 (via @shps951023)
37+
- [Bug] Fix Excel style.xml duplicate numFmtId, system error: An item with the same key has already been added. #772 (via @shps951023)
38+
2839
### 1.41.0
40+
2941
- [New] 支持批量图片新增 MiniExcel AddPicture #770 (via @shps951023)
3042
- [New] OpenXmlConfiguration中添加 是否写入文件路径的配置项 ,实现导入图片时候对应单元格可以不填充文本. (via @dotnetfans)
3143

docs/README.zh-Hant.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,17 @@
2424

2525
---
2626

27+
28+
29+
### 1.41.1
30+
- [New] Added sheet dimensions feature (#774) (via @michelebastione)
31+
- [Bug] Fix Saving by template introduces unintended value replication in each row #771
32+
(via @shps951023)
33+
- [Bug] SaveAsByTemplate not working in > v1.39.0 for templates with columns past Z #773 (via @shps951023)
34+
- [Bug] Fix Excel style.xml duplicate numFmtId, system error: An item with the same key has already been added. #772 (via @shps951023)
35+
2736
### 1.41.0
37+
2838
- [New] 支持批量圖片新增 MiniExcel AddPicture #770 (via @shps951023)
2939
- [New] OpenXmlConfiguration中添加 是否寫入文件路徑的配置項 ,實現導入圖片時候對應單元格可以不填充文本. (via @dotnetfans)
3040

src/MiniExcel/MiniExcelLibs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net45;netstandard2.0;net8.0;net9.0</TargetFrameworks>
4-
<Version>1.41.0</Version>
4+
<Version>1.41.1</Version>
55
</PropertyGroup>
66
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<LangVersion>8</LangVersion>

0 commit comments

Comments
 (0)