Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_blender_version.h
| Show All 21 Lines | |||||
| /** | /** | ||||
| * The lines below use regex from scripts to extract their values, | * The lines below use regex from scripts to extract their values, | ||||
| * Keep this in mind when modifying this file and keep this comment above the defines. | * Keep this in mind when modifying this file and keep this comment above the defines. | ||||
| * | * | ||||
| * \note Use #STRINGIFY() rather than defining with quotes. | * \note Use #STRINGIFY() rather than defining with quotes. | ||||
| */ | */ | ||||
| #define BLENDER_VERSION 282 | #define BLENDER_VERSION 282 | ||||
| #define BLENDER_SUBVERSION 1 | #define BLENDER_SUBVERSION 2 | ||||
| /** Several breakages with 280, e.g. collections vs layers. */ | /** Several breakages with 280, e.g. collections vs layers. */ | ||||
| #define BLENDER_MINVERSION 280 | #define BLENDER_MINVERSION 280 | ||||
| #define BLENDER_MINSUBVERSION 0 | #define BLENDER_MINSUBVERSION 0 | ||||
| /** Used by packaging tools. */ | /** Used by packaging tools. */ | ||||
| /** Can be left blank, otherwise a,b,c... etc with no quotes. */ | /** Can be left blank, otherwise a,b,c... etc with no quotes. */ | ||||
| #define BLENDER_VERSION_CHAR | #define BLENDER_VERSION_CHAR | ||||
| /** alpha/beta/rc/release, docs use this. */ | /** alpha/beta/rc/release, docs use this. */ | ||||
| #define BLENDER_VERSION_CYCLE alpha | #define BLENDER_VERSION_CYCLE alpha | ||||
| /** Optionally set to 1,2,... for example to get alpha1 or rc2. */ | /** Optionally set to 1,2,... for example to get alpha1 or rc2. */ | ||||
| #define BLENDER_VERSION_CYCLE_NUMBER | #define BLENDER_VERSION_CYCLE_NUMBER | ||||
| /** Defined in from blender.c */ | /** Defined in from blender.c */ | ||||
| extern char versionstr[]; | extern char versionstr[]; | ||||
| #endif /* __BKE_BLENDER_VERSION_H__ */ | #endif /* __BKE_BLENDER_VERSION_H__ */ | ||||