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
|
zoem (04-090-1) unstable; urgency=low
* Some extra notes on backwards incompatible upstream changes, introduced
in zoem 04-072 and zoem 04-090. The \begin syntax has changed. This
will most likely hit you in the \begin{itemize} and \begin{faqsec}
contructs: these are the most popular ones.
In zoem <= 04-061 you could write:
\begin{itemize{
{contiguous}{1}
{compact}{1}
{type}{mark}
}
}
while in zoem >= 04-090, you should write:
\begin{itemize}{
{contiguous}{1}
{compact}{1}
{type}{mark}
}
In zoem <= 04-061 you could write:
\begin{faqsec{debian gnu}{How does the Debian project fit in or
compare with the Free Software Foundation's GNU project?}}
while in zoem >= 04-090, you should write:
\begin{faqsec}{
{ref}{debian gnu}
{cap}{How does the Debian project fit in or compare with the Free
Software Foundation's GNU project?}
}
Currently, some old style constructs are still supported. This support
however will be phased out soon.
See the zoem-04-090 and zoem-04-072 upstream changelog entries for
more details.
-- Joost van Baal <joostvb@debian.org> Wed, 07 Apr 2004 10:17:53 +0200
|