From: Pavel Sanda Date: Fri, 12 Feb 2010 01:57:49 +0000 (+0000) Subject: Fileformat++ as a safety measure. X-Git-Tag: 2.0.0~4067 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5942071ccb08ec21ff37e5d2c368f6d7cbf4ae1b;p=features.git Fileformat++ as a safety measure. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33430 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/FORMAT b/development/FORMAT index 5a861d808d..e7c3fbd6ee 100644 --- a/development/FORMAT +++ b/development/FORMAT @@ -1,6 +1,12 @@ LyX file-format changes ----------------------- +2010-02-12 Pavel Sanda + * Format incremented to 378: support for revision InsetInfo. + Various "vcs-*" strings could be argument of arg parameter + in InsetInfo. This entry is a safety measure, no lyx2lyx + conversion is needed in fact. + 2010-02-11 Uwe Stöhr and Edwin Leuven * Format incremented to 377: support for multirow cells in tables diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index 18bc549fd0..1d8e8d2bf0 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -1241,10 +1241,12 @@ convert = [[346, []], [374, []], [375, []], [376, []], - [377, []] + [377, []], + [378, []] ] -revert = [[376, [revert_multirow]], +revert = [[377, []], + [376, [revert_multirow]], [375, [revert_includeall]], [374, [revert_includeonly]], [373, [revert_html_options]], diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 7aa037a580..a5bef3a732 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -126,7 +126,7 @@ namespace { // Do not remove the comment below, so we get merge conflict in // independent branches. Instead add your own. -int const LYX_FORMAT = 377; // uwestoehr: support for multirows +int const LYX_FORMAT = 378; // ps: rev insetinfo typedef map DepClean; typedef map > RefCache;