2025-03-05 11:34:02 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-xlsxwriter: fix wheel name for latest setuptools and depend on it
Bump PKGREVISION.
|
2025-01-29 13:14:38 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-xlsxwriter: updated to 3.2.2
Release 3.2.2 - January 28 2025
* Added support for checkboxes via the :func:`insert_checkbox()` method.
Checkboxes are a new feature added to `Excel in 2024`_. They are a way of
displaying a boolean value as a checkbox in a cell. The underlying value is
still an Excel ``TRUE/FALSE`` boolean value and can be used in formulas and in
references.
|
2025-01-23 08:26:49 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.2.1
Release 3.2.1 - January 22 2025
Added improvements to ``autofit()``.
* Added the optional ``max_width`` parameter to the :func:`autofit()` method to
work around the issue where the autofit width is too big.
Excel autofits very long strings up to limit of 1790 pixels/255 characters.
This is often too wide to display on a single screen at normal zoom. As such
the ``max_width`` parameter is provided to enable a smaller upper pixel limit
for autofitting long strings. See :func:`autofit()`.
* Added the :func:`cell_autofit_width` utility function to allow users to
calculate the auto-fit width for a cell value. This allows the user to
implement their own auto-fit logic. See :ref:`ex_autofit_manually`.
|
2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-02-19 07:04:04 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-xlsxwriter: updated to 3.2.0
Release 3.2.0 - February 17 2024
--------------------------------
This is the 10th anniversary release of XlsxWriter. Version 0.0.1 was released
on February 17 2013. Since they there have been 167 releases, 25,000 lines of
code, 1600 test cases, 700 pages of documentation, 71,000 users on GitHub, 50
contributors, 1000 closed issues and 150 million yearly downloads. Thanks to
everyone who has contributed code, given feedback or just used the library.
* Add :func:`embed_image()` worksheet method to embed images in cells. This is
equivalent to Excel's menu item to insert an image using the option to "Place
in Cell". It scales images automatically to the dimensions of the cell.
This has been a frequently requested feature for people creating spreadsheets
with images for product items. See also :ref:`ex_embedded_images`.
* Fix issue where a horizontal alignment format was ignored if indentation was
also set.
|
2023-10-23 13:56:06 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.1.9
Release 3.1.9 - October 19 2023
* Add fix for errant XML tag in chart leader lines for non-Pie charts.
|
2023-10-16 10:56:54 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.1.8
Release 3.1.8 - October 15 2023
-------------------------------
* Add support for formatting the data label in chart trendlines.
|
2023-10-11 10:58:09 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.1.7
Release 3.1.7 - October 9 2023
------------------------------
* Add the :func:`very_hidden()` method to hide a worksheet. This is similar to
the :func:`hide()` method except that the worksheet cannot be unhidden in the
the Excel user interface. The Excel worksheet "xlSheetVeryHidden" \
option can
only be unset programmatically via VBA.
* Added fixes for column formulas in tables that were overridden by table data
and which also didn't take future functions into account.
|
2023-10-02 10:52:00 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.1.6
Release 3.1.6 - October 1 2023
* Added support for chart leader lines for chart types other than Pie and Doughnut.
|
2023-09-27 14:10:59 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-xlsxwriter: updated to 3.1.5
Release 3.1.5 - September 24 2023
---------------------------------
* Added support for adding signed VBA macros to workbooks via the via the
:func:`add_signed_vba_project` method. See `Working with VBA Macros`_.
Release 3.1.4 - September 18 2023
---------------------------------
* Added support for enabling the Excel "Show #N/A as an empty cell" \
chart option
via the :func:`show_na_as_empty_cell` method.
|