X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fscripts%2Fprefs2prefs_prefs.py;h=6bbb8ac0bc5471b74d3c5ec2c5f9cc9ced2826c4;hb=92c4bb46828941a36cb464bb2202607fe2abb934;hp=6007a95cc3535f44453a32f6df976696b7e14109;hpb=26ea1e14966c092a7b87c75c19b83a369e79aeb8;p=lyx.git diff --git a/lib/scripts/prefs2prefs_prefs.py b/lib/scripts/prefs2prefs_prefs.py index 6007a95cc3..6bbb8ac0bc 100644 --- a/lib/scripts/prefs2prefs_prefs.py +++ b/lib/scripts/prefs2prefs_prefs.py @@ -10,9 +10,9 @@ # This file houses conversion information for the preferences file. -# The converter functions take a line as argument and return a list: -# (Bool, NewLine), -# where the Bool says if we've modified anything and the NewLine is +# The converter functions take a line as argument and return a list: +# (Bool, NewLine), +# where the Bool says if we've modified anything and the NewLine is # the new line, if so, which will be used to replace the old line. # Incremented to format 2, r39670 by jrioux @@ -108,6 +108,27 @@ # Incremented to format 26, by spitz # Rename font_encoding preference +# Incremented to format 27, by spitz +# Add optional flavor value to needaux flag + +# Incremented to format 28, by spitz +# Remove date_insert_format + +# Incremented to format 29, by lasgouttes +# Remove use_pixmap_cache + +# Incremented to format 30, by lasgouttes +# Add respect_os_kbd_language. +# No convergence necessary. + +# Incremented to format 31, by spitz +# Add ct_additions_underlined. +# No convergence necessary. + +# Incremented to format 32, by spitz +# Add ct_markup_copied. +# No convergence necessary. + # NOTE: The format should also be updated in LYXRC.cpp and # in configure.py. @@ -402,6 +423,16 @@ def remove_font_encoding(line): return no_match return (True, "") +def remove_date_insert_format(line): + if not line.lower().startswith("\\date_insert_format "): + return no_match + return (True, "") + +def remove_use_pixmap_cache(line): + if not line.lower().startswith("\\use_pixmap_cache "): + return no_match + return (True, "") + # End conversions for LyX 2.3 to 2.4 #################################### @@ -442,5 +473,11 @@ conversions = [ [ 23, []], [ 24, [rename_collapsible]], [ 25, [remove_use_qimage]], - [ 26, [remove_font_encoding]] + [ 26, [remove_font_encoding]], + [ 27, []], + [ 28, [remove_date_insert_format]], + [ 29, [remove_use_pixmap_cache]], + [ 30, []], + [ 31, []], + [ 32, []] ]