Merge branch 'blender-v3.3-release'

This commit is contained in:
Thomas Dinges 2022-07-27 17:31:49 +02:00
commit 3b71a62390
5 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0-or-later
## Update and uncomment this in the release branch
# set(BLENDER_VERSION 3.1)
set(BLENDER_VERSION 3.3)
function(download_source dep)
set(TARGET_FILE ${${dep}_FILE})

View File

@ -5,38 +5,38 @@
update-code:
git:
submodules:
- branch: master
- branch: blender-v3.3-release
commit_id: HEAD
path: release/scripts/addons
- branch: master
- branch: blender-v3.3-release
commit_id: HEAD
path: release/scripts/addons_contrib
- branch: master
- branch: blender-v3.3-release
commit_id: HEAD
path: release/datafiles/locale
- branch: master
- branch: blender-v3.3-release
commit_id: HEAD
path: source/tools
svn:
libraries:
darwin-arm64:
branch: trunk
branch: tags/blender-3.3-release
commit_id: HEAD
path: lib/darwin_arm64
darwin-x86_64:
branch: trunk
branch: tags/blender-3.3-release
commit_id: HEAD
path: lib/darwin
linux-x86_64:
branch: trunk
branch: tags/blender-3.3-release
commit_id: HEAD
path: lib/linux_centos7_x86_64
windows-amd64:
branch: trunk
branch: tags/blender-3.3-release
commit_id: HEAD
path: lib/win64_vc15
tests:
branch: trunk
branch: tags/blender-3.3-release
commit_id: HEAD
path: lib/tests
benchmarks:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 823 KiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -21,7 +21,7 @@ extern "C" {
/* Blender patch version for bugfix releases. */
#define BLENDER_VERSION_PATCH 0
/** Blender release cycle stage: alpha/beta/rc/release. */
#define BLENDER_VERSION_CYCLE alpha
#define BLENDER_VERSION_CYCLE beta
/* Blender file format version. */
#define BLENDER_FILE_VERSION BLENDER_VERSION

View File

@ -26,6 +26,7 @@ set(DEFSRC
rna_context.c
rna_curve.c
rna_curveprofile.c
rna_curves.c
rna_depsgraph.c
rna_dynamicpaint.c
rna_fcurve.c
@ -85,7 +86,6 @@ set(DEFSRC
if(WITH_EXPERIMENTAL_FEATURES)
add_definitions(-DWITH_SIMULATION_DATABLOCK)
list(APPEND DEFSRC
rna_curves.c
rna_simulation.c
)
endif()