You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Validation Warning Change**: Sheet names longer than 31 characters now produce a warning (not an error). The warning also notes that Excel may truncate the sheet name.
31
-
-**TOC Update**: The Table of Contents now includes an "Original Name" column to display the originally defined sheet name (useful when the tab name is truncated by Excel).
28
+
## v1.3.0 Highlights
29
+
30
+
-**Per-sheet export routing by extension**
31
+
-`.xlsx` / `.xls` → Generate a single Excel workbook (existing behavior)
32
+
-`.csv` → Generate per-sheet CSV files
33
+
- All other extensions (e.g., `.txt`, `.log`, `.data`, `.sql`, etc.) → Generate per-sheet TXT files (tab-delimited)
34
+
-**Directory and filename rules for per-sheet export**
35
+
- Output directory: `<output_basename>_<ext>` (no dot). Example: `output="d:/temp/report.csv"` → `d:/temp/report_csv/`
36
+
- Each sheet becomes a separate file named after the sheet's `originalName`
37
+
- No 31-character truncation for CSV/TXT (Excel-only limit). Filenames sanitized and capped at 100 chars
38
+
-**Format defaults**
39
+
- CSV: comma, UTF-8 with BOM, headers, CRLF
40
+
- TXT: tab, UTF-8 with BOM, headers, CRLF
41
+
42
+
### Previously in v1.2.11
43
+
44
+
- Validation warning for sheet names > 31 chars; note about Excel truncation
0 commit comments