[Bf-blender-cvs] [4c1fb641238] blender-v2.82-release: Cleanup: added 'Versioning code until next subversion bump goes here'

Sybren A. Stüvel noreply at git.blender.org
Tue Jan 14 17:31:57 CET 2020


Commit: 4c1fb6412384b73c8900ce89462ee33a9609ad88
Author: Sybren A. Stüvel
Date:   Tue Jan 14 17:10:28 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rB4c1fb6412384b73c8900ce89462ee33a9609ad88

Cleanup: added 'Versioning code until next subversion bump goes here'

The `do_versions_after_linking_280()` function was missing a placeholder
for the newly added versioning code. I copied the comments from the
`blo_do_versions_280()` function.

No functional changes.

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

M	source/blender/blenloader/intern/versioning_280.c

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

diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index 4443c4bb4ad..d696aef76d4 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -1537,7 +1537,18 @@ void do_versions_after_linking_280(Main *bmain, ReportList *UNUSED(reports))
     }
   }
 
+  /**
+   * Versioning code until next subversion bump goes here.
+   *
+   * \note Be sure to check when bumping the version:
+   * - "versioning_userdef.c", #BLO_version_defaults_userpref_blend
+   * - "versioning_userdef.c", #do_versions_theme
+   *
+   * \note Keep this message at the bottom of the function.
+   */
   {
+    /* Keep this block, even when empty. */
+
     /* During development of Blender 2.80 the "Object.hide" property was
      * removed, and reintroduced in 5e968a996a53 as "Object.hide_viewport". */
     LISTBASE_FOREACH (Object *, ob, &bmain->objects) {



More information about the Bf-blender-cvs mailing list