* 0.4.1

* 0.4.1

* 0.4.2
main
bokuweb 2022-08-25 15:49:26 +09:00 committed by GitHub
parent 7d026a4ee4
commit 753c6d4d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 2 deletions

View File

@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## docx-rs@0.4.2 (25. Aug, 2022)
- [Breaking] Hyperlink interface.
- Support hyperlink reader.
- [Breaking] Remove default `TableCellMargin`. Please specify if needed.
- Support table cell margins reader.
- Support nested table reader.
- Add png image converter
- Add `imageData` in `Shape` reader.
- [BUGFIX] Fixed a bug, it is not able to read jpeg from js.
- [BUGFIX] Fixed a bug, it is not able to write images.
- [Breaking] Add `id` and `path` to `images` output.
- [BUGFIX] Use default `numPr` if numId not found to avoid panic.
- [Breaking] Use `self.based_on` and `self.next` in `style` instead of `Normal`.
- [Breaking] Use `i32` for `PageMargin` props instead of unsigned.
- support `columns` in document.
## docx-wasm@0.0.275 (8. Aug, 2022) ## docx-wasm@0.0.275 (8. Aug, 2022)

2
Cargo.lock generated
View File

@ -158,7 +158,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
[[package]] [[package]]
name = "docx-rs" name = "docx-rs"
version = "0.4.0" version = "0.4.2"
dependencies = [ dependencies = [
"base64", "base64",
"image", "image",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "docx-rs" name = "docx-rs"
version = "0.4.0" version = "0.4.2"
authors = ["bokuweb <bokuweb12@gmail.com>"] authors = ["bokuweb <bokuweb12@gmail.com>"]
repository = "https://github.com/bokuweb/docx-rs" repository = "https://github.com/bokuweb/docx-rs"
edition = "2018" edition = "2018"