From: Jürgen Spitzmüller Date: Mon, 25 May 2009 08:27:12 +0000 (+0000) Subject: empty file format change due to r29840. X-Git-Tag: 2.0.0~6450 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1d494512fc2d76e76f65fe95dbe8f0777ccae367;p=lyx.git empty file format change due to r29840. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29841 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/FORMAT b/development/FORMAT index cc5ee4d89f..3a779eadfa 100644 --- a/development/FORMAT +++ b/development/FORMAT @@ -1,6 +1,11 @@ LyX file-format changes ----------------------- +2009-05-25 Jürgen Spitzmüller + * Format incremented to 361: support for custom setting of + bibliography (longest) label width. + Empty file format change. + 2009-05-22 Jürgen Spitzmüller * Format incremented to 360: param width for nomencl_print CommandInset. diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index 2d562a373f..90f4d0e1e3 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -726,10 +726,12 @@ convert = [[346, []], [357, []], [358, []], [359, [convert_nomencl_width]], - [360, []] + [360, []], + [361, []] ] -revert = [[359, [revert_nomencl_cwidth]], +revert = [[360, []], + [359, [revert_nomencl_cwidth]], [358, [revert_nomencl_width]], [357, [revert_custom_processors]], [356, [revert_ulinelatex]], diff --git a/src/Buffer.cpp b/src/Buffer.cpp index ae6d82e94b..cbda6b010a 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -125,7 +125,7 @@ namespace { // Do not remove the comment below, so we get merge conflict in // independent branches. Instead add your own. -int const LYX_FORMAT = 360; // jspitzm: nomencl custom width +int const LYX_FORMAT = 361; // jspitzm: bibliography custom width typedef map DepClean; typedef map > RefCache;