Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-U434MT0\hiro committed Dec 17, 2024
1 parent 5e20000 commit b58e16e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "umya-spreadsheet"
version = "2.2.0"
version = "2.2.1"
authors = ["MathNya <[email protected]>"]
repository = "https://github.com/MathNya/umya-spreadsheet"
keywords = ["excel", "spreadsheet", "xlsx", "reader", "writer"]
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
Please mention in issues if you have any questions.

## Update details
### ver 2.2.1
#### * Gridlines setting values can now be changed.
```rust
let mut book = umya_spreadsheet::reader::xlsx::read(path).unwrap();
let mut sheet = book.get_sheet_mut(&0).unwrap();
sheet.get_sheet_views_mut().get_sheet_view_list_mut().get_mut(0).unwrap().set_show_grid_lines(false);
```
### ver 2.2.0
#### * Increased processing speed and reduced memory consumption.(Thank you. [schungx](https://github.com/schungx),[mxsrm](https://github.com/mxsrm))
The return type has been changed in some functions.
Expand Down Expand Up @@ -45,13 +52,13 @@ sheet.add_comments(comment);
Add the following code to Cargo.toml
```toml
[dependencies]
umya-spreadsheet = "2.2.0"
umya-spreadsheet = "2.2.1"

# WebAssembly support
umya-spreadsheet = { version = "2.2.0", features = ["js"] }
umya-spreadsheet = { version = "2.2.1", features = ["js"] }

# Use only png for image processing
umya-spreadsheet = { version = "2.2.0", features = ["image/png"] }
umya-spreadsheet = { version = "2.2.1", features = ["image/png"] }
```

Add the following code to main.rs
Expand Down

0 comments on commit b58e16e

Please sign in to comment.