MathNya/umya-spreadsheet
 Watch   
 Star   
 Fork   
2023-12-06 14:11:47
umya-spreadsheet

Version 1.1.1

Version 1.1.1

Bug Fix

  • #155

Update

  • #156

Thanks for the great PR.

agentjill

2023-12-01 09:01:27
umya-spreadsheet

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

  • #141
  • #143
  • #146
  • #147

Thanks for the great PR.

agentjill vonkruel patrickomatic

2023-10-25 14:14:41
umya-spreadsheet

Version 1.0.3

Bug Fix

  • #132
  • #133
  • #134
  • #135

Thanks for the great PR.

patrickomatic popen2

2023-09-13 23:13:51
umya-spreadsheet

Version 1.0.2

Bug Fix

  • #128
2023-08-27 17:51:53
umya-spreadsheet

Version 1.0.1

Bug Fix

  • #72
2023-08-09 11:23:55
umya-spreadsheet

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

  • #122
  • #123
  • #124
  • #125
  • #127

Thanks for the great PR.

ggodlewski zjhsd2007 boseongkim32

2023-04-21 15:38:24
umya-spreadsheet

Version 0.9.2

New feature

  • new function get_lazy_read_sheet_cells
  • set_value_from_string is deprecated

Bug Fix

  • #110
  • #116
  • #118

Thanks for the great PR.

john-dc252

2023-03-10 22:49:29
umya-spreadsheet

Version 0.9.1

New feature

  • Changed file compression logic when writing.

Bug Fix

  • #110

Thanks for the great PR.

cstkingkey

2023-02-25 15:18:54
umya-spreadsheet

Version 0.9

New feature

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

Bug Fix

  • #74
  • #90
  • #101
  • #103

Thanks for the great PR.

kjh618 john-dc252 iancormac84

2022-04-11 17:04:28
umya-spreadsheet

Version 0.7.0

Fixed

  • Fixed by #44, #45, #46, #47, #49, #53 and #54.

Thanks

They provided suggestions for improvement and pull requests.