Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,19 +221,21 @@ exstruct input.xlsx --pdf --image --dpi 144
"text": "開始",
"l": 148,
"t": 220,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"id": 2,
"text": "入力データ読み込み",
"l": 132,
"t": 282,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"l": 193,
"t": 246,
"type": "AutoShape-Mixed",
"kind": "arrow",
"begin_arrow_style": 1,
"end_arrow_style": 2,
"begin_id": 1,
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,19 +222,21 @@ Below is a **shortened JSON output example** from parsing this Excel workbook.
"text": "開始",
"l": 148,
"t": 220,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"id": 2,
"text": "入力データ読み込み",
"l": 132,
"t": 282,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"l": 193,
"t": 246,
"type": "AutoShape-Mixed",
"kind": "arrow",
"begin_arrow_style": 1,
"end_arrow_style": 2,
"begin_id": 1,
Expand Down
4 changes: 3 additions & 1 deletion docs/README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,19 +222,21 @@ Below is a **shortened JSON output example** from parsing this Excel workbook.
"text": "開始",
"l": 148,
"t": 220,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"id": 2,
"text": "入力データ読み込み",
"l": 132,
"t": 282,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"l": 193,
"t": 246,
"type": "AutoShape-Mixed",
"kind": "arrow",
"begin_arrow_style": 1,
"end_arrow_style": 2,
"begin_id": 1,
Expand Down
4 changes: 3 additions & 1 deletion docs/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,19 +221,21 @@ exstruct input.xlsx --pdf --image --dpi 144
"text": "開始",
"l": 148,
"t": 220,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"id": 2,
"text": "入力データ読み込み",
"l": 132,
"t": 282,
"kind": "shape",
"type": "AutoShape-FlowchartProcess"
},
{
"l": 193,
"t": 246,
"type": "AutoShape-Mixed",
"kind": "arrow",
"begin_arrow_style": 1,
"end_arrow_style": 2,
"begin_id": 1,
Expand Down
16 changes: 16 additions & 0 deletions docs/release-notes/v0.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# v0.3.1 Release Notes

This release adds SmartArt extraction and updates shape modeling to better
separate standard shapes, arrows, and SmartArt structures.

## Highlights

- SmartArt extraction via Excel COM, including layout name and nested nodes.
- Shape modeling split into `Shape`, `Arrow`, and `SmartArt` for clearer semantics.
- SmartArt node payload optimized for compact output (`layout`, `nodes`, `kids`).

## Compatibility Notes

- `Shape.type` now exists only on `Shape`; it is omitted for `Arrow` and `SmartArt`.
- SmartArt output uses `layout` and `nodes` with `kids`; previous fields like
`layout_name`, `roots`, or `children` are no longer present.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ nav:
- CLI Guide: cli.md
- Concept / Why ExStruct?: concept.md
- Release Notes:
- v0.3.1: release-notes/v0.3.1.md
- v0.3.0: release-notes/v0.3.0.md
- v0.2.90: release-notes/v0.2.90.md
- v0.2.80: release-notes/v0.2.80.md
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "exstruct"
version = "0.3.0"
version = "0.3.1"
description = "Excel to structured JSON (tables, shapes, charts) for LLM/RAG pipelines"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
Loading