]> git.lyx.org Git - features.git/blobdiff - lib/scripts/layout2layout.py
Add NewlineCmd InsetLayout and Argument option
[features.git] / lib / scripts / layout2layout.py
index 20f9e9c619f4794ce94eed1a374d38c296abee8f..8fdc9fdf7299a4f7eda4eca62f8975be535c2a5a 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 = 70
+currentFormat = 74
 
 
 # Incremented to format 4, 6 April 2007, lasgouttes
@@ -233,9 +233,21 @@ currentFormat = 70
 # Incremented to format 69, 16 August 2018 by spitz
 # New argument type "listpreamble"
 
-# Incremented to format 69, 5 June 2018 by rkh
+# Incremented to format 70, 5 June 2018 by rkh
 # New InsetLayout tag EditExternal
 
+# 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
+
 # Do not forget to document format change in Customization
 # Manual (section "Declaring a new text class").
 
@@ -485,7 +497,7 @@ def convert(lines, end_format):
                 i += 1
             continue
 
-        if format >= 65 and format <= 69:
+        if format >= 65 and format <= 73:
             # nothing to do.
             i += 1
             continue