Skip to content

Commit

Permalink
Prep for release 1.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Oct 13, 2024
1 parent 56f986e commit 65c5ebc
Show file tree
Hide file tree
Showing 40 changed files with 305 additions and 136 deletions.
8 changes: 7 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Revision history for Perl module Excel::Writer::XLSX.
! Bug fix.


1.13 2024-10-13

! Fixed issue with html color for border colors.
Issue #302 and #305.


1.12 2024-02-26

+ Added support for embedding images into worksheets with
Expand Down Expand Up @@ -32,7 +38,7 @@ Revision history for Perl module Excel::Writer::XLSX.
+ Added worksheet `very_hidden()` method to hide a worksheet in a way that
it can only be unhidden by VBA. Feature Request #228.

! Fixed identation and alignment property mismatch.
! Fixed indentation and alignment property mismatch.

Fix issue where a horizontal alignment format was ignored if the
indentation was also set.
Expand Down
163 changes: 163 additions & 0 deletions MANIFEST

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ INSTALLATION

Unzip and untar the module as follows:

tar -zxvf Excel-Writer-XLSX-1.12.tar.gz
tar -zxvf Excel-Writer-XLSX-1.13.tar.gz

The module can be installed using the standard Perl procedure:

Expand Down
4 changes: 2 additions & 2 deletions lib/Excel/Writer/XLSX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use Exporter;
use Excel::Writer::XLSX::Workbook;

our @ISA = qw(Excel::Writer::XLSX::Workbook Exporter);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down Expand Up @@ -7376,7 +7376,7 @@ different features and options of the module. See L<Excel::Writer::XLSX::Example
defined_name.pl Example of how to create defined names.
diag_border.pl A simple example of diagonal cell borders.
dynamic_arrays.pl Example of using new Excel 365 dynamic functions.
embedded_images.pl Example of embedding imges in worksheet cells.
embedded_images.pl Example of embedding images in worksheet cells.
filehandle.pl Examples of working with filehandles.
headers.pl Examples of worksheet headers and footers.
hide_row_col.pl Example of hiding rows and columns.
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use Excel::Writer::XLSX::Utility qw(xl_cell_to_rowcol
quote_sheetname );

our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Area.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Bar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Column.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Doughnut.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart::Pie;

our @ISA = qw(Excel::Writer::XLSX::Chart::Pie);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Line.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Pie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Radar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Scatter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chart/Stock.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use Excel::Writer::XLSX::Chart;

our @ISA = qw(Excel::Writer::XLSX::Chart);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Chartsheet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use Exporter;
use Excel::Writer::XLSX::Worksheet;

our @ISA = qw(Excel::Writer::XLSX::Worksheet);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/Excel/Writer/XLSX/Drawing.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use Excel::Writer::XLSX::Package::XMLwriter;
use Excel::Writer::XLSX::Worksheet;

our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter);
our $VERSION = '1.12';
our $VERSION = '1.13';


###############################################################################
Expand Down
Loading

0 comments on commit 65c5ebc

Please sign in to comment.