Fix T89870: Vertex groups lost when opening 3.0 files in 2.93

The original refactor for vertex groups (3b6ee8cee7)
forgot to bump the minimum file requirement.

I'm also bumping the subversion to 12 so everyone can switch to a
working subversion number.

Differential Revision: https://developer.blender.org/D11931
This commit is contained in:
Dalai Felinto 2021-07-15 12:02:53 +02:00
parent 49b798ca7e
commit ae30f72c80
Notes: blender-bot 2023-02-14 02:22:07 +01:00
Referenced by issue #89870, Vertex groups are lost if I save a file in 3.0 and open in 2.92 without warnings
1 changed files with 3 additions and 3 deletions

View File

@ -39,13 +39,13 @@ extern "C" {
/* Blender file format version. */
#define BLENDER_FILE_VERSION BLENDER_VERSION
#define BLENDER_FILE_SUBVERSION 11
#define BLENDER_FILE_SUBVERSION 12
/* Minimum Blender version that supports reading file written with the current
* version. Older Blender versions will test this and show a warning if the file
* was written with too new a version. */
#define BLENDER_FILE_MIN_VERSION 290
#define BLENDER_FILE_MIN_SUBVERSION 0
#define BLENDER_FILE_MIN_VERSION 300
#define BLENDER_FILE_MIN_SUBVERSION 11
/** User readable version string. */
const char *BKE_blender_version_string(void);