]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/prefs2prefs_prefs.py
* layouttranslations.review - review of all langs.
[lyx.git] / lib / scripts / prefs2prefs_prefs.py
index 3c0e10edfea31596474c7c3653d307928d1c3942..66423ae2714aa7073c7ded7916cbe9f1e668aaa0 100644 (file)
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 
 # file prefs2prefs-prefs.py
 # Incremented to format 11, by gb
 #   Split pdf format into pdf and pdf6
 
+# Incremented to format 12, by vfr
+#   Add option to use the system's theme icons
+#   No conversion necessary.
+
+# Incremented to format 13, by bh
+#   Rename mac_like_word_movement to mac_like_cursor_movement
+
+# Incremented to format 14, by spitz
+#   New RC default_otf_view_format
+#   No conversion necessary.
+
+# NOTE: The format should also be updated in LYXRC.cpp and
+# in configure.py.
+
 import re
 
 ###########################################################
@@ -286,6 +299,8 @@ def remove_default_language(line):
                return no_match
        return (True, "")
 
+def mac_cursor_movement(line):
+       return simple_renaming(line, "\\mac_like_word_movement", "\\mac_like_cursor_movement")
 
 # End conversions for LyX 2.0 to 2.1
 ####################################
@@ -308,5 +323,9 @@ conversions = [
        [ 8, []],
        [ 9, [ remove_default_language ]],
        [ 10, []],
-       [ 11, [split_pdf_format]]
+       [ 11, [split_pdf_format]],
+       [ 12, []],
+       [ 13, [mac_cursor_movement]],
+       [ 14, []],
+       [ 15, []]
 ]