]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/layout2layout.py
Let TeXFiles.py handle symbolic links.
[lyx.git] / lib / scripts / layout2layout.py
index 5d6c7ad0dc1eed84cb0eedf175607c50ecae910c..5e9d3483dee51f3871fcc7dd7ba3ef9b889ee765 100644 (file)
@@ -11,7 +11,7 @@
 # This script will update a .layout file to current format
 
 # The latest layout format is also defined in src/TextClass.cpp
-currentFormat = 71
+currentFormat = 75
 
 
 # Incremented to format 4, 6 April 2007, lasgouttes
@@ -239,6 +239,19 @@ currentFormat = 71
 # Incremented to format 71, 12 March 2019 by spitz
 # New [Inset]Layout tag NeedMBoxProtect
 
+# Incremented to format 72, 26 March 2019 by spitz
+# New TextClass tag TableStyle
+
+# Incremented to format 73, 18 April 2019 by spitz
+# New InsetLayout tag MenuString
+
+# Incremented to format 74, 18 April 2019 by spitz
+# New InsetLayout and Argument tag NewlineCmd
+
+# Incremented to format 75, 2 June 2019 by spitz
+# New Argument tags FreeSpacing, InsertOnNewline
+# New InsetLayout tag ParbreakIgnored
+
 # Do not forget to document format change in Customization
 # Manual (section "Declaring a new text class").
 
@@ -488,7 +501,7 @@ def convert(lines, end_format):
                 i += 1
             continue
 
-        if format >= 65 and format <= 70:
+        if format >= 65 and format <= 74:
             # nothing to do.
             i += 1
             continue