parent
7d026a4ee4
commit
753c6d4d7e
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -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/),
|
||||
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)
|
||||
|
||||
|
|
|
@ -158,7 +158,7 @@ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
|
|||
|
||||
[[package]]
|
||||
name = "docx-rs"
|
||||
version = "0.4.0"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"image",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "docx-rs"
|
||||
version = "0.4.0"
|
||||
version = "0.4.2"
|
||||
authors = ["bokuweb <bokuweb12@gmail.com>"]
|
||||
repository = "https://github.com/bokuweb/docx-rs"
|
||||
edition = "2018"
|
||||
|
|
Loading…
Reference in New Issue