Skip to content

Commit ce9d5c9

Browse files
committed
1.26.4
1 parent 55c944c commit ce9d5c9

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
### 1.26.4
2626
- [Bug] Using stream.SaveAs will close the Stream automatically when Specifying excelType
27+
- [OPT] Optimize Query big file _IntMappingAlphabet.Count hot loading count (#400 via @CollapseNav)
2728

2829
### 1.26.3
2930
- [OPT] Export default buffersize from 1024 bytes -> 1024 * 512 bytes

docs/README.zh-CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
### 1.26.4
3030
- [Bug] 使用Stream.SaveAs时指定excelType会自动关闭Stream #I57WMM
31+
- [OPT] 减少在读取大文件时 _IntMappingAlphabet.Count 的调用 (#400 via @CollapseNav)
3132

3233
### 1.26.3
3334
- [OPT] Export 预设 buffersize 从 1024 bytes -> 1024 * 512 bytes

docs/README.zh-Hant.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
### 1.26.4
2828
- [Bug] 使用Stream.SaveAs時指定excelType會自動關閉Stream #I57WMM
29+
- [OPT] 減少在讀取大文件時 _IntMappingAlphabet.Count 的調用 (#400 via @CollapseNav)
2930

3031
### 1.26.3
3132
- [OPT] Export 預設 buffersize 從 1024 bytes -> 1024 * 512 bytes

src/MiniExcel/Csv/CsvWriter.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public void SaveAs()
3939
if (_value == null)
4040
{
4141
_writer.Write("");
42+
this._writer.Flush();
4243
return;
4344
}
4445

@@ -94,6 +95,7 @@ public void SaveAs()
9495
if (keys.Count == 0 && props == null)
9596
{
9697
_writer.Write(newLine);
98+
this._writer.Flush();
9799
return;
98100
}
99101

0 commit comments

Comments
 (0)