1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
#================================================= -*- indented-text -*-
#
# Changes
#
# DESCRIPTION
# Revision history for the Template Toolkit Latex plugin.
#
# AUTHOR
# Chris Travers <chris.travers@gmail.com>
#
#
#------------------------------------------------------------------------
#========================================================================
#------------------------------------------------------------------------
# Version 3.12
# -----------------------------------------------------------------------
* Declare minimum Perl version to be 5.10 (in Makefile.PL)
#------------------------------------------------------------------------
# Version 3.11
# -----------------------------------------------------------------------
* Enclose version number in quotes (3.10 was recognized as 3.1)
#------------------------------------------------------------------------
# Version 3.10
# -----------------------------------------------------------------------
* Fix spelling errors
* Fix rt.cpan.org#106894: Include path incorrectly determined with
coderef for INCLUDE_PATH
#------------------------------------------------------------------------
# Version 3.09
# -----------------------------------------------------------------------
* Add 3.08 Changelog item
#------------------------------------------------------------------------
# Version 3.08
# -----------------------------------------------------------------------
* Fixed test case
* Updated README and MANIFEST files
#------------------------------------------------------------------------
# Version 3.07
# -----------------------------------------------------------------------
* Tests no longer obfuscate the fact they didn't run
* Tests now explicitly run pdflatex or xelatex (adjusting to LaTeX::Driver)
#------------------------------------------------------------------------
# Version 3.06
# -----------------------------------------------------------------------
* Makefile now generates without user input
* Test cases should now run on all smoketesters.
#------------------------------------------------------------------------
# Version 3.03 to 03.05
#------------------------------------------------------------------------
* Minor packaging fixes which correct issues relating to CPAN indexing as
a co-committer. No code changes.
#------------------------------------------------------------------------
# Version 3.02.01 - 2014-02-25
#------------------------------------------------------------------------
* Fixed test case failures based on differing escape returns from
LaTeX::Encode
#------------------------------------------------------------------------
# Version 3.02 - 2009-03-12
#------------------------------------------------------------------------
* fixed skip_all call (use Template::Test rather than Test::More -
despite Template::Test being incompatible with TAP)
#------------------------------------------------------------------------
# Version 3.01 - 2009-03-11
#------------------------------------------------------------------------
* tidied up tests to avoid spurious failures (skip_all if the 'dvitype'
program is not available)
* expanded documentation
#------------------------------------------------------------------------
# Version 3.00 - 2009-03-09
#------------------------------------------------------------------------
* first non-developer release - no changes from 3.00_05
#------------------------------------------------------------------------
# Version 3.00_05 - 2007-10-13
#------------------------------------------------------------------------
* Removed "use Template" from Makefile.PL as that was unnecessary and
was causing build failures where Template was not already installed.
#------------------------------------------------------------------------
# Version 3.00_04 - 2007-10-13
#------------------------------------------------------------------------
* Added a test script for the "table" method
* Updated dependency on LaTeX::Driver to 0.07 as 0.06 failed to build
on cpantesters machines
* mark 11-plugin-errors.t as all skipped, as the error messages that
are checked for are not what the driver module produces - I need to
review this test script and change some of the individual checks to
do meaningful things
#------------------------------------------------------------------------
# Version 3.00_03 - 2007-10-03
#------------------------------------------------------------------------
* Added a "table" method to the plugin to interface to the
LaTeX::Table module. This will generate the LaTeX commands to
format a table from raw data.
#------------------------------------------------------------------------
# Version 3.00_02 - 2007-10-03
#------------------------------------------------------------------------
* Restructured again so that Template::Latex calls the
Template::Plugin::Latex module, which in turn builds on
LaTeX::Driver to format the document. (Removed the
Template::Latex::Paths module as the paths are now held in the
LaTeX::Driver module.)
* Expanded the test suite and the documentaton.
#------------------------------------------------------------------------
# Version 3.00_01 - 2007-09-13
#------------------------------------------------------------------------
* I have restructured the plugin fairly extensively, and added
radically new features, so this release has a new major version
number, i.e. 3.x.
* Restructured Template::Latex to run latex multiple times if
necessary and also to run bibtex if citations are detected and
makeindex if indexing is detected.
* The TEXINPUTS environment variable is set up to include the original
directory so that include files can be found there.
* Change the format of the commands passed to system() so that the cd
into the temporary directory is done in the command rather than in
the module. That way the module does not need to change back to the
original directory, simplifying error handling.
(The Win32 idiom is: 'cmd /c "cd DIR && COMMAND"')
* Split the driver code in Template::Latex out into its own module
(Template::Latex::Driver).
* The LaTeX macro \TTLATEX is defined when latex or pdflatex is run
* The static filter detex is defined by the plugin
#------------------------------------------------------------------------
# Version 2.17 - 2006-06-07
#------------------------------------------------------------------------
* Changes dependency on Template to version 2.15 as version 2.16 of
Template, which was specified as the dependency has not been relased.
* Added files: Changes (this file) and TODO
#------------------------------------------------------------------------
# Version 2.16 - 2006-05-31
#------------------------------------------------------------------------
First release of the plugin as a separate distribution to the core
Template Toolkit distribution. New maintainer: Andrew Ford.
|