Skip to content

Commit

Permalink
upgraded yoo version
Browse files Browse the repository at this point in the history
  • Loading branch information
michael811125 committed Sep 25, 2023
1 parent e01aec7 commit dd7cf41
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 3 deletions.
44 changes: 44 additions & 0 deletions Assets/OxGFrame/AssetLoader/ThirdParty/YooAsset/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,50 @@

All notable changes to this package will be documented in this file.

## [1.5.5-preview] - 2023-09-25

### Fixed

- (#96) 修复了异步操作任务的完成回调在业务层触发异常时无法正常完成的问题。
- (#156) 修复了多个Package存在时,服务器请求地址请求顺序不对的问题。
- (#163) 修复了Unity2019版本编译报错的问题。
- (#167) 修复了初始化时每次都会提示文件验证失败日志。
- (#171) 修复了IsNeedDownloadFromRemote里缺少判断依赖的资源是否下载 。

### Added

- 资源收集器里增加了AddressDisable规则。

- 资源收集器里FilterRuleData结构体增加了多个备选字段。

```c#
public struct FilterRuleData
{
public string AssetPath;
public string CollectPath;
public string GroupName;
public string UserData;
}
```

### Changed

- 可以设置自定义参数DefaultYooFolderName

- 资源配置界面的分组不激活时,不再进行配置检测。

- SBP构建管线增加新构建参数用于修复图集资源冗余问题。

```c#
public class SBPBuildParameters
{
/// <summary>
/// 修复图集资源冗余问题
/// </summary>
public bool FixSpriteAtlasRedundancy = false;
}
```

## [1.5.4-preview] - 2023-08-25

优化了资源清单文件构建速度(极大提升构建体验)(感谢yingnierxiao同学)。
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.tuyoogame.yooasset",
"displayName": "YooAsset",
"version": "1.5.4-preview",
"version": "1.5.5-preview",
"unity": "2019.4",
"description": "unity3d resources management system.",
"author": {
Expand Down
3 changes: 3 additions & 0 deletions Assets/OxGFrame/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## [2.8.1] - 2023-09-25
- Upgraded YooAsset to v1.5.5-preview.

## [2.8.0] - 2023-09-24
- Upgraded UniTask to v2.4.1.
- Added BundlePlan for Export Bundle And Config Generator editor (can save bundle plans).
Expand Down
2 changes: 1 addition & 1 deletion Assets/OxGFrame/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.michaelo.oxgframe",
"displayName": "OxGFrame",
"description": "The OxGFrame is a framework based on Unity for accelerating game development. Supports multi-platform Win, OSX, Android, iOS, WebGL.",
"version": "2.8.0",
"version": "2.8.1",
"unity": "2021.3",
"license": "MIT",
"samples": [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ OxGFrame 是基於 Unity 用於加快遊戲開發的框架,並且使用 UniTas
### Sub-ThirdParty

- 使用 [UnityWebSocket v2.7.0](https://github.com/psygames/UnityWebSocket) (最佳 WebSocket 解決方案) **特別推薦**
- 使用 [YooAsset v1.5.4-preview](https://github.com/tuyoogame/YooAsset) (強大的資源熱更新方案) **特別推薦**
- 使用 [YooAsset v1.5.5-preview](https://github.com/tuyoogame/YooAsset) (強大的資源熱更新方案) **特別推薦**

※備註 : 會持續更新內建第三方庫。

Expand Down

0 comments on commit dd7cf41

Please sign in to comment.