Skip to content

Releases: MathNya/umya-spreadsheet

Version 1.1.1

11 Dec 02:39
Compare
Choose a tag to compare

Version 1.1.1

Bug Fix

Update

Thanks for the great PR.

agentjill

Version 1.1.0

01 Dec 02:52
cb56491
Compare
Choose a tag to compare

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.

agentjill
vonkruel
patrickomatic

Version 1.0.3

25 Oct 07:18
Compare
Choose a tag to compare

Bug Fix

Thanks for the great PR.

patrickomatic
popen2

Version 1.0.2

25 Oct 07:12
Compare
Choose a tag to compare

Version 1.0.1

25 Oct 07:09
Compare
Choose a tag to compare

Bug Fix

Version 1.0.0

14 Aug 14:56
Compare
Choose a tag to compare

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.

ggodlewski
zjhsd2007
boseongkim32

Version 0.9.2

21 Apr 07:48
Compare
Choose a tag to compare

New feature

  • new function get_lazy_read_sheet_cells
  • set_value_from_string is deprecated

Bug Fix

Thanks for the great PR.

john-dc252

Version 0.9.1

10 Mar 14:53
Compare
Choose a tag to compare

New feature

  • Changed file compression logic when writing.

Bug Fix

Thanks for the great PR.

cstkingkey

Version 0.9

25 Feb 07:29
Compare
Choose a tag to compare

New feature

  • The way cells are referenced has changed.
  • openpyxl files can now be opened.

Bug Fix

Thanks for the great PR.

kjh618
john-dc252
iancormac84

Version 0.7.0

11 Apr 09:13
Compare
Choose a tag to compare
Version 0.7.0 Pre-release
Pre-release

Fixed

Thanks

They provided suggestions for improvement and pull requests.