]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/prefs2prefs_prefs.py
Use footnotehyper rather than footnote if hyperref is used
[lyx.git] / lib / scripts / prefs2prefs_prefs.py
index 6f245f638d46414b426c99ba10e8a462e742ece9..8ea20723ab5286bf63106cc7def69d7fd0900c3b 100644 (file)
 # Incremented to format 25, by lasgouttes
 #   Remove use_qimage preference
 
+# Incremented to format 26, by spitz
+#   Rename font_encoding preference
+
+# Incremented to format 27, by spitz
+#   Add optional flavor value to needaux flag
+
 # NOTE: The format should also be updated in LYXRC.cpp and
 # in configure.py.
 
@@ -394,6 +400,11 @@ def remove_use_qimage(line):
                return no_match
        return (True, "")
 
+def remove_font_encoding(line):
+       if not line.lower().startswith("\\font_encoding "):
+               return no_match
+       return (True, "")
+
 # End conversions for LyX 2.3 to 2.4
 ####################################
 
@@ -433,5 +444,7 @@ conversions = [
        [ 22, []],
        [ 23, []],
        [ 24, [rename_collapsible]],
-       [ 25, [remove_use_qimage]]
+       [ 25, [remove_use_qimage]],
+       [ 26, [remove_font_encoding]],
+       [ 27, []]
 ]