Releases: MathNya/umya-spreadsheet
Releases · MathNya/umya-spreadsheet
Version 1.1.1
Version 1.1.0
Version 1.1.0
New feature
Table support availabled. (Thank you, vonkruel.)
Sheet Protection support availabled.
sheet
.get_sheet_protection_mut()
.set_password("password")
.set_sheet(true);
Workbook Protection support availabled.
book.get_workbook_protection_mut()
.set_workbook_password("password");
HTML to Richtext support availabled.
let html = r##"<font color="red">test</font><br><font class="test" color="#48D1CC">TE<b>S</b>T<br/>TEST</font>"##;
let richtext = umya_spreadsheet::helper::html::html_to_richtext(html).unwrap();
sheet.get_cell_mut("G16").set_rich_text(richtext);
// Enable line breaks.
sheet.get_cell_mut("G16").get_style_mut().get_alignment_mut().set_wrap_text(true);
Bug Fix
Thanks for the great PR.
Version 1.0.3
Version 1.0.2
Bug Fix
Version 1.0.1
Bug Fix
Version 1.0.0
New feature
- remove deprecated functions
- new function move_range
let range = "C5:F9";
let row = 12;
let column = 4;
book.get_sheet_by_name_mut("Sheet1").unwrap().move_range(range, &row, &column);
Bug Fix
Thanks for the great PR.
Version 0.9.2
New feature
- new function get_lazy_read_sheet_cells
- set_value_from_string is deprecated
Bug Fix
Thanks for the great PR.
Version 0.9.1
New feature
- Changed file compression logic when writing.
Bug Fix
Thanks for the great PR.
Version 0.9
New feature
- The way cells are referenced has changed.
- openpyxl files can now be opened.