Skip to content

Commit

Permalink
发布v1.6.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
monitor1394 committed Aug 24, 2020
1 parent 2c1c50c commit e82ee56
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions Assets/XCharts/CHANGELOG-EN.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

# 更新日志

* (2020.08.24) Release `V1.6.0` version
* (2020.08.23) Refactor code, replace `Color` with `Color32` for reduce implicit conversion (Can cause custom colors to lose, reference [Q&A 29](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/Documentation/xcharts-questions-and-answers-EN.md) to upgrade)
* (2020.08.15) Optimize `PieChart` drawing performance effect #85
* (2020.08.11) Added `LiquidChart` data change animation#83
Expand Down
1 change: 1 addition & 0 deletions Assets/XCharts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

# 更新日志

* (2020.08.24) 发布`v1.6.0`版本
* (2020.08.23) 重构代码,将与绘制相关的`Color`改为`Color32`,减少隐式转换(更新后会导致自定义的颜色丢失,可参考[问答29](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Assets/XCharts/Documentation/XCharts问答.md)进行升级)
* (2020.08.15) 优化`PieChart`绘制表现效果#85
* (2020.08.11) 增加`LiquidChart`数据变更动画#83
Expand Down
1 change: 0 additions & 1 deletion Assets/XCharts/Editor/Tools/UpgradeChartColor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
/******************************************/
/* */
/* Copyright (c) 2018 monitor1394 */
Expand Down
4 changes: 2 additions & 2 deletions Assets/XCharts/Runtime/Internal/Utility/XChartsMgr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class XChartsVersion
[ExecuteInEditMode]
public class XChartsMgr : MonoBehaviour
{
public const string version = "1.5.2";
public const int date = 20200625;
public const string version = "1.6.0";
public const int date = 20200824;

[SerializeField] private string m_NowVersion;
[SerializeField] private string m_NewVersion;
Expand Down
6 changes: 3 additions & 3 deletions Assets/XCharts/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "com.monitor1394.xcharts",
"displayName": "XCharts",
"version": "1.5.2",
"date": "20200625",
"checkdate": "20200625",
"version": "1.6.0",
"date": "20200824",
"checkdate": "20200824",
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
"unity": "2018.3",
"description": "A charting and data visualization library for Unity.",
Expand Down
6 changes: 3 additions & 3 deletions Assets/XCharts/version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.5.2",
"date": "20200625",
"checkdate": "20200625",
"version": "1.6.0",
"date": "20200824",
"checkdate": "20200824",
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
"homepage": "https://github.com/monitor1394/unity-ugui-XCharts"
}

0 comments on commit e82ee56

Please sign in to comment.