Correct version bump from 41b63ebda2
This commit is contained in:
@@ -177,7 +177,7 @@ def keyconfig_update(keyconfig_data, keyconfig_version):
|
||||
km_items_data["items"].append(
|
||||
("PASSTHROUGH_NAVIGATE", {"type": 'LEFT_ALT', "value": 'ANY', "any": True}, None))
|
||||
|
||||
if keyconfig_version <= (4, 1, 14):
|
||||
if keyconfig_version <= (4, 1, 21):
|
||||
rename_keymap({"NLA Channels": "NLA Tracks"})
|
||||
|
||||
return keyconfig_data
|
||||
|
||||
@@ -29,7 +29,7 @@ extern "C" {
|
||||
|
||||
/* Blender file format version. */
|
||||
#define BLENDER_FILE_VERSION BLENDER_VERSION
|
||||
#define BLENDER_FILE_SUBVERSION 20
|
||||
#define BLENDER_FILE_SUBVERSION 21
|
||||
|
||||
/* Minimum Blender version that supports reading file written with the current
|
||||
* version. Older Blender versions will test this and cancel loading the file, showing a warning to
|
||||
@@ -39,7 +39,7 @@ extern "C" {
|
||||
* https://developer.blender.org/docs/handbook/guidelines/compatibility_handling_for_blend_files/
|
||||
* for details. */
|
||||
#define BLENDER_FILE_MIN_VERSION 306
|
||||
#define BLENDER_FILE_MIN_SUBVERSION 14
|
||||
#define BLENDER_FILE_MIN_SUBVERSION 13
|
||||
|
||||
/** User readable version string. */
|
||||
const char *BKE_blender_version_string(void);
|
||||
|
||||
@@ -915,7 +915,7 @@ void blo_do_versions_userdef(UserDef *userdef)
|
||||
userdef->keying_flag |= AUTOKEY_FLAG_INSERTNEEDED;
|
||||
}
|
||||
|
||||
if (!USER_VERSION_ATLEAST(401, 14)) {
|
||||
if (!USER_VERSION_ATLEAST(401, 21)) {
|
||||
LISTBASE_FOREACH (wmKeyMap *, km, &userdef->user_keymaps) {
|
||||
if (STREQ(km->idname, "NLA Channels")) {
|
||||
STRNCPY(km->idname, "NLA Tracks");
|
||||
|
||||
Reference in New Issue
Block a user