Skip to content

Commit 2f1ab9d

Browse files
authored
change version to v3.8.4 (#17332)
1 parent 46e8a20 commit 2f1ab9d

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

cocos/core/global-exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if (DEV) {
4646
legacyCC._Test = {};
4747
}
4848

49-
const engineVersion = '3.8.5';
49+
const engineVersion = '3.8.4';
5050

5151
/**
5252
* @en

cocos/tween/actions/action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export abstract class Action {
5252
protected target: unknown = null;
5353

5454
/**
55-
* The `workerTarget` was added from Cocos Creator 3.8.5 and it's used for nest `Tween` functionality.
55+
* The `workerTarget` was added from Cocos Creator 3.8.4 and it's used for nest `Tween` functionality.
5656
* It stores the target of sub-tween and its value may be different from `target`.
5757
*
5858
* Example 1:

cocos/tween/tween.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ export interface ITweenCustomProperty<Value> {
6060
value: MaybeUnionStringNumber<Value> | (() => MaybeUnionStringNumber<Value>);
6161
progress?: TweenCustomProgress;
6262
easing?: TweenCustomEasing;
63-
convert?: ExtendsReturnResultOrNever<Value, string, (v: string) => number | string>; // Supported from v3.8.5
64-
clone?: ExtendsReturnResultOrNever<Value, object, (v: Value) => Value>; // Supported from v3.8.5
65-
add?: (a: Value, b: Value) => Value; // Supported from v3.8.5
66-
sub?: (a: Value, b: Value) => Value; // Supported from v3.8.5
67-
legacyProgress?: ExtendsReturnResultOrNever<Value, object, boolean>; // Supported from v3.8.5, the default value is true for compatiblity
68-
toFixed?: ExtendsReturnResultOrNever<Value, string, number>; // Supported from v3.8.5
63+
convert?: ExtendsReturnResultOrNever<Value, string, (v: string) => number | string>; // Supported from v3.8.4
64+
clone?: ExtendsReturnResultOrNever<Value, object, (v: Value) => Value>; // Supported from v3.8.4
65+
add?: (a: Value, b: Value) => Value; // Supported from v3.8.4
66+
sub?: (a: Value, b: Value) => Value; // Supported from v3.8.4
67+
legacyProgress?: ExtendsReturnResultOrNever<Value, object, boolean>; // Supported from v3.8.4, the default value is true for compatiblity
68+
toFixed?: ExtendsReturnResultOrNever<Value, string, number>; // Supported from v3.8.4
6969
onStart?: (param: ITweenCustomPropertyStartParameter<Value>) => void;
7070
onStop?: () => void;
7171
onComplete?: () => void;

native/cocos/cocos-version.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ THE SOFTWARE.
2323
****************************************************************************/
2424
#pragma once
2525

26-
#define COCOS_MAJOR_VERSION 3
27-
#define COCOS_MINJOR_VERSION 8
28-
#define COCOS_PATCH_VERSION 5
29-
#define COCOS_VERSION_STRING "3.8.5"
30-
#define COCOS_VERSION_DEFINED 1
31-
#define COCOS_VERSION 30805
26+
#define COCOS_MAJOR_VERSION 3
27+
#define COCOS_MINJOR_VERSION 8
28+
#define COCOS_PATCH_VERSION 4
29+
#define COCOS_VERSION_STRING "3.8.4"
30+
#define COCOS_VERSION_DEFINED 1
31+
#define COCOS_VERSION 30804
3232

3333
// #define COCOS_PRE_RELEASE "release"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cocos-creator",
3-
"version": "3.8.5",
3+
"version": "3.8.4",
44
"description": "Cocos Creator is a cross-platform 2D & 3D game engine written in C++ and TypeScript, licensed under MIT.",
55
"homepage": "http://www.cocos.com",
66
"license": "MIT",

0 commit comments

Comments
 (0)