]> git.lyx.org Git - lyx.git/blob - development/FORMAT
remove last of NO_STD_LIST stuff
[lyx.git] / development / FORMAT
1 LyX file-format changes
2 -----------------------
3
4 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5
6         * Added new space insets:
7                 \SpecialChar ~ is now \InsetSpace ~
8                 ERT: "\ " could be converted to InsetSpace \<space>
9                 ERT: "\," could be converted to InsetSpace \,
10
11 2003-03-12  John Levon  <levon@movementarian.org>
12
13         * Added \\end_header to signify the end of the header in a
14           more robust fashion.
15
16         * use_amsmath is now a tristate {0 = never, 1 = auto, 2 = always}
17
18 2003-02-10  John Levon  <levon@movementarian.org>
19
20         Format bumped to 222
21
22         Added \\tracking_changes 0|1 to the header.
23
24         Added \\author to the header. This can be present multiple
25         times, and is of the form :
26
27         \\author "Real Name" email@address.com
28
29         Added \\change_deleted, \\change_inserted. Each of these does not
30         span a paragraph, and is delimited by "\\change_unchanged\n". Both are
31         of the form :
32
33         \\change_inserted author time
34
35         where author is an integer ID reference into the author list in
36         the header, and time is time_t.
37
38 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
39
40         * insetgraphicsParams.h (scale): is now a float, not an unsigned int.
41
42 2002-08-22  Rob Lahaye <lahaye@snu.ac.kr>
43
44 New graphics dialog. With the removal of buttons in the dialog, also
45 keywords in the graphics inset went. The following keywords do not
46 exist anymore:
47         lyxsize_kind
48         lyxsize_type
49         lyxwidth
50         lyxheight
51         size_kind
52         size_type
53         rotate
54
55 Only non-default values are saved to the lyx files. The defaults of the remaining
56 keywords are;
57         filename <empty>
58         lyxscale 100
59         display default
60         scale 100
61         width <empty>
62         height <empty>
63         draft <off>
64         noUnzip <off>
65         BoundingBox <from file>
66         clip <off>
67         rotateAngle 0
68         rotateOrigin centerBaseline
69         subcaption <off>
70         subcaptionText <empty>
71         special <empty>
72
73 The remaining keywords have sufficient overlap with the old ones for a
74 smooth reading of the 1.2.x inset keywords in most common cases.
75
76 Compatibility is certainly broken for the old lyxwidth/lyxheight keywords.
77 They don't exist anymore and we can't translate them into a scaling value, while
78 we're reading the graphics inset. The old lyxwidth/lyxheight keyword and its
79 argument is ignored and lost.
80
81 Only few compatibility issues are left for lyx2lyx:
82
83 ------------------------------------------------------------------------------
84 old-token                                   new-token         remove
85 ------------------------------------------------------------------------------
86 size_kind original / size_type 0            scale 100         width <val>
87                                                               height <val>
88                                                               scale <val>
89
90 size_kind width_height / size_type 1            -             scale <val>
91
92 lyxsize_kind original / lyxsize_type 0      lyxscale 100      lyxscale <val>
93 ------------------------------------------------------------------------------
94 [replace old-token by new-token, and remove any of subsequent tokens as listed]
95
96 If "rotate" is absent, lyx2lyx should ignore "rotateAngle <val>":
97    if ( "rotateAngle <val>" is there WITHOUT being preceded by the keyword "rotate" )
98    then
99         replace "rotateAngle <val>" by "rotateAngle 0"
100
101
102 2002-08-12  Andre' Poenitz <poenitz@gmx.de>
103
104 Added \lyxlock for locked math inset when written to .lyx file.
105 When "downgrading" .lyx files this should simple be deleted but it
106 does not hurt at all if it stays in. It does not have to be added
107 when "upgrading".
108
109
110 2002-08-02  Angus Leeming  <leeming@lyx.org>
111
112 Added a boolean "preview" flag to InsetCommandParams.
113 Currently it is written only by InsetInclude, because only this
114 class can generate a preview of its contents.
115
116 The LyX file now contains:
117
118  \begin_inset Include \input{snapshot_t=40.tex}
119 +preview true
120
121  \end_inset 
122
123 Earlier versions of LyX just swallow this extra token silently.
124
125 2002-08-12  Angus Leeming  <leeming@lyx.org>
126
127 The 1.2.0 InsetGraphicsParams "size_type" and "lyxsize_type" have been
128 renamed as "size_kind" and "lyxsize_kind" respectively.
129
130  \begin_inset Graphics FormatVersion 1
131         filename file.eps
132         display default
133 -       size_kind original
134 +       size_type original
135         width 7cm
136         rotateOrigin center
137 -       lyxsize_kind original
138 +       lyxsize_type original
139         lyxwidth 4cm
140
141  \end_inset 
142