From d0cb2c19891df618f034ee79702b1ddab5ab0ff0 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Mon, 21 Oct 2024 23:36:42 +0100 Subject: [PATCH] Prep for release 1.14. --- Changes | 5 + README | 2 +- lib/Excel/Writer/XLSX.pm | 2 +- lib/Excel/Writer/XLSX/Chart.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Area.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Bar.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Column.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Doughnut.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Line.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Pie.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Radar.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Scatter.pm | 2 +- lib/Excel/Writer/XLSX/Chart/Stock.pm | 2 +- lib/Excel/Writer/XLSX/Chartsheet.pm | 2 +- lib/Excel/Writer/XLSX/Drawing.pm | 2 +- lib/Excel/Writer/XLSX/Examples.pm | 194 +++++++++--------- lib/Excel/Writer/XLSX/Format.pm | 2 +- lib/Excel/Writer/XLSX/Package/App.pm | 2 +- lib/Excel/Writer/XLSX/Package/Comments.pm | 2 +- lib/Excel/Writer/XLSX/Package/ContentTypes.pm | 2 +- lib/Excel/Writer/XLSX/Package/Core.pm | 2 +- lib/Excel/Writer/XLSX/Package/Custom.pm | 2 +- lib/Excel/Writer/XLSX/Package/Metadata.pm | 2 +- lib/Excel/Writer/XLSX/Package/Packager.pm | 2 +- .../Writer/XLSX/Package/Relationships.pm | 2 +- lib/Excel/Writer/XLSX/Package/RichValue.pm | 2 +- lib/Excel/Writer/XLSX/Package/RichValueRel.pm | 2 +- .../Writer/XLSX/Package/RichValueStructure.pm | 2 +- .../Writer/XLSX/Package/RichValueTypes.pm | 2 +- .../Writer/XLSX/Package/SharedStrings.pm | 2 +- lib/Excel/Writer/XLSX/Package/Styles.pm | 2 +- lib/Excel/Writer/XLSX/Package/Table.pm | 2 +- lib/Excel/Writer/XLSX/Package/Theme.pm | 2 +- lib/Excel/Writer/XLSX/Package/VML.pm | 2 +- lib/Excel/Writer/XLSX/Package/XMLwriter.pm | 2 +- lib/Excel/Writer/XLSX/Shape.pm | 2 +- lib/Excel/Writer/XLSX/Utility.pm | 2 +- lib/Excel/Writer/XLSX/Workbook.pm | 2 +- lib/Excel/Writer/XLSX/Worksheet.pm | 2 +- 39 files changed, 139 insertions(+), 134 deletions(-) diff --git a/Changes b/Changes index fd3af2ee..37416786 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,11 @@ Revision history for Perl module Excel::Writer::XLSX. ! Bug fix. +1.13 2024-10-21 + + ! Cleaned up release tarball to remove editor dot files. + + 1.13 2024-10-13 ! Fixed issue with html color for border colors. diff --git a/README b/README index ae527ba5..d4a24d2b 100644 --- a/README +++ b/README @@ -71,7 +71,7 @@ INSTALLATION Unzip and untar the module as follows: - tar -zxvf Excel-Writer-XLSX-1.13.tar.gz + tar -zxvf Excel-Writer-XLSX-1.14.tar.gz The module can be installed using the standard Perl procedure: diff --git a/lib/Excel/Writer/XLSX.pm b/lib/Excel/Writer/XLSX.pm index a902f376..2b34045f 100644 --- a/lib/Excel/Writer/XLSX.pm +++ b/lib/Excel/Writer/XLSX.pm @@ -20,7 +20,7 @@ use Exporter; use Excel::Writer::XLSX::Workbook; our @ISA = qw(Excel::Writer::XLSX::Workbook Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart.pm b/lib/Excel/Writer/XLSX/Chart.pm index 499262a4..48c62707 100644 --- a/lib/Excel/Writer/XLSX/Chart.pm +++ b/lib/Excel/Writer/XLSX/Chart.pm @@ -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.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Area.pm b/lib/Excel/Writer/XLSX/Chart/Area.pm index 05e0a8d5..06deff20 100644 --- a/lib/Excel/Writer/XLSX/Chart/Area.pm +++ b/lib/Excel/Writer/XLSX/Chart/Area.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Bar.pm b/lib/Excel/Writer/XLSX/Chart/Bar.pm index d9a2d599..f0366195 100644 --- a/lib/Excel/Writer/XLSX/Chart/Bar.pm +++ b/lib/Excel/Writer/XLSX/Chart/Bar.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Column.pm b/lib/Excel/Writer/XLSX/Chart/Column.pm index 64e4642f..717437cd 100644 --- a/lib/Excel/Writer/XLSX/Chart/Column.pm +++ b/lib/Excel/Writer/XLSX/Chart/Column.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Doughnut.pm b/lib/Excel/Writer/XLSX/Chart/Doughnut.pm index e5d09f2b..95eb921a 100644 --- a/lib/Excel/Writer/XLSX/Chart/Doughnut.pm +++ b/lib/Excel/Writer/XLSX/Chart/Doughnut.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart::Pie; our @ISA = qw(Excel::Writer::XLSX::Chart::Pie); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Line.pm b/lib/Excel/Writer/XLSX/Chart/Line.pm index 97f9aa2d..893b359f 100644 --- a/lib/Excel/Writer/XLSX/Chart/Line.pm +++ b/lib/Excel/Writer/XLSX/Chart/Line.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Pie.pm b/lib/Excel/Writer/XLSX/Chart/Pie.pm index f94a7ef6..168a0312 100644 --- a/lib/Excel/Writer/XLSX/Chart/Pie.pm +++ b/lib/Excel/Writer/XLSX/Chart/Pie.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Radar.pm b/lib/Excel/Writer/XLSX/Chart/Radar.pm index 0fc86a94..16d6bb09 100644 --- a/lib/Excel/Writer/XLSX/Chart/Radar.pm +++ b/lib/Excel/Writer/XLSX/Chart/Radar.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Scatter.pm b/lib/Excel/Writer/XLSX/Chart/Scatter.pm index 52374541..01a1a9d9 100644 --- a/lib/Excel/Writer/XLSX/Chart/Scatter.pm +++ b/lib/Excel/Writer/XLSX/Chart/Scatter.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chart/Stock.pm b/lib/Excel/Writer/XLSX/Chart/Stock.pm index dba85956..966d3194 100644 --- a/lib/Excel/Writer/XLSX/Chart/Stock.pm +++ b/lib/Excel/Writer/XLSX/Chart/Stock.pm @@ -24,7 +24,7 @@ use Carp; use Excel::Writer::XLSX::Chart; our @ISA = qw(Excel::Writer::XLSX::Chart); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Chartsheet.pm b/lib/Excel/Writer/XLSX/Chartsheet.pm index ed11e0e8..6cd577d6 100644 --- a/lib/Excel/Writer/XLSX/Chartsheet.pm +++ b/lib/Excel/Writer/XLSX/Chartsheet.pm @@ -22,7 +22,7 @@ use Exporter; use Excel::Writer::XLSX::Worksheet; our @ISA = qw(Excel::Writer::XLSX::Worksheet); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Drawing.pm b/lib/Excel/Writer/XLSX/Drawing.pm index 1470ced5..6eae13e1 100644 --- a/lib/Excel/Writer/XLSX/Drawing.pm +++ b/lib/Excel/Writer/XLSX/Drawing.pm @@ -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.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Examples.pm b/lib/Excel/Writer/XLSX/Examples.pm index 6f10f108..2619fb70 100644 --- a/lib/Excel/Writer/XLSX/Examples.pm +++ b/lib/Excel/Writer/XLSX/Examples.pm @@ -17,7 +17,7 @@ package Excel::Writer::XLSX::Examples; use strict; use warnings; -our $VERSION = '1.13'; +our $VERSION = '1.14'; 1; @@ -305,7 +305,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: bug_report.pl @@ -461,7 +461,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: demo.pl @@ -603,7 +603,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: formats.pl @@ -1148,7 +1148,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: regions.pl @@ -1223,7 +1223,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: stats.pl @@ -1320,7 +1320,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: autofit.pl @@ -1382,7 +1382,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: autofilter.pl @@ -1720,7 +1720,7 @@ Source code for this example: East Grape 6000 February -Download this example: L +Download this example: L =head2 Example: array_formula.pl @@ -1781,7 +1781,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: cgi.pl @@ -1862,7 +1862,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_area.pl @@ -2017,7 +2017,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_bar.pl @@ -2172,7 +2172,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_column.pl @@ -2327,7 +2327,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_line.pl @@ -2482,7 +2482,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_pie.pl @@ -2620,7 +2620,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_doughnut.pl @@ -2782,7 +2782,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_radar.pl @@ -2931,7 +2931,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_scatter.pl @@ -3163,7 +3163,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_secondary_axis.pl @@ -3245,7 +3245,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_combined.pl @@ -3374,7 +3374,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_pareto.pl @@ -3477,7 +3477,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_stock.pl @@ -3572,7 +3572,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_data_table.pl @@ -3693,7 +3693,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_data_tools.pl @@ -3936,7 +3936,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: chart_data_labels.pl @@ -4273,7 +4273,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_clustered.pl @@ -4355,7 +4355,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_styles.pl @@ -4430,7 +4430,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: chart_gauge.pl @@ -4525,7 +4525,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later $workbook->close(); -Download this example: L +Download this example: L =head2 Example: colors.pl @@ -4712,7 +4712,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: comments1.pl @@ -4769,7 +4769,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: comments2.pl @@ -5147,7 +5147,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: conditional_format.pl @@ -5617,7 +5617,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: data_validate.pl @@ -5959,7 +5959,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: date_time.pl @@ -6077,7 +6077,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: defined_name.pl @@ -6144,7 +6144,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: diag_border.pl @@ -6209,7 +6209,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: dynamic_arrays.pl @@ -6493,7 +6493,7 @@ examples mirror the examples in the Excel documentation on these functions. __END__ -Download this example: L +Download this example: L =head2 Example: embedded_images.pl @@ -6542,7 +6542,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later $workbook->close(); -Download this example: L +Download this example: L =head2 Example: filehandle.pl @@ -6675,7 +6675,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: headers.pl @@ -6870,7 +6870,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: hide_row_col.pl @@ -6936,7 +6936,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: hide_sheet.pl @@ -6992,7 +6992,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: hyperlink1.pl @@ -7072,7 +7072,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: hyperlink2.pl @@ -7239,7 +7239,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: indent.pl @@ -7295,7 +7295,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: ignore_errors.pl @@ -7349,7 +7349,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: lambda.pl @@ -7402,7 +7402,7 @@ if you are subscribed to the Microsoft Office Beta program. __END__ -Download this example: L +Download this example: L =head2 Example: macros.pl @@ -7477,7 +7477,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge1.pl @@ -7546,7 +7546,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge2.pl @@ -7624,7 +7624,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge3.pl @@ -7696,7 +7696,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge4.pl @@ -7812,7 +7812,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge5.pl @@ -7916,7 +7916,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: merge6.pl @@ -7996,7 +7996,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: mod_perl1.pl @@ -8121,7 +8121,7 @@ The PerlHandler name above and the package name below *have* to match. 1; -Download this example: L +Download this example: L =head2 Example: mod_perl2.pl @@ -8249,7 +8249,7 @@ The PerlResponseHandler must match the package name below. 1; -Download this example: L +Download this example: L =head2 Example: outline.pl @@ -8582,7 +8582,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: outline_collapsed.pl @@ -8823,7 +8823,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: panes.pl @@ -8983,7 +8983,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: properties.pl @@ -9043,7 +9043,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: protection.pl @@ -9113,7 +9113,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: rich_strings.pl @@ -9182,7 +9182,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: right_to_left.pl @@ -9235,7 +9235,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: sales.pl @@ -9363,7 +9363,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: shape1.pl @@ -9422,7 +9422,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape2.pl @@ -9501,7 +9501,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape3.pl @@ -9559,7 +9559,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape4.pl @@ -9641,7 +9641,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape5.pl @@ -9707,7 +9707,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape6.pl @@ -9773,7 +9773,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: shape7.pl @@ -9868,7 +9868,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: shape8.pl @@ -9962,7 +9962,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: shape_all.pl @@ -10231,7 +10231,7 @@ Source code for this example: Tabs squareTabs -Download this example: L +Download this example: L =head2 Example: sparklines1.pl @@ -10324,7 +10324,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: sparklines2.pl @@ -10756,7 +10756,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: stats_ext.pl @@ -10863,7 +10863,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: stocks.pl @@ -10969,7 +10969,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: watermark.pl @@ -11012,7 +11012,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: background.pl @@ -11048,7 +11048,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later __END__ -Download this example: L +Download this example: L =head2 Example: tab_colors.pl @@ -11101,7 +11101,7 @@ Source code for this example: __END__ -Download this example: L +Download this example: L =head2 Example: tables.pl @@ -11534,7 +11534,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: write_handler1.pl @@ -11627,7 +11627,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: write_handler2.pl @@ -11729,7 +11729,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: write_handler3.pl @@ -11823,7 +11823,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: write_handler4.pl @@ -11957,7 +11957,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: write_to_scalar.pl @@ -12010,7 +12010,7 @@ SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later -Download this example: L +Download this example: L =head2 Example: unicode_2022_jp.pl @@ -12080,7 +12080,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_8859_11.pl @@ -12150,7 +12150,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_8859_7.pl @@ -12220,7 +12220,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_big5.pl @@ -12290,7 +12290,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_cp1251.pl @@ -12360,7 +12360,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_cp1256.pl @@ -12430,7 +12430,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_cyrillic.pl @@ -12505,7 +12505,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_koi8r.pl @@ -12575,7 +12575,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_polish_utf8.pl @@ -12645,7 +12645,7 @@ Source code for this example: -Download this example: L +Download this example: L =head2 Example: unicode_shift_jis.pl @@ -12715,7 +12715,7 @@ Source code for this example: -Download this example: L +Download this example: L =head1 AUTHOR diff --git a/lib/Excel/Writer/XLSX/Format.pm b/lib/Excel/Writer/XLSX/Format.pm index 0bf0ea77..b6abb010 100644 --- a/lib/Excel/Writer/XLSX/Format.pm +++ b/lib/Excel/Writer/XLSX/Format.pm @@ -22,7 +22,7 @@ use Carp; our @ISA = qw(Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; our $AUTOLOAD; diff --git a/lib/Excel/Writer/XLSX/Package/App.pm b/lib/Excel/Writer/XLSX/Package/App.pm index e7db7160..35c3210d 100644 --- a/lib/Excel/Writer/XLSX/Package/App.pm +++ b/lib/Excel/Writer/XLSX/Package/App.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Comments.pm b/lib/Excel/Writer/XLSX/Package/Comments.pm index b7052cce..db097377 100644 --- a/lib/Excel/Writer/XLSX/Package/Comments.pm +++ b/lib/Excel/Writer/XLSX/Package/Comments.pm @@ -24,7 +24,7 @@ use Excel::Writer::XLSX::Utility qw(xl_rowcol_to_cell); our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/ContentTypes.pm b/lib/Excel/Writer/XLSX/Package/ContentTypes.pm index 0a3daace..933ffdb0 100644 --- a/lib/Excel/Writer/XLSX/Package/ContentTypes.pm +++ b/lib/Excel/Writer/XLSX/Package/ContentTypes.pm @@ -23,7 +23,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Core.pm b/lib/Excel/Writer/XLSX/Package/Core.pm index e024a3d1..aff8fe4a 100644 --- a/lib/Excel/Writer/XLSX/Package/Core.pm +++ b/lib/Excel/Writer/XLSX/Package/Core.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Custom.pm b/lib/Excel/Writer/XLSX/Package/Custom.pm index 4a94f7f3..624ebafc 100644 --- a/lib/Excel/Writer/XLSX/Package/Custom.pm +++ b/lib/Excel/Writer/XLSX/Package/Custom.pm @@ -23,7 +23,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Metadata.pm b/lib/Excel/Writer/XLSX/Package/Metadata.pm index deba3b29..34b7d777 100644 --- a/lib/Excel/Writer/XLSX/Package/Metadata.pm +++ b/lib/Excel/Writer/XLSX/Package/Metadata.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Packager.pm b/lib/Excel/Writer/XLSX/Package/Packager.pm index bcf6271c..df70774e 100644 --- a/lib/Excel/Writer/XLSX/Package/Packager.pm +++ b/lib/Excel/Writer/XLSX/Package/Packager.pm @@ -39,7 +39,7 @@ use Excel::Writer::XLSX::Package::Theme; use Excel::Writer::XLSX::Package::VML; our @ISA = qw(Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Relationships.pm b/lib/Excel/Writer/XLSX/Package/Relationships.pm index 28f3177f..5aff663b 100644 --- a/lib/Excel/Writer/XLSX/Package/Relationships.pm +++ b/lib/Excel/Writer/XLSX/Package/Relationships.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; our $schema_root = 'http://schemas.openxmlformats.org'; our $package_schema = $schema_root . '/package/2006/relationships'; diff --git a/lib/Excel/Writer/XLSX/Package/RichValue.pm b/lib/Excel/Writer/XLSX/Package/RichValue.pm index 67f81e12..e7e094ac 100644 --- a/lib/Excel/Writer/XLSX/Package/RichValue.pm +++ b/lib/Excel/Writer/XLSX/Package/RichValue.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/RichValueRel.pm b/lib/Excel/Writer/XLSX/Package/RichValueRel.pm index 57294639..8a473064 100644 --- a/lib/Excel/Writer/XLSX/Package/RichValueRel.pm +++ b/lib/Excel/Writer/XLSX/Package/RichValueRel.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/RichValueStructure.pm b/lib/Excel/Writer/XLSX/Package/RichValueStructure.pm index dd170833..18f588e3 100644 --- a/lib/Excel/Writer/XLSX/Package/RichValueStructure.pm +++ b/lib/Excel/Writer/XLSX/Package/RichValueStructure.pm @@ -23,7 +23,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/RichValueTypes.pm b/lib/Excel/Writer/XLSX/Package/RichValueTypes.pm index a3ebee38..36cefe29 100644 --- a/lib/Excel/Writer/XLSX/Package/RichValueTypes.pm +++ b/lib/Excel/Writer/XLSX/Package/RichValueTypes.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/SharedStrings.pm b/lib/Excel/Writer/XLSX/Package/SharedStrings.pm index da7b6c92..5e9301de 100644 --- a/lib/Excel/Writer/XLSX/Package/SharedStrings.pm +++ b/lib/Excel/Writer/XLSX/Package/SharedStrings.pm @@ -23,7 +23,7 @@ use Encode; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Styles.pm b/lib/Excel/Writer/XLSX/Package/Styles.pm index 76621a69..1de31a7c 100644 --- a/lib/Excel/Writer/XLSX/Package/Styles.pm +++ b/lib/Excel/Writer/XLSX/Package/Styles.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Table.pm b/lib/Excel/Writer/XLSX/Package/Table.pm index 1905221e..49dfb736 100644 --- a/lib/Excel/Writer/XLSX/Package/Table.pm +++ b/lib/Excel/Writer/XLSX/Package/Table.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/Theme.pm b/lib/Excel/Writer/XLSX/Package/Theme.pm index 7250f840..57080eea 100644 --- a/lib/Excel/Writer/XLSX/Package/Theme.pm +++ b/lib/Excel/Writer/XLSX/Package/Theme.pm @@ -32,7 +32,7 @@ use IO::File; use utf8; our @ISA = qw(Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/VML.pm b/lib/Excel/Writer/XLSX/Package/VML.pm index 16ca3ef0..3f519bd5 100644 --- a/lib/Excel/Writer/XLSX/Package/VML.pm +++ b/lib/Excel/Writer/XLSX/Package/VML.pm @@ -22,7 +22,7 @@ use Carp; use Excel::Writer::XLSX::Package::XMLwriter; our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Package/XMLwriter.pm b/lib/Excel/Writer/XLSX/Package/XMLwriter.pm index aef6ecce..a0089af1 100644 --- a/lib/Excel/Writer/XLSX/Package/XMLwriter.pm +++ b/lib/Excel/Writer/XLSX/Package/XMLwriter.pm @@ -23,7 +23,7 @@ use Carp; use IO::File; our @ISA = qw(Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; # # NOTE: this module is a light weight re-implementation of XML::Writer. See diff --git a/lib/Excel/Writer/XLSX/Shape.pm b/lib/Excel/Writer/XLSX/Shape.pm index 7a207f4d..14d859e4 100644 --- a/lib/Excel/Writer/XLSX/Shape.pm +++ b/lib/Excel/Writer/XLSX/Shape.pm @@ -22,7 +22,7 @@ use Carp; use Exporter; our @ISA = qw(Exporter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; our $AUTOLOAD; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Utility.pm b/lib/Excel/Writer/XLSX/Utility.pm index ac53f9fe..b8080f48 100644 --- a/lib/Excel/Writer/XLSX/Utility.pm +++ b/lib/Excel/Writer/XLSX/Utility.pm @@ -27,7 +27,7 @@ use Digest::MD5 qw(md5_hex); use File::Basename 'fileparse'; -our $VERSION = '1.13'; +our $VERSION = '1.14'; # Row and column functions my @rowcol = qw( diff --git a/lib/Excel/Writer/XLSX/Workbook.pm b/lib/Excel/Writer/XLSX/Workbook.pm index 2bb68fef..7d1e30cb 100644 --- a/lib/Excel/Writer/XLSX/Workbook.pm +++ b/lib/Excel/Writer/XLSX/Workbook.pm @@ -36,7 +36,7 @@ use Excel::Writer::XLSX::Utility qw(xl_cell_to_rowcol get_image_properties); our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ############################################################################### diff --git a/lib/Excel/Writer/XLSX/Worksheet.pm b/lib/Excel/Writer/XLSX/Worksheet.pm index 59ead49c..345b8501 100644 --- a/lib/Excel/Writer/XLSX/Worksheet.pm +++ b/lib/Excel/Writer/XLSX/Worksheet.pm @@ -34,7 +34,7 @@ use Excel::Writer::XLSX::Utility qw(xl_cell_to_rowcol get_image_properties); our @ISA = qw(Excel::Writer::XLSX::Package::XMLwriter); -our $VERSION = '1.13'; +our $VERSION = '1.14'; ###############################################################################