]> git.lyx.org Git - features.git/blob - development/FORMAT
Fix # 8414: Use the noweb module instead of literate-* article layouts
[features.git] / development / FORMAT
1 LyX file-format changes
2 -----------------------
3
4 Please keep the entries informative enough, i.e. try to indicate what
5 changes happened in particular if possible. A good example would be 
6 2010-01-10 entry. 
7
8 Please also indicate the revision at which your change was committed. 
9 This will help later people understand what you did, especially as 
10 adjustments are made to tex2lyx and bugs are fixed in lyx2lyx.
11
12 -----------------------
13
14
15 2012-11-25 Kayvan Sylvan <kayvan@sylvan.com>
16         * Format incremented to 448: Change Noweb literate style Scrap
17         to Chunk to be consistent with all the other literate tools
18         (including noweb!) and add the needed preamble bits to Noweb module
19         support, also remove the literate-* layouts.
20
21 2012-11-24 Uwe Stöhr <uwestoehr@web.de>
22         * Format incremented to 447: IEEEtran layout revision.
23
24 2012-11-19 Jürgen Spitzmüller <spitz@lyx.org>
25         * Format incremented to 446: Change of InsetArgument syntax.
26           InsetArgument now has a numeric identifier which determines
27           its position (in the LaTeX output):
28             \begin_inset Argument 1
29             ...
30             \end_inset
31           Pre-2.1 documents' arguments all get the number "999", and then
32           InsetArgument::updateBuffer() computes the correct number.
33           This is because lyx2lyx has no access to layouts and hence does
34           not know how many optional arguments a layout can have (if a command
35           has two optional and one mandatory arguments and only one optional
36           is actually given, the mandatory arg still must get number 3).
37
38 2012-10-20 Liviu Andronic <landronimirc@gmail.com>
39         * Format incremented to 445: support for the URW Classico font,
40           an Optima clone.
41           - \renewcommand{\sffamily}{uop} > \font_sans uop
42
43 2012-09-25 Jürgen Spitzmüller <spitz@lyx.org>
44         * Format incremented to 444: Support for the Biolinum LaTeX font.
45           - \usepackage{biolinum-type1} > \font_sans biolinum
46              - [lf], [lining] > \font_osf false
47              - [osf], [oldstyle], no option > \font_osf true
48           - \usepackage{libertine-legacy} or
49             \usepackage{libertine} > \font_sans biolinum
50              - [nf], no option > \font_osf false
51              - [osf] > \font_osf true
52
53 2012-09-24 Jürgen Spitzmüller <spitz@lyx.org>
54         * Format incremented to 443: basic support for unicode-math:
55           Empty file format change (in case it turns out we need to
56           do something).
57
58 2012-09-23 Jürgen Spitzmüller <spitz@lyx.org>
59         * Format incremented to 442: support for the newtxmath fonts:
60           - \usepackage{newtxmath} > \font_math newtxmath
61           - \usepackage[libertine]{newtxmath} > \font_math libertine-ntxm
62           - \usepackage[minion]{newtxmath} > \font_math minion-ntxm
63
64 2012-09-23 Jürgen Spitzmüller <spitz@lyx.org>
65         * Format incremented to 441:
66           - rename fonts: mdbch > md-charter, mdput > md-utopia, mdugm > md-garamond
67           - add support for the mathdesign fonts without loading mathfonts:
68             \renewcommand{\rmfamily}{mdbch} >  \font_roman md-charter
69                                                \font_math default
70             \renewcommand{\rmfamily}{mdput} >  \font_roman md-utopia
71                                                \font_math default
72             \renewcommand{\rmfamily}{mdugm} >  \font_roman md-garamond
73                                                \font_math default
74
75 2012-09-22 Jürgen Spitzmüller <spitz@lyx.org>
76         * Format incremented to 440:
77           Math (TeX) font UI.
78           New Buffer param "\font_math <value>",
79           supported values are:
80           * "auto": automatically adapt math font (the status quo ante).
81           * "default": use class default, i.e. prevent TeX font packages
82             from changing the math font, if possible:
83             \renewcommand{\rmdefault}{lmr} >      \font_roman lmodern
84                                                   \font_math default
85             \usepackage[onlytext,lf]{MinionPro} > \font_roman minionpro
86                                                   \font_math default
87             \usepackage[onlytext]{MinionPro} >    \font_roman minionpro
88                                                   \font_osf true
89                                                   \font_math default
90             \renewcommand{\rmdefault}{ppl} >      \font_roman palatino
91                                                   \font_math default
92             \renewcommand{\rmdefault}{pplj} >     \font_roman palatino
93                                                   \font_osf true
94                                                   \font_math default
95             \renewcommand{\rmdefault}{ptm} >      \font_roman times
96                                                   \font_math default
97             \renewcommand{\rmdefault}{futs} >     \font_roman utopia
98                                                   \font_math default
99             \renewcommand{\rmdefault}{futj} >     \font_roman utopia
100                                                   \font_osf true
101                                                   \font_math default
102           * "eulervm": use the eulervm package (\usepackage{eulervm}.
103
104 2012-09-19 Jürgen Spitzmüller <spitz@lyx.org>
105         * Format incremented to 439 
106           Support for the MinionPro LaTeX font.
107           - \usepackage{MinionPro} > \font_roman minionpro
108           - [osf], [oldstyle], no option > \font_osf true
109           - [lf], [lining] > \font_osf false
110
111 2012-08-23 Jürgen Spitzmüller <spitz@lyx.org>
112         * Format incremented to 438 
113           Support for some IPA macros that are not unicoded.
114           (1) tone symbols from tipa's "tone" subpackage:
115           -- \tone{51} => \IPAChar \tone{51}
116           -- \tone{15} => \IPAChar \tone{15}
117           -- \tone{45} => \IPAChar \tone{45}
118           -- \tone{12} => \IPAChar \tone{12}
119           -- \tone{454} => \IPAChar \tone{454}
120           (2) TIPA tie bars:
121           -- \toptiebar{<content>} =>
122               \begin_inset IPADeco toptiebar
123               status open
124
125               \begin_layout Plain Layout
126               <content>
127               \end_layout
128
129               \end_inset
130           -- \bottomtiebar{<content>} =>
131               \begin_inset IPADeco bottomtiebar
132               status open
133
134               \begin_layout Plain Layout
135               <content>
136               \end_layout
137
138               \end_inset
139
140 2012-08-19 Jürgen Spitzmüller <spitz@lyx.org>
141         * Format incremented to 437 
142           Support for the TeX Gyre LaTeX fonts.
143           - \usepackage{tgadventor} > \font_sans tgadventor
144           - \usepackage{tgbonum} > \font_roman tgbonum
145           - \usepackage{tgchorus} > \font_roman tgchorus
146           - \usepackage{tgcursor} > \font_typewriter tgcursor
147           - \usepackage{tgheros} > \font_sans tgheros
148           - \usepackage{tgpagella} > \font_roman tgpagella
149           - \usepackage{tgschola} > \font_roman tgschola
150           - \usepackage{tgtermes} > \font_roman tgtermes
151
152 2012-08-18 Jürgen Spitzmüller <spitz@lyx.org>
153         * Format incremented to 436 
154           Support for the mathdesign LaTeX fonts.
155           - \usepackage[mdbch]{mathdesign} > \font_roman md-charter
156           - \usepackage[mdput]{mathdesign} > \font_roman md-utopia
157           - \usepackage[mdugm]{mathdesign} > \font_roman md-garamond
158
159 2012-08-17 Jürgen Spitzmüller <spitz@lyx.org>
160         * Format incremented to 435 
161           Support for the txtt LaTeX font.
162           - \renewcommand{\ttdefault}{txtt} > \font_typewriter txtt
163
164 2012-08-17 Jürgen Spitzmüller <spitz@lyx.org>
165         * Format incremented to 434 
166           Support for the libertine LaTeX font.
167           - \usepackage{libertine-type1} > \font_roman libertine
168              - [lf], [lining] > \font_osf false
169              - [osf], [oldstyle], no option > \font_osf true
170           - \usepackage{libertine-legacy} or
171             \usepackage{libertine} > \font_roman libertine
172              - [nf], no option > \font_osf false
173              - [osf] > \font_osf true
174
175 2012-06-22 Uwe Stöhr <uwestoehr@web.de>
176         * Format incremented to 433 
177           switch the Armenian language support from ArmTeX to XeTeX/polyglossia
178
179 2012-06-08 Uwe Stöhr <uwestoehr@web.de>
180         * Format incremented to 432 
181           support for the document languages ancientgreek, coptic, divehi, hindi,
182           kurmanji, lao, marathi, occitan, sanskrit, syriac, tamil, telugu and urdu
183
184 2012-05-06 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
185         * Format incremented to 431
186           Add \use_package amssymb
187
188 2012-04-16 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
189         * Format incremented to 430
190           Support \lstlistoflistings in InsetTOC
191
192 2012-03-21 Uwe Stöhr <uwestoehr@web.de>
193         * Format incremented to 429
194           support for table rotation
195           (table option "rotate" specifies now a number with the rotation angle)
196
197 2012-03-16 Uwe Stöhr <uwestoehr@web.de>
198         * Format incremented to 428
199           support for table cell rotation
200           (table cell option "rotate" specifies now a number with the rotation angle)
201
202 2012-03-06 Jürgen Spitzmüller <spitz@lyx.org>
203         * Format incremented to 427
204           Add native TIPA inset.
205
206 2012-02-20 Uwe Stöhr <uwestoehr@web.de>
207         * Format incremented to 426 (r40784)
208           support for the verbatim environment
209           (added only a layout)
210
211 2012-01-23 Uwe Stöhr <uwestoehr@web.de>
212         * Format incremented to 425 (r40663)
213           support for the LaTeX-package cancel (fix bug 6819)
214
215 2012-01-09 Julien Rioux <jrioux@lyx.org>
216         * Format incremented to 424 (r40592)
217           New buffer param \cite_engine_type to specify the type of
218           citation labels being used, authoryear or numerical.
219
220 2012-01-05 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
221         * Format incremented to 423 (r40574)
222           support for the LaTeX-package mathtools (fix bug 7949)
223           New buffer param \use_package mathtools
224
225 2012-01-03 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
226         * Format incremented to 422 (r40563)
227           \use_amsmath 0/1/2    => \use_package amsmath 0/1/2
228           \use_esint 0/1/2      => \use_package esint 0/1/2
229           \use_mhchem 0/1/2     => \use_package mhchem 0/1/2
230           \use_mathdots 0/1/2   => \use_package mathdots 0/1/2
231           \use_undertilde 0/1/2 => \use_package undertilde 0/1/2
232
233 2011-12-18 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
234         * Format incremented to 421 (r40522)
235           The caption flag of longtable rows is no longer exclusive to the head
236           and foot flags, since captions can occur in any of the two heads and
237           two foots. Before, captions were implicitly in head or firsthead.
238           For Docbook and XHTML output the caption flag "wins" over head/foot.
239
240 2011-12-12 Julien Rioux <jrioux@lyx.org>
241         * Format incremented to 420 (r40484)
242           New buffer param \biblio_style to specify a document-wide
243           default bibliography style (BibTeX style for the moment).
244
245 2011-12-09 Uwe Stöhr <uwestoehr@web.de>
246         * Format incremented to 419 (r40452)
247           support for the document languages australian and newzealand
248
249 2011-12-08 Richard Heck <rgheck@lyx.org>
250         * Format incremented to 418 (r40427)
251           Introduce justification preference.
252
253 2011-11-07 Julien Rioux <jrioux@lyx.org>
254         * Format incremented to 417 (r39982 and r40155)
255           Rename the japanese encodings to names understood by pLaTeX.
256
257 2011-08-29 Uwe Stöhr <uwestoehr@web.de>
258         * Format incremented to 416 (r39557)
259           support for \negmedspace and \negthinspace outside of math
260           support for \hfill, \enspace, \hspace* and \hspace*{\fill} in math
261           No new InsetSpace parameters
262
263 2011-07-30 Uwe Stöhr <uwestoehr@web.de>
264         * Format incremented to 415 (r39464)
265           support for the LaTeX-package undertilde (fix bug 6622)
266           New buffer param \use_undertilde
267
268 2011-07-02 Pavel Sanda <sanda@lyx.org>
269         * Format incremented to 414 (r39367)
270           New InsetSpace param \textvisiblespace
271
272 2011-02-15 Richard Heck <rgheck@comcast.net>
273         * Format incremented to 413 (r37682)
274           New buffer param \html_css_as_file to control whether
275           CSS is output to header to to style file
276
277 2011-02-03 Edwin Leuven <e.leuven@gmail.com>
278         * Format incremented to 412 (r37471)
279           Support tabular* : add tabularwidth parameter to
280           tabular features
281
282 2011-02-03 Jürgen Spitzmüller <spitz@lyx.org>
283         * Format incremented to 411
284           New buffer param \language_package to allow per-document
285           language package selection (bug 2909).
286
287 2010-11-26 Richard Heck <rgheck@comcast.net>
288         * Format incremented to 410 (r36520)
289           Rename "\\begin_layout Labeling" to "\\begin_layout List"
290           in the KOMA (scr*) classes.
291
292 2010-11-26 Jürgen Spitzmüller <spitz@lyx.org>
293         * Format incremented to 409 (r36500)
294           Rename buffer param \use_xetex to \use_non_tex_fonts.
295
296 2010-11-21 Georg Baum  <Georg.Baum@post.rwth-aachen.de>
297         * Format incremented to 408 (r36424)
298           New inset for sub/superscripts:
299           script superscript
300           script subscript
301
302 2010-11-07 Uwe Stöhr <uwestoehr@web.de>
303         * Format incremented to 407 (r36182)
304           Support for vertical offset of multirow cells.
305           New tag "mroffset" for multirow cells with an offset.
306
307 2010-11-06 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
308         * Format incremented to 406 (r36163)
309           Proper ERT behaviour for normal layouts. Paragraph breaks 
310           generate single \n in latex output when ParbreakIsNewline
311           is true.
312
313 2010-10-23 Vincent van Ravesteijn <vfr@lyx.org>
314         * Format incremented to 405 (r36134)
315                 Author hash numbers.
316           The authors that are used in change tracking are
317           now identified in the file by a number that represents
318           the hash value of the name and email. In this way
319           collaboration using version control leads to way less
320           merge conflicts.
321
322 2010-10-13 Richard Heck <rgheck@comcast.net>
323         * Format incremented to 404 (r35623)
324           Support for refstyle package.
325           Changed the LaTeXCommand for InsetRef from "prettyref"
326           to "formatted", where "formatted" is now interprted
327           differently, depending upon whether the new buffer param
328           use_refstyle is true or false.
329
330 2010-10-12 Richard Heck <rgheck@comcast.net>
331         * Format incremented to 403 (r35608)
332           Renaming of flex insets.
333           Changed 
334             \begin_inset Flex TAG:Style 
335           to
336             \begin_inset Flex Style
337           where TAG is Custom, CharStyle, or Element
338
339 2010-10-11 Uwe Stöhr <uwestoehr@web.de>
340         * Format incremented to 402 (r35590)
341           No new or removed parameter, used to insert a
342           clear(double)page before BibTeX inset.
343
344 2010-09-19 Ronen Abravanel <ronena@gmail.com>
345         * Format incremented to 401 (r35455)
346           Support for Feynman diagrams
347           New math command \Diagram
348
349 2010-09-07 Uwe Stöhr <uwestoehr@web.de>
350         * Format incremented to 400 (r35299)
351           Support for the LaTeX-command \rule.
352           New CommandInset "line".
353
354 2010-08-31 Uwe Stöhr <uwestoehr@web.de>
355         * Format incremented to 399 (r35241)
356           Support for the LaTeX-package mathdots.
357           New parameter \use_mathdots.
358
359 2010-07-17 Uwe Stöhr <uwestoehr@web.de>
360         * Format incremented to 398 (r34941)
361           Support \mathscr.
362           No new parameter but the mathrsfs package will be loaded.
363
364 2010-07-16 Richard Heck <rgheck@comcast.net>
365         * Format incremented to 397 (r34920)
366           Remove Nameref support
367
368 2010-07-13 Richard Heck <rgheck@comcast.net>
369         * Format incremented to 396 (r34884)
370           nameref support
371                 new commands nameref and Nameref for InsetRef
372
373 2010-07-13 Uwe Stöhr <uwestoehr@web.de>
374         * Format incremented to 395 (r34883) 
375           Support for ISO C-series paper format.
376           New parameter \papersize cxpaper with (x = 0 - 6).
377
378 2010-07-03 Uwe Stöhr <uwestoehr@web.de>
379         * Format incremented to 394 (r34748)
380           Support for makebox.
381           New box parameter \use_makebox.
382
383 2010-06-07 Richard Heck <rgheck@comcast.net>
384         * Format incremented to 393 (r34619)
385                 Renaming in LyX format: \begin_inset OptArg becomes
386           \begin_inset Argument.        
387
388 2010-06-07 Richard Heck <rgheck@comcast.net>
389         * Format incremented to 392 (r34615)
390           Dummy format change permitting Beamer files to be converted to 
391                 a new, more useful format.
392
393 2010-06-05 Edwin Leuven <e.leuven@uva.nl>
394         * Format incremented to 391 (r34598)
395           Added support for decimal alignment in tables.
396
397 2010-05-25 Pavel Sanda <sanda@lyx.org>
398         * Format incremented to 390: support for ouput sync (forward/reverse)
399         search. New boolean \forward_search and string \forward_macro.
400
401 2010-05-24 Richard Heck <rgheck@comcast.net>
402         * Format incremented to 389: remove quotes from html_latex_* params.
403
404 2010-05-18 Uwe Stöhr <uwestoehr@web.de>
405         * Format incremented to 388: support for page sizes A0-3, A6, B0-3, B6
406           and JIS B0-6
407
408 2010-04-21 Richard heck <rgheck@comcast.net>
409         * Format incremented to 387: New options for XHTML math output.
410           New BufferParams: html_math_img_scale, html_latex_start,
411           html_latex_end.
412
413 2010-04-17 Richard heck <rgheck@comcast.net>
414         * Format incremented to 386: LyX version for InsetInfo:
415           new parameters: type  "lyxinfo", arg   "version".
416
417 2010-04-08 Uwe Stöhr <uwestoehr@web.de>
418         * Format incremented to 385: support to change the background color
419           for shaded boxes: new buffer parameter \boxbgcolor
420
421 2010-04-03 Uwe Stöhr <uwestoehr@web.de>
422         * Format incremented to 384: support to specify a document-wide
423           font color: new buffer parameter \fontcolor
424
425 2010-03-31 Uwe Stöhr <uwestoehr@web.de>
426         * Format incremented to 383: support for Turkmen
427
428 2010-03-31 Uwe Stöhr <uwestoehr@web.de>
429         * Format incremented to 382: support to change the font color
430           for greyed-out notes: new buffer parameter \notefontcolor
431
432 2010-03-28: Vincent van Ravesteijn <vfr@lyx.org>
433         * Format incremented to 381: support for new parameters
434           for \xymatrix: \xymatrix@!0, \xymatrix!R and \xymatrix!C.
435
436 2010-03-28: Vincent van Ravesteijn <vfr@lyx.org>
437         * Format incremented to 380: introduction of InsetPreview.
438         
439 2010-03-18: Richard Heck <rgheck@comcast.net>
440         * Format incremented to 379: revise format 374
441           Replace boolean \html_use_mathml with \html_math_output,
442           which at the moment can be: MathML, HTML, Images, or LaTeX.
443
444 2010-02-12 Pavel Sanda <sanda@lyx.org>
445         * Format incremented to 378: support for revision InsetInfo.
446           Various "vcs-*" strings could be argument of arg parameter
447           in InsetInfo. This entry is a safety measure, no lyx2lyx
448           conversion is needed in fact.
449
450 2010-02-11 Uwe Stöhr <uwestoehr@web.de> and Edwin Leuven <e.leuven@uva.nl>
451         * Format incremented to 377: support for multirow cells in
452           tables
453
454 2010-01-10 Jürgen Spitzmüller <spitz@lyx.org>
455         * Format incremented to 376: new buffer param
456           \maintain_unincluded_children. If true, the aux files of
457           non-included children (with \includeonly) are updated to
458           keep the counters and refs correct.
459
460 2010-01-06 Jürgen Spitzmüller <spitz@lyx.org>
461         * Format incremented to 375: add support for \includeonly
462           This adds a new buffer param list of relative filenames
463           which are output as \includeonly arguments, like this:
464           \begin_includeonly
465           child1.lyx
466           child2.lyx
467           \end_includeonly
468
469 2009-12-30 Richard Heck <rgheck@comcast.net>
470         * Format incremented to 374: add html output options.
471                 \html_use_mathml (boolean): whether to use MathML or images
472                 \html_be_strict (boolean): whether to be XHTML 1.1 compliant
473
474 2009-12-07 Jürgen Spitzmüller <spitz@lyx.org>
475         * Format incremented to 373: merge g-brief-de and g-brief-en
476           classes into one g-brief class.
477           All German layout names are replaced by English ones, the
478           two classes are renamed to g-brief.
479
480 2009-11-29 Jürgen Spitzmüller <spitz@lyx.org>
481         * Format incremented to 372: new buffer param fontencoding.
482           This param holds a buffer-specific fontencoding (argument
483           of the fontenc package).
484           Possible values:
485           - global: use lyxrc.fontenc [this is the default]
486           - default: do not load the fontenc package at all
487           - <ENC>: real encodings such as "T1". Multiple encodings
488             can be separated by comma.
489
490 2009-11-11 Uwe Stöhr <uwestoehr@web.de>
491         * Format incremented to 371: add option to suppress the LaTeX
492           package mhchem.
493
494 2009-07-20 Uwe Stöhr <uwestoehr@web.de>
495         * Format incremented to 370: introduce a document option to
496           suppress the default date.
497
498 2009-07-22 Vincent van Ravesteijn <vfr@lyx.org>
499         * Format incremented to 369: add the author ids to the list of
500           authors and let the numbering start with 1 in stead of 0.     
501
502 2009-07-21 Jürgen Spitzmüller <spitz@lyx.org>, Uwe Stöhr <uwestoehr@web.de>
503         * Format incremented to 368: allow to use glue lengths for
504           horizontal spaces.
505           We just revert hspaces with glue lengths to ERT, since the
506           inset didn't support them prior to format 368.
507           No explicit conversion.
508
509 2009-07-20 Uwe Stöhr <uwestoehr@web.de>
510         * Format incremented to 367: allow to use percent lengths for
511           vertical and horizontal spaces.
512
513 2009-07-20 Uwe Stöhr <uwestoehr@web.de>
514         * Format incremented to 366: allow to use percent lengths for the
515           paragraph skip separation.
516
517 2009-07-19 Uwe Stöhr <uwestoehr@web.de>
518         * Format incremented to 365: support for paragraph indentation.
519
520 2009-07-13 Jürgen Spitzmüller <spitz@lyx.org>
521         * Format incremented to 364: add \filename_suffix parameter
522           to branches.
523           Possible values: 0, 1.
524           If "1", the branch name is appended to the filename on export
525           (e.g., <filename>-<suffix>.pdf).
526
527 2009-07-11 Uwe Stöhr <uwestoehr@web.de>
528         * Format incremented to 363: support for horizontal longtable
529           alignment.
530   
531 2009-06-11 Jürgen Spitzmüller <spitz@lyx.org>
532         * Format incremented to 362: support for the applemac encoding.
533
534 2009-05-25 Jürgen Spitzmüller <spitz@lyx.org>
535         * Format incremented to 361: support for custom setting of
536           bibliography (longest) label width.
537           Empty file format change.
538
539 2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
540         * Format incremented to 360: param width for nomencl_print
541         CommandInset. This
542         1.) adds a further value "width" to param set_width
543         (see format 359)
544         and
545         2.) a param width, which takes a length
546         If "width" is chosen, we define the indendation of the nomencl
547         list via the optional argument of \printnomenclature, e.g.
548         \printnomenclature[2cm]{}
549
550 2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
551         * Format incremented to 359: param set_width for nomencl_print
552         CommandInset. This specifies how wide the longest nomencl label
553         is (i.e., how wide the indendation in the nomencl list is).
554         Possible values:
555         - none: do not specifiy the width (use predefined values)
556         - auto: compute the widest label and specify via
557           \settowidth{\nomlabelwidth}{<widest label>}
558
559 2009-05-22 Jürgen Spitzmüller <spitz@lyx.org>
560         * Format incremented to 358: support for custom bibtex and
561           makeindex commands.
562
563 2009-05-05 Pavel Sanda <sanda@lyx.org>, Enrico Forestieri <forenr@lyx.org>
564         * Format incremented to 357: Change of the latex output for
565           underline from \underbar to ulem's \uline.
566
567 2009-05-05 Pavel Sanda <sanda@lyx.org>
568         * Format incremented to 356: support for double and wave underline
569           character styles via ulem's \uuline and \uwave
570
571 2009-05-03 Pavel Sanda <sanda@lyx.org>
572         * Format incremented to 355: support for strikeout character
573           style via ulem's \sout
574
575 2009-04-26 Jürgen Spitzmüller <spitz@lyx.org>
576         * Format incremented to 354: support for splitindex's
577           \printindex* and \printsubindex*.
578
579 2009-04-26 Jürgen Spitzmüller <spitz@lyx.org>
580         * Format incremented to 353: support for splitindex's
581           \printsubindex.
582
583 2009-04-15 Jürgen Spitzmüller <spitz@lyx.org>
584         * Format incremented to 352: splitindex support.
585
586 2009-04-11 Uwe Stöhr <uwestoehr@web.de>
587         * Format incremented to 351: support to set a page background
588           color.
589
590 2009-04-06 Jürgen Spitzmüller <spitz@lyx.org>
591         * Format incremented to 350: new param \default_output_format.
592
593 2009-04-05 Jürgen Spitzmüller <spitz@lyx.org>
594         * Format incremented to 349: initial support for XeTeX.
595
596 2009-01-30 Uwe Stöhr <uwestoehr@web.de>
597         * Format incremented to 348: support for \*phantom.
598
599 2009-01-03 Vincent van Ravesteijn <V.F.vanRavesteijn@tudelft.nl>
600         * Format incremented to 347: support for tabular valign.
601
602 2008-11-28 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
603         * Format incremented to 346: support for German (Switzerland):
604           (bug 5450)
605
606 2008-11-07 José Matos <jamatos@lyx.org>
607         * Format incremented to 345: for docbook backend CharStyle: -> Element:
608           (fix bug 5411)
609
610 2008-10-12 Pavel Sanda <sanda@lyx.org>
611         * Format incremented to 344: sanitize backreference settings
612           for hyperref (fix bug 5340).
613
614 2008-10-12 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
615         * Format incremented to 343: new param \use_default_options
616           (fix bug 2114).
617
618 2008-10-12 Uwe Stöhr <uwestoehr@web.de>
619         * Format incremented to 342: support for Mongolian.
620
621 2008-09-30 Uwe Stöhr <uwestoehr@web.de>
622         * Format incremented to 341: support for TABs in listings.
623
624 2008-08-01 José Matos <jamatos@fc.up.pt>
625         * Format incremented to 340: move empty layouts to "Plain Layout".
626
627 2008-07-28 Richard Heck <rgheck@brown.edu>
628         * Format incremented to 339: removal of default modules.
629
630 2008-06-21 Uwe Stöhr <uwestoehr@web.de>
631         * Format incremented to 338: support for polytonic Greek.
632
633 2008-06-13 Abdelrazak Younes <younes@lyx.org>
634         * Format incremented to 337: convert/revert graphics display param.
635
636 2008-06-04 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
637         * Format incremented to 336: new param \font_cjk.
638
639 2008-05-30 Richard Heck <rgheck@brown.edu>
640         * Format incremented to 335: fixes for InsetSpace problems.
641
642 2008-05-16 Uwe Stöhr <uwestoehr@web.de>
643         * Format incremented to 334: fix for bug 4868.
644
645 2008-05-09 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
646         * Format incremented to 333: fixes in the APA layout.
647
648 2008-05-06 Pavel Sanda <sanda@lyx.org>
649         * Format incremented to 332: Added groupId for graphics insets.
650
651 2008-25-04 Helge Hafting <helge.hafting@aitel.hist.no>
652         * Format incremented to 330: More horizontal fills
653           - \leftarrowfill, \rightarrowfill
654           - \upbracefill, \downbracefill
655
656 2008-04-28 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
657         * Format incremented to 329: new param \master.
658
659 2008-04-18 Bo Peng <ben.bob@gmail.com>
660         * Format incremented to 328: Revert the support for embedding
661
662 2008-04-16 Uwe Stöhr <uwestoehr@web.de>
663         * Format incremented to 327: support for Mexican Spanish.
664
665 2008-04-11 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
666         * Format incremented to 326: support for pdflatex via external inset.
667
668 2008-03-29 Uwe Stöhr <uwestoehr@web.de>
669         * Format incremented to 325: merge the two Japanese languages to one that is
670           encoding independent.
671
672 2008-03-25 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
673         * Format incremented to 324: merge the two newline insets.
674
675 2008-03-25 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
676         * Format incremented to 323: merge the diverse newpage insets.
677
678 2008-03-24 Richard Heck <rgheck@comcast.net>
679         * Format incremented to 322: local layout
680
681 2008-03-18 Edwin Leuven <e.leuven@uva.nl>
682         * Format incremented to 321: drop row/col lines and ensure
683           consistency between cell and row/col lines.
684           Make the separation between \begin_inset and Tabular a
685           single space (it used to be a double space for lyx < 1.4)
686
687 2008-03-18 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
688         * Format incremented to 320: support for protected horizontal fill
689           (\hspace*{\fill})
690
691 2008-03-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
692         * Format incremented to 319: hspace and extended hfill support
693
694 2008-03-09 Bo Peng <ben.bob@gmail.com>
695         * Format incremented to 318: add \extra_embedded_files to buffer params
696
697 2008-03-02 Uwe Stöhr <uwestoehr@web.de>
698         * Format incremented to 317: support floating placements for wrap floats
699
700 2008-03-02 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
701         * Format incremented to 316: support for subfloats (subfig package)
702
703 2008-02-18 Richard Heck <rgheck@comcast.net>
704         * Format incremented to 315: support for column separation in page margins
705
706 2008-02-03 Uwe Stöhr <uwestoehr@web.de>
707         * Format incremented to 314: adapt scrlttr2 class for serial letters
708
709 2008-01-12 Richard Heck <rgheck@comcast.net>
710         * Format incremented to 313: change in how modules are represented
711
712 2008-01-11 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
713         * Format incremented to 312: support for sidewaysalgorithm (rotfloat)
714           and wide sideways{figure,table}.
715
716 2008-01-10 Richard Heck <rgheck@comcast.net>
717         * Format incremented to 311: dummy format to drive the AMS conversion
718
719 2007-12-28 Bernhard Reiter <ockham@gmx.net>
720         * Format incremented to 310: support for \nocite{*}
721
722 2007-12-11 Bernhard Reiter <ockham@gmx.net>
723         * Format incremented to 309: support for \nocite
724
725 2007-12-15 Uwe Stöhr <uwestoehr@web.de>
726         * Format incremented to 308: support for Serbian (Latin)
727
728 2007-12-05 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
729         * Format incremented to 307: support for \slash and \nobreakdash
730
731 2007-12-05 Uwe Stöhr <uwestoehr@web.de>
732         * Format incremented to 306: support for Interlingua
733
734 2007-12-05 Uwe Stöhr <uwestoehr@web.de>
735         * Format incremented to 305: support for Bahasa Malaysia
736
737 2007-12-03 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
738         * Format incremented to 304: framed and shaded boxes are now real boxes
739           (not notes).
740
741 2007-11-25 Uwe Stöhr <uwestoehr@web.de>
742         * Format incremented to 303: remove Serbocroatian as this was not a real
743           babel language (Croatian was used instead in the background)
744         * Implement Serbian
745
746 2007-11-25 Uwe Stöhr <uwestoehr@web.de>
747         * Format incremented to 302: support for Latin and North Sami
748
749 2007-11-24 Uwe Stöhr <uwestoehr@web.de>
750         * Format incremented to 301: support for \linebreak
751
752 2007-11-23 Uwe Stöhr <uwestoehr@web.de>
753         * Format incremented to 300: support for \pagebreak
754
755 2007-11-01 Uwe Stöhr <uwestoehr@web.de>
756         * Format incremented to 299: support for hyperlink types
757
758 2007-11-01 Stefan Schimanski <sts@1stein.org>
759         * Format incremented to 298: math-macro code has been rewritten,
760           now it supports definitions with optional parameters
761
762 2007-10-29 Uwe Stöhr <uwestoehr@web.de>
763         * Format incremented to 297: support for Albanian, lower Sorbian,
764           fixed upper Sorbian language
765
766 2007-10-23 Richard Heck <rgheck@comcast.net>
767         * Format incremented to 296: InsetInclude becomes an InsetCommand
768
769 2007-10-12 Uwe Stöhr <uwestoehr@web.de>
770         * Format incremented to 295: get rid of the htmlurl command that was
771           needed for docbook, add the option to create a hyperlink instead
772
773 2007-10-12 Pavel Sanda <ps@twin.jikos.cz>
774         * Format incremented to 294: PDFOptions: add usetitle,
775           fix leftovers
776
777 2007-10-11 Bo Peng <ben.bob@gmail.com>
778         * Format incremented to 293: Add InsetInfo.
779
780 2007-10-09 Uwe Stöhr <uwestoehr@web.de>
781         * Format incremented to 292: Support for Japanese without
782           using CJK and inputenc. (japanese-plain)
783
784 2007-10-04 Uwe Stöhr <uwestoehr@web.de>
785         * Format incremented to 291: Support for Vietnamese.
786
787 2007-10-03 Uwe Stöhr <uwestoehr@web.de>
788         * Format incremented to 290: Add table wrap floats
789
790 2007-10-03 Martin Vermeer <martin.vermeer@tkk.fi>
791         * Format incremented to 289: make Index a collapsable inset.
792
793 2007-09-25 Richard Heck <rgheck@comcast.net>
794         * Format incremented to 288: Change how command insets are
795           represented in LyX files.
796
797 2007-09-24 Uwe Stöhr <uwestoehr@web.de>
798         * Format incremented to 287: Add missing optional parameters
799           for wrapped figures.
800
801 2007-09-21 Pavel Sanda <ps@twin.jikos.cz>
802         * Format incremented to 286: LyX now supports hyperref and some
803           of its options.
804
805 2007-09-11 Bo Peng <ben.bob@gmail.com>
806         * Format incremented to 285: Tweaks to embedded file format
807           Remove inzip parameter from graphics insets.
808
809 2007-09-09 Helge Hafting <helge.hafting@aitel.hist.no>
810         * Format incremented to 284: LyX now implements wrapped figures
811           using wrapfig.sty instead of floatflt.sty. The latter
812           is rather buggy, the former also has more options.
813           No conversion as the .lyx doesn't change.
814           The .tex export is slightly different, necessitating the
815           format increase.
816
817 2007-09-08 Martin Vermeer <martin.vermeer@tkk.fi>
818
819         * format incremented to 283: CharStyle insets are now
820           called Flex.
821
822 2007-08-31 Bo Peng <ben.bob@gmail.com>
823
824         * format incremented to 282: lyx files can be zipfiles with
825           embedded documents.
826
827 2007-08-29 Richard Heck <rgheck@comcast.net>
828
829         * format incremented to 281: allow modules for layout files
830
831 2007-08-17 Martin Vermeer <martin.vermeer@tkk.fi>
832
833         * format incremented to 280: the show_label parameter
834           is depreciated in favour of (Collapsable) status.
835
836 2007-08-17 Martin Vermeer <martin.vermeer@tkk.fi>
837
838         * format incremented to 279: CharStyle names are now
839           expected to be of form CharStyle:Name.
840
841 2007-08-12 José Matos <jamatos@fc.up.pt>
842
843         * format incremented to 278: Close begin_deeper with a
844           corresponding end_deeper (the only case where it matters is
845           at the end of the body).
846
847 2007-08-12 José Matos <jamatos@fc.up.pt>
848
849         * format incremented to 277: lyx is able to create invalid
850           table where a multicolumn does not have a first cell
851           (required by the table file format)
852
853 2007-07-20 Dov Feldstern <dov@lyx.org>
854
855         * format *not* incremented; fixed format 249 conversion, so that it now
856                 correctly deals with encodings in footnotes (part of bug 3613)
857
858 2007-06-26 Uwe Stöhr <uwestoehr@web.de> and Dov Feldstern <dov@lyx.org>
859
860         * format incremented to 276: switching exsting language 'arabic' to
861                 'arabic_arabtex'; this is to differentiate from the new arabic support
862                 using the arabi package.
863
864 2007-05-04  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
865
866         * format incremented to 275: add graphics params scaleBeforeRotation
867         (fix bug 1749).
868
869 2007-06-13 Dov Feldstern <dov@lyx.org>
870         * format incremented to 274: applying the conversion done in format 259
871                 to the \lang property, which was forgotten back then... This is
872                 slightly more complicated, because the default language has to be
873                 determined on a per-paragraph basis.
874
875 2007-06-13 Bo Peng <ben.bob@gmail.com>
876         * format incremented to 273: add --Separator-- environment to
877                 separate consecutive environments
878
879 2007-06-13 Bo Peng <bpeng@lyx.org>
880         * format incremented to 272: convert listings to ERT because
881                 earlier versions of lyx can not handle unrecognizable
882                 listings parameters.
883
884 2007-05-15 José Matos <jamatos@lyx.org>
885         * format incremented to 271: extended textclasses accept the
886         normal font sizes: 10, 11 and 12pt.
887
888 2007-05-14 Martin Vermeer <martin.vermeer@tkk.fi>
889         * format incremented to 270: support beamer \alert, \structure
890
891 2007-05-08 Bo Peng <ben.bob@gmail.com>
892         * format incremented to 269: add listings support
893         - add preamble flag \listings_params, e.g. \listings_params "language=Python,float"
894         - add inset listings, with options lstparams and inline, e.g.
895                 \begin_inset listings
896                 lstparams "xleftmargin=50pt,language=Python"
897                 inline false
898         - add \lstinputlisting Include type. e.g.
899                 \begin_inset Include \lstinputlisting{newfile1.lyx}[firstline=10,lastline=15]
900
901 2007-05-06 Uwe Stöhr  <uwestoehr@web.de>
902
903         * format incremented to 268: add support for the CJK encodings
904         - all encodings supported by CJK.sty are now in lib/encodings
905         - lib/encoding has got two new flags:
906           - encoding package:
907             "inputenc" for those languages that use the inputenc-package and
908             "CJK" for the CJK encodings
909           - "fixed"/"variable" to divide between multi- or single-byte encoding
910         - lib/languages allows now to set an empty language for babel
911           in this case babel isn't called.
912
913 2007-05-04  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
914
915         * format incremented to 267: add plain utf8 encoding (for XeTeX).
916
917 2007-04-29  Uwe Stöhr  <uwestoehr@web.de>
918
919         * format incremented to 266:
920         Support for the Armenian language
921
922 2007-04-26  Uwe Stöhr  <uwestoehr@web.de>
923
924         * format incremented to 265: fix LyX's table border line handling
925         With the fix (see bug 1746) LyX now takes care if the user has entered
926         a "|" character in the argument field of tables. Therefore the "|"
927         character has to be removed when also a table border is set.
928
929 2007-04-24  José Matos  <jamatos@lyx.org>
930
931         * format incremented to 264:
932         textclass cv is renamed simplecv
933
934 2007-02-22  José Matos  <jamatos@lyx.org>
935
936         * format incremented to 263: changes in the language names (overdue):
937           brazil -> brazilian
938           portuges -> portuguese
939
940 2007-02-16  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
941
942         * format incremented to 262: Allow ascii \inputencoding
943
944 2007-02-14  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
945
946         * format incremented to 261: \output_changes is now considered
947         even if \tracking_changes is false. This allows to output existing
948         changes even if future changes are not tracked anymore.
949         The old combination
950
951         \tracking_changes false
952         \output_changes true
953
954         is therefore converted to
955
956         \tracking_changes false
957         \output_changes false
958
959         on upgrade. Nothing is done on downgrade since the new behaviour is
960         not supported in older formats.
961
962 2007-02-13  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
963
964         * format incremented to 260: Allow utf8x \inputencoding
965
966 2007-02-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
967
968         * format incremented to 259:
969         Old: Spaces at start or end of font changes were output outside of
970              the font change, i.e. not 'xx\textbf{ yy }zz', but
971              'xx \textbf{yy} zz'.
972         New: Spaces are always output with the font set by the user.
973
974 2007-01-31  Uwe Stöhr  <uwestoehr@web.de>
975
976         * format incremented to 258: new \lyxline definition
977         Old:
978                 \\newcommand{\\lyxline}[1]{
979                   {#1 \\vspace{1ex} \\hrule width \\columnwidth \\vspace{1ex}}
980                 }
981         New:
982                 \\newcommand{\\lyxline}[1][1pt]{%
983                   \\par\\noindent%
984                   \\rule[.5ex]{\\linewidth}{#1}\\par}
985         The new definition is more robust, see bug 1988 and now really takes care of
986         the fontsize: \lyxline{\Huge} produces now a thicker line than \lyxline{\normalfont}
987
988 2007-01-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
989
990         * format incremented to 257: Caption styles have been replaced by
991         InsetCaption. This is at the same time also a layout file format
992         change to format 3. layout2layout removes caption layouts from old
993         styles.
994         Note that InsetCaption did exist before this format, but was never
995         used. Old files containing do nevertheless still work.
996         Of course users can still define a Caption style in layout files,
997         but the special treatment in LyX is gone (apart from the sensitive
998         label property).
999
1000 2006-12-22  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1001
1002         * format incremented to 256: allow some new inputenc settings.
1003         For the complete list, see lib/lyx2lyx/lyx_1_5.py.
1004
1005 2006-11-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1006
1007         * format incremented to 255: new insets for \clearpage and
1008         \cleardoublepage. They are written inline to the file, exactly like
1009         \newpage.
1010
1011 2006-11-13  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1012
1013         * format incremented to 254: new header parameter \use_esint.
1014         It can have the same values as \use_amsmath: 0 (off), 1 (auto) and
1015         2 (on).
1016
1017 2006-10-18  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1018
1019         * format incremented to 253: new nomenclature and printnomenclature
1020         insets. These are standard InsetCommand with the following parameters:
1021         \nomenclature[prefix]{symbol}{description}
1022         \printnomenclature[labelwidth]
1023
1024 2006-10-15  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1025
1026         * format incremented to 252: changed command inset syntax
1027
1028         Old:
1029
1030         \begin_inset LatexCommand \cmdname[opt1][opt2]{arg}
1031         preview true
1032         \end_inset
1033
1034         and
1035
1036         \bibitem [opt1]{arg}
1037
1038
1039         New:
1040
1041         \begin_inset LatexCommand cmdname
1042         name1 "opt1"
1043         name2 "opt2"
1044         name3 "arg"
1045         preview true
1046         \end_inset
1047
1048         The order of the parameters and for each parameter the name and
1049         optional/required bit is now stored in InsetCommandParams.
1050
1051 2006-10-03  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1052
1053         * format incremented to 251: save show_label param for charstyles.
1054
1055         On revert, the show_label param is just removed. Nothing to convert.
1056
1057 2006-10-12  Martin Vermeer <martin.vermeer@hut.fi>
1058
1059         * Format incremented to 250: allow optional arg to environments
1060
1061         No material format change. Now optargs for environments are allowed
1062         to be specified in layout files and will be handled properly. When
1063         converted back to older formats, they will be ignored in LaTeX
1064         output.
1065
1066 2006-08-14  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1067
1068         * format incremented to 249: Unicode
1069
1070         LyX documents are now always encoded in utf8. The value of
1071         \inputencoding does now only determine the encoding of the created
1072         LaTeX file.
1073         Up to format 248 the value of \inputencoding did also determine the
1074         encoding of the LyX file:
1075
1076         \inputencoding       LyX file encoding
1077         auto                 as determined by the document and character
1078                              languages
1079         default              ditto
1080         everything else      as determined by \inputencoding
1081
1082         The difference between auto and default is only the LaTeX output:
1083         auto causes loading of the inputenc package, default does not.
1084
1085 2006-07-03  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1086
1087         * format incremented to 248: Basic booktabs support
1088
1089         The <features> tag has a new switch: booktabs="true|false".
1090         An absent switch is equivalent to booktabs="false".
1091         Horizontal lines are set with the booktabs package if this switch
1092         is on.
1093
1094         The <row> tag of tabulars has the following new attributes:
1095         topspace, bottomspace and interlinespace. All take a LyXLength
1096         as value, or the special keyword "default".
1097
1098 2006-06-10  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1099
1100         * format incremented to 247. The Grand Font Interface Rewrite.
1101         (1) Split font selection to rm, sf, tt:
1102                 \fontscheme -> \font_roman, \font_sans, \font_typewriter
1103                 Change 246->247:
1104                         \fontscheme     \font_roman     \font_sans      \font_typewriter
1105                         default         default         default         default
1106                         ae              ae              default         default
1107                         times           times           default         default
1108                         palatino        palatino        default         default
1109                         helvet          default         helvet          default
1110                         avant           default         avant           default
1111                         newcent         newcent         default         default
1112                         bookman         bookman         default         default
1113                         pslatex         times           (or \usepackage{pslatex})
1114                 New 246->247:
1115                         \font_roman: cmr (-> \renewcommand{\rmdefault}{cmr}),
1116                                      lmodern, charter, utopia, ccfonts, chancery, beraserif
1117                                         (-> \usepackage{<name>})
1118                         \font_sans: cmss, lmss, cmbr
1119                                         (-> \renewcommand{\sfdefault}{<name>})
1120                                     berasans (-> \usepackage{<name>})
1121                         \font_typewriter: cmtt, lmtt, cmtl,
1122                                         (-> \renewcommand{\sfdefault}{<name>})
1123                                         courier, luximono, beramono
1124                                         (-> \usepackage{<name>})
1125         (2) New param \font_default_family (rmdefault, sfdefault, ttdefault)
1126         (3) New param \font_sc (true, false).
1127         (4) New param \font_osf (true, false).
1128         (5) New param \font_sf_scale (float)
1129         (6) New param \font_tt_scale (float)
1130         Support for the following fonts has been added:
1131                 bera, ccfonts, chancery, charter, cmbright, computer modern (explicitely),
1132                 courier, lmodern, luximono, utopia.
1133         Support for the following font has been removed:
1134                 pslatex (it's superseded by mathptmx (times)).
1135
1136 2006-06-03  Martin Vermeer  <martin.vermeer@hut.fi>
1137
1138         * format incremented to 246. The framed.sty package is
1139         now supported with note types framed and shaded.
1140
1141 2005-10-12  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1142
1143         * format incremented to 245. The \quotes_times parameter
1144         has been removed.
1145
1146 2005-09-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1147
1148         * format incremented to 244. Rename '\InsetSpace \,'
1149         to '\InsetSpace \thinspace{}', because the comma was
1150         not parsed by lyxlex, and '\InsetSpace \space' to
1151         '\InsetSpace \space{}' in favour of consistency.
1152
1153 2005-07-18  José Matos  <jamatos@lyx.org>
1154
1155         * format incremented to 243.
1156
1157         * this change only affects the preamble, the paperpackage
1158           option was removed and papersize is changed to default.
1159
1160 2005-06-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1161
1162         * format incremented to 242. There is no file format per
1163         se, but the "frenchb" language has been removed from lib/language
1164         and has to be translated to "french" by lyx2lyx.
1165
1166 2005-02-03  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1167
1168         * format incremented to 241.
1169
1170         All following changes apply only to text in ERT insets. The
1171         rationale is that text in ERT is simply ASCII text, and nothing more.
1172
1173         * paragraph breaks are now a single newline in latex and not a
1174         paragraph break anymore (bug 698).
1175         * \newline is not allowed anymore, because it is redundant (see above)
1176         * layouts other than Standard, paragraph parameters and font changes
1177         are not allowed anymore. They never made sense and were ignored for
1178         latex output, but now they can't be read or set anymore (bug 922).
1179
1180
1181 2005-01-23  Jürgen Spitzmüller  <j.spitzmüller@gmx.de>
1182
1183         * format incremented to 240.
1184         * new bufferparam:
1185                 \output_changes {true|false}
1186         (should the change tracking marks be visible in the output or not?)
1187         * lyx2lyx should just delete the param in 239.
1188
1189 2005-01-06  José Matos  <jamatos@lyx.org>
1190
1191         * format incremented to 239.
1192         * the paragraph parameters are displayed in their own line. This
1193         change is consistent with the insets behaviour, and corresponds
1194         to a more uniform treatment of the paragraphs since some of them
1195         had already their own line.
1196
1197         An example of a single paragraph follows:
1198
1199 \begin_layout Standard
1200 \paragraph_spacing single
1201 \align left
1202 Paragraph text.
1203 \end_layout
1204
1205
1206 2004-12-03  José Matos  <jamatos@lyx.org>
1207
1208         * format incremented to 238.
1209         * The compatibility code to read old latex accents from 0.12.x in
1210         InsetLatexAccent::checkContents has been removed.
1211         The following translations are done:
1212                 "\i \x"   -> "\i \x{}"
1213                 "\i \xy"  -> "\i \x{y}"
1214                 "\i \x y" -> "\i \x{y}"
1215                 "\i \x\i" -> "\i \x{\i}"
1216                 "\i \x\j" -> "\i \x{\j}"
1217         x is a latex accent command, y the base character. \, i and j are
1218         literal.
1219         lyx did these changes already from 0.12.x -> 215, but not lyx2lyx,
1220         so formats 215 - 237 can have both versions.
1221
1222
1223 2004-10-10  José Matos  <jamatos@lyx.org>
1224
1225         * format incremented to 237.
1226         * In the header, the following statments use now booleans values,
1227         instead of 0, 1:
1228                 - \use_geometry
1229                 - \use_bibtopic
1230                 - \tracking_changes
1231
1232 2004-08-15  José Matos  <jamatos@lyx.org>
1233
1234         * format incremented to 236.
1235         * Added tags:
1236                 - \begin_document
1237                 - \begin_header
1238                 - \begin_body
1239                 - \end_body
1240
1241         * The options for \papersize are changed:
1242                 Default -> default
1243                 Custom -> custom
1244         * All whitespaces are removed at the end of lines, when
1245         not necessary. As an example we have all the lines in the header that
1246         do not belong to the preamble.
1247
1248 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1249
1250         * format incremented to 235.
1251         * \paperpackage had an off-by-one error. Translation table:
1252
1253           234: a4    a4wide  widemarginsa4
1254           235: none  a4      a4wide         widemarginsa4
1255
1256           The "widemarginsa4" setting of 235 has no equivalent in 234.
1257
1258 2004-05-12  Angus Leeming  <leeming@lyx.org>
1259
1260         * format incremented to 234.
1261         * the citation engine is specified explicitly rather than being
1262         deduced from 3 bools.
1263
1264         \use_natbib 1
1265         \use_numerical_citations 0   ->   \cite_engine <style>
1266         \use_jurabib 0
1267
1268         where <style> is one of "basic", "natbib_authoryear",
1269         "natbib_numerical" or "jurabib".
1270
1271 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1272
1273         * format incremented to 233.
1274         * insetgraphics does not allow filenames without extension anymore.
1275         The complete filename has to be given.
1276
1277 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1278
1279         * format incremented to 232.
1280
1281         * Support for bibtopic (sectioned bibliographies).
1282           - bufferparam \use_bibtopic [1|0]
1283           - the bibtex inset has a second argument for bibtopic's
1284             btPrint{Cited|NotCited|All} command:
1285             < 231:
1286             \begin_inset LatexCommand \bibtex[<style>]{<database>}
1287             now:
1288             \begin_inset LatexCommand \bibtex[<style>][<btPrintX>]{<database>}
1289           Forwards, there's nothing to be done. Backwards, \usepackage[dot]{bibtopic}
1290           has to be inserted to the preamble. Instead of the bibtex inset, the LaTeX
1291           \bibliographystyle{<style>}
1292           \begin{btSect}{<database>}
1293           \<btprintX>
1294           \end{btSect}
1295           has to be inserted.
1296
1297 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1298
1299         * format incremented to 231.
1300
1301         * Support for sidewaysfigure/sidewaystable (rotating package).
1302         insetfloat has now a param \sideways [true|false] (default is false).
1303         The param should be erased on downwards conversion, if it was true,
1304         the inset should be replaced by
1305         \begin{sidewaysfigure} <content> \end{sidewaysfigure}
1306         resp.
1307         \begin{sidewaystable} <content> \end{sidewaystable}
1308         i.e. ERT.
1309
1310 2004-02-23  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1311
1312         * format incremented to 230.
1313
1314         * Support for a second optional argument in insetcommand.
1315         currently, citation uses this to support natbibs second
1316         optional argument \cite[before][after]{key}.
1317         I think there's nothing to convert upwards. Downwards, the
1318         commands with 2 optional args need to be converted to ERT.
1319
1320         * Support for jurabib (param \use_jurabib [1|0], default is 0).
1321         When converting downwards, \usepackage{jurabib} has to be added
1322         to the preamble and, if babel is used, \usepackage{babel} before
1323         (jurabib fails if babel is called afterwards). If the natbib commands
1324         are used together with jurabib, they have to be converted to ERT too.
1325
1326 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1327
1328         * format incremented to 229.
1329         * Minipages cannot be read anymore. All minipage insets will
1330         be converted to frameless box insets between 228->229.
1331
1332 2003-12-15  Angus Leeming  <leeming@lyx.org>
1333
1334         * format incremented to 228.
1335         * Change the output of all insets derived from InsetCollapsable
1336         except for InsetERT (which has a similar output already), changing lines
1337         "collapsed true" -> "status collapsed"
1338         "collapsed false" -> "status open".
1339         * Change the output of InsetERT, changing lines
1340         "status Collapsed" -> "status collapsed"
1341         "status Open" -> "status open".
1342         "status Inlined" -> "status inlined".
1343
1344 2003-12-10  Angus Leeming  <leeming@lyx.org>
1345
1346         * format NOT incremented.
1347         * add a 'draft' option to InsetExternal.
1348
1349 2003-12-10  Angus Leeming  <leeming@lyx.org>
1350
1351         * format incremented to 227.
1352         * Change the output of InsetBox:
1353         \begin_inset Boxed -> \begin_inset Box Boxed
1354         \begin_inset Doublebox -> \begin_inset Box Doublebox
1355         \begin_inset Frameless -> \begin_inset Box Frameless
1356         \begin_inset ovalbox -> \begin_inset Box ovalbox
1357         \begin_inset Ovalbox -> \begin_inset Box Ovalbox
1358         \begin_inset Shadowbox -> \begin_inset Box Shadowbox
1359
1360 2003-12-10  Angus Leeming  <leeming@lyx.org>
1361
1362         * format incremented to 226.
1363         * Change the output of InsetNote:
1364         \begin_inset Note -> \begin_inset Note Note
1365         \begin_inset Comment -> \begin_inset Note Comment
1366         \begin_inset Greyedout -> \begin_inset Note Greyedout
1367
1368 2003-11-28  André Pönitz
1369
1370         * Remove space_above/space_below from Paragraph.
1371     This is now handled by InsetVSpace.
1372
1373 2003-10-07  Angus Leeming  <leeming@lyx.org>
1374
1375         * Add transformations to InsetExternal
1376
1377         boundingBox 0 0 20 20           the dimensions of the B.B..
1378                                         Output if the B.B. is not empty.
1379         clip                            clip the image to the B.B.
1380                                         Output if true.
1381         extra LaTeX "draft"             'extra' data passed to the primary
1382                                         command for this output format.
1383                                         (Possible formats LaTeX, PDFLaTeX,
1384                                          LinuxDoc, DocBook, Ascii.)
1385                                         The string can contain spaces and so
1386                                         is wrapped in "...".
1387         rotateAngle 30                  Rotation of the data.
1388                                         Output for non-zero rotation only.
1389         rotateOrigin bottomleft         Rotation origin.
1390                                         Output for non-zero rotation and
1391                                         non-default origin (center) only.
1392         scale 50
1393         width 2cm                       Output only if the image is resized.
1394         height 2cm
1395         keepAspectRatio
1396
1397 2003-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
1398
1399         * Added box inset. File format:
1400
1401         \begin_inset Ovalbox            Boxed/Frameless/ovalbox/Ovalbox
1402                                             /Shadowbox/Doublebox
1403         position "b"                    t/c/b
1404         hor_pos "c"                     l/c/r/s
1405         has_inner_box 1                 1/0
1406         inner_pos "b"                   t/c/b/s
1407         use_parbox 0                    1/0
1408         width "100col%"                 unit+width-string
1409         special "none"                  none/height/depth
1410                                             /totalheight/width
1411         height "1in"                    unit+width-string
1412         height_special "totalheight"    none/height/depth
1413                                             /totalheight/width
1414         collapsed false                 true/false
1415
1416         \begin_layout Standard
1417
1418         <box contents>
1419         \end_layout
1420
1421         \end_inset
1422
1423         This box (Frameless, has_inner_box=1, use_parbox=0) replaces
1424         the pre-existing Minipage inset. Parameters translate as follows:
1425         position                        0/1/2   -> t/c/b
1426         inner_position                  0/1/2/3 -> inner_pos c/t/b/s
1427         height                          same
1428         width                           same
1429         collapsed                       same
1430
1431 2003-08-19  Michael Schmitt  <michael.schmitt@teststep.org>
1432
1433         * attribute valignment="center" is replaced by valignment="middle"
1434         for tabular columns and cells
1435
1436 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
1437
1438         * Added branch inset. File format:
1439
1440         branch definition in the header:
1441         \branch <branchname>
1442         \selected 0                    0/1
1443         \color #rrggbb
1444         \end_branch
1445
1446         \begin_inset Branch <branchname>
1447         collapsed false                 true/false
1448
1449         \begin_layout Standard
1450
1451         <branch contents>
1452         \end_layout
1453
1454         \end_inset
1455
1456 2003-07-28  José Matos  <jamatos@lyx.org>
1457
1458         * \the_end is replaced with \end_document
1459
1460 2003-07-28  José Matos  <jamatos@lyx.org>
1461
1462         * \layout is replaced with \begin_layout
1463
1464 2003-07-28  José Matos  <jamatos@fep.up.pt>
1465
1466         Format bumped to 225
1467
1468         * All layouts finish now with \end_layout
1469
1470 2003-06-04  Angus Leeming  <leeming@lyx.org>
1471
1472         Format bumped to 224
1473
1474         * the storage of the external inset has been changed from
1475
1476                 \begin_inset External XFig,"file.fig",""
1477
1478                 \end_inset
1479
1480         to this
1481
1482                 \begin_inset External
1483                         template XFig
1484                         filename file.fig
1485                         display <display_type>
1486                         lyxscale <scale>
1487
1488                 \end_inset
1489
1490         throwing away the final arg (here "", more generally "<string>") that holds
1491         the parameters variable.
1492         Variables are output if present (filename) or different from the default
1493         values (display, lyxscale).
1494
1495         Moreover, the RasterImage template has been scrapped. All RasterImage
1496         external insets are now converted to Graphics insets.
1497
1498 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1499
1500         * Added new space insets:
1501                 \SpecialChar ~ is now \InsetSpace ~
1502                 ERT: "\ " could be converted to InsetSpace \<space>
1503                 ERT: "\," could be converted to InsetSpace \,
1504
1505 2003-04-24  André Pönitz <poenitz@gmx.net>
1506
1507         * Added eqref support:
1508         \begin_inset LatexCommand \eqref{label}
1509
1510 2003-03-14  Dekel Tsur
1511
1512         * Format bumped to 223.
1513
1514 2003-03-12  John Levon  <levon@movementarian.org>
1515
1516         * Added \\end_header to signify the end of the header in a
1517           more robust fashion.
1518
1519         * use_amsmath is now a tristate {0 = never, 1 = auto, 2 = always}
1520
1521 2003-02-10  John Levon  <levon@movementarian.org>
1522
1523         Format bumped to 222
1524
1525         Added \\tracking_changes 0|1 to the header.
1526
1527         Added \\author to the header. This can be present multiple
1528         times, and is of the form :
1529
1530         \\author "Real Name" email@address.com
1531
1532         Added \\change_deleted, \\change_inserted. Each of these does not
1533         span a paragraph, and is delimited by "\\change_unchanged\n". Both are
1534         of the form :
1535
1536         \\change_inserted author time
1537
1538         where author is an integer ID reference into the author list in
1539         the header, and time is time_t.
1540
1541 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
1542
1543         * InsetGraphicsParams.h (scale): is now a float, not an unsigned int.
1544
1545 2002-08-22  Rob Lahaye <lahaye@snu.ac.kr>
1546
1547 New graphics dialog. With the removal of buttons in the dialog, also
1548 keywords in the graphics inset went. The following keywords do not
1549 exist anymore:
1550         lyxsize_kind
1551         lyxsize_type
1552         lyxwidth
1553         lyxheight
1554         size_kind
1555         size_type
1556         rotate
1557
1558 Only non-default values are saved to the lyx files. The defaults of the remaining
1559 keywords are;
1560         filename <empty>
1561         lyxscale 100
1562         display default
1563         scale 100
1564         width <empty>
1565         height <empty>
1566         draft <off>
1567         noUnzip <off>
1568         BoundingBox <from file>
1569         clip <off>
1570         rotateAngle 0
1571         rotateOrigin centerBaseline
1572         subcaption <off>
1573         subcaptionText <empty>
1574         special <empty>
1575
1576 The remaining keywords have sufficient overlap with the old ones for a
1577 smooth reading of the 1.2.x inset keywords in most common cases.
1578
1579 Compatibility is certainly broken for the old lyxwidth/lyxheight keywords.
1580 They don't exist anymore and we can't translate them into a scaling value, while
1581 we're reading the graphics inset. The old lyxwidth/lyxheight keyword and its
1582 argument is ignored and lost.
1583
1584 Only few compatibility issues are left for lyx2lyx:
1585
1586 ------------------------------------------------------------------------------
1587 old-token                                   new-token         remove
1588 ------------------------------------------------------------------------------
1589 size_kind original / size_type 0            scale 100         width <val>
1590                                                               height <val>
1591                                                               scale <val>
1592
1593 size_kind width_height / size_type 1            -             scale <val>
1594
1595 lyxsize_kind original / lyxsize_type 0      lyxscale 100      lyxscale <val>
1596 ------------------------------------------------------------------------------
1597 [replace old-token by new-token, and remove any of subsequent tokens as listed]
1598
1599 If "rotate" is absent, lyx2lyx should ignore "rotateAngle <val>":
1600    if ( "rotateAngle <val>" is there WITHOUT being preceded by the keyword "rotate" )
1601    then
1602         replace "rotateAngle <val>" by "rotateAngle 0"
1603
1604
1605 2002-08-12  Andre' Poenitz <poenitz@gmx.de>
1606
1607 Added \lyxlock for locked math inset when written to .lyx file.
1608 When "downgrading" .lyx files this should simple be deleted but it
1609 does not hurt at all if it stays in. It does not have to be added
1610 when "upgrading".
1611
1612
1613 2002-08-02  Angus Leeming  <leeming@lyx.org>
1614
1615 Added a boolean "preview" flag to InsetCommandParams.
1616 Currently it is written only by InsetInclude, because only this
1617 class can generate a preview of its contents.
1618
1619 The LyX file now contains:
1620
1621  \begin_inset Include \input{snapshot_t=40.tex}
1622 +preview true
1623
1624  \end_inset
1625
1626 Earlier versions of LyX just swallow this extra token silently.
1627
1628 2002-08-12  Angus Leeming  <leeming@lyx.org>
1629
1630 The 1.2.0 InsetGraphicsParams "size_type" and "lyxsize_type" have been
1631 renamed as "size_kind" and "lyxsize_kind" respectively.
1632
1633  \begin_inset Graphics FormatVersion 1
1634         filename file.eps
1635         display default
1636 -       size_kind original
1637 +       size_type original
1638         width 7cm
1639         rotateOrigin center
1640 -       lyxsize_kind original
1641 +       lyxsize_type original
1642         lyxwidth 4cm
1643
1644  \end_inset
1645