Skip to content

Commit

Permalink
[unity] changelog of 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieyang committed Jul 31, 2023
1 parent 0cc6b0b commit fef296b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![unreal](https://img.shields.io/badge/unreal-v1.0.4-blue.svg)](https://github.com/Tencent/puerts/releases/tag/Unreal_v1.0.4)

[![unity](https://img.shields.io/badge/unity(stable)-v1.4.2-blue.svg)](doc/unity/zhcn/install.md)
[![unity](https://img.shields.io/badge/unity(latest)-v2.0.0_rc.0-blue.svg)](doc/unity/zhcn/install.md)
[![unity](https://img.shields.io/badge/unity(latest)-v2.0.0-blue.svg)](doc/unity/zhcn/install.md)
![Unity_Test](https://github.com/Tencent/puerts/workflows/unity%20unittest/badge.svg)

## What?
Expand Down
9 changes: 9 additions & 0 deletions unity/Assets/core/upm/changelog-hans.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

you can get the english version change log at [Github Release](https://github.com/Tencent/puerts/releases)

## [2.0.0] - 2023-07-31
1. 修复:debugpath失效并导致VSCode调试不可用的问题
2. 修复:xil2cpp模式下`puer.$genericMethod`无法获取父类泛型函数的问题 #1417 @danij91
3. 修复:生成代码时报GetFriendlyName is not a function的问题 #1437

这个版本是2.0第一个正式版本。感谢所有参与过2.0内测的朋友。

对升级有疑问的朋友可以参见[升级指南](https://puerts.github.io/docs/puerts/unity/other/upgrade)

## [2.0.0-rc.1] - 2023-07-14
1. 修复: BlittableCopy不可用的问题 #1427
2. 修复: 两个wrapper生成的问题 #1433 #1432
Expand Down
9 changes: 9 additions & 0 deletions unity/Assets/core/upm/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

you can get the english version change log at [Github Release](https://github.com/Tencent/puerts/releases)

## [2.0.0] - 2023-07-31
1. Fix: `debugpath` was not work and make VSCode debug not availabled
2. Fix: `puer.$genericMethod` cannot get the genericMethod from super class in xil2cpp mode #1417 @danij91
3. Fix: `GetFriendlyName is not a function` when generating extensionInfo #1437

This is the first stable version of `2.0.0`. Shout out to everyone who attending the test.

If you need any help in upgrading. See [upgrade guide](https://puerts.github.io/en/docs/puerts/unity/other/upgrade/)

## [2.0.0-rc.1] - 2023-07-14
1. Fix: BlitableCopy was broken issue #1427
2. Fix: two wrapper generation issue #1433 #1432
Expand Down
3 changes: 2 additions & 1 deletion unity/test/unity/Assets/Scripts/HelloWorlder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ void Update()
{
if (env != null)
{
if (ShouldDispose > 0) {
if (ShouldDispose > 0)
{
env.Dispose();
return;
}
Expand Down

0 comments on commit fef296b

Please sign in to comment.