Skip to content

Commit 0a508fa

Browse files
committed
release: 0.5.4 — DOCX header/footer extraction (first/even pages, text boxes)
Fixes text-loss gaps in DOCX header/footer parsing (see prior commit): - first-page / even-page header & footer references are now extracted (previously only w:type="default" was captured) - text boxes inside header/footer paragraphs no longer swallow surrounding text; run formatting and hyperlinks are preserved, resolved against the part's own relationships section.header/footer output schema is unchanged.
1 parent ed625b6 commit 0a508fa

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "undoc"
7-
version = "0.5.3"
7+
version = "0.5.4"
88
edition = "2021"
99
authors = ["iyulab"]
1010
description = "High-performance Microsoft Office document extraction to Markdown"

bindings/csharp/Undoc/Undoc.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Package metadata -->
1010
<PackageId>Undoc</PackageId>
11-
<Version>0.5.3</Version>
11+
<Version>0.5.4</Version>
1212
<AssemblyName>Undoc.Net</AssemblyName>
1313
<Authors>iyulab</Authors>
1414
<Company>iyulab</Company>

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "undoc"
7-
version = "0.5.3"
7+
version = "0.5.4"
88
description = "High-performance Microsoft Office document extraction to Markdown"
99
readme = "README.md"
1010
license = { text = "MIT" }

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "undoc-cli"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2021"
55
authors = ["iyulab"]
66
description = "CLI for undoc - Microsoft Office document extraction"
@@ -12,7 +12,7 @@ name = "undoc"
1212
path = "src/main.rs"
1313

1414
[dependencies]
15-
undoc = { version = "0.5.3", path = ".." }
15+
undoc = { version = "0.5.4", path = ".." }
1616
clap = { version = "4.5", features = ["derive"] }
1717
colored = "2.1"
1818
indicatif = "0.17"

undoc-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "undoc-wasm"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2021"
55
description = "High-performance Office document extraction to Markdown (WebAssembly)"
66
repository = "https://github.com/iyulab/undoc"

0 commit comments

Comments
 (0)