发布v1.6.0版本

This commit is contained in:
monitor1394
2020-08-24 22:49:47 +08:00
parent 2c1c50c72b
commit e82ee56b7f
6 changed files with 10 additions and 9 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -1,4 +1,3 @@
using System;
/******************************************/
/* */
/* Copyright (c) 2018 monitor1394 */

View File

@@ -29,8 +29,8 @@ namespace XCharts
[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;

View File

@@ -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.",

View File

@@ -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"
}