Commit: 680fa8a523e0df2181305a1d2abfb52011510f59
Author: Charlie Jolly
Date:   Thu Sep 22 17:08:00 2022 +0100
Branches: master
https://developer.blender.org/rB680fa8a523e0df2181305a1d2abfb52011510f59

Fix T100846: Bump blender file min version for forward compatibility warning

Also reported in blender.chat.

Corrupted files were reported after opening files with the new Mix node 
(rBbfa0ee13d539).

Files saved in 3.4 will not be compatible with older versions of Blender.

Opening these files in previous versions will exhibit a red undefined node.

Reviewed By: HooglyBoogly, brecht

Differential Revision: https://developer.blender.org/D16025

===================================================================

M       source/blender/blenkernel/BKE_blender_version.h

===================================================================

diff --git a/source/blender/blenkernel/BKE_blender_version.h 
b/source/blender/blenkernel/BKE_blender_version.h
index ee9c7a964d9..46d6c97e1ff 100644
--- a/source/blender/blenkernel/BKE_blender_version.h
+++ b/source/blender/blenkernel/BKE_blender_version.h
@@ -30,8 +30,8 @@ extern "C" {
 /* 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 300
-#define BLENDER_FILE_MIN_SUBVERSION 43
+#define BLENDER_FILE_MIN_VERSION 304
+#define BLENDER_FILE_MIN_SUBVERSION 0
 
 /** User readable version string. */
 const char *BKE_blender_version_string(void);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to