This commit is contained in:
monitor1394
2021-04-07 20:30:40 +08:00
parent ffea4025a0
commit 40a9b19a63
5 changed files with 16 additions and 8 deletions

View File

@@ -2,6 +2,7 @@
# 更新日志
[Latest](#Latest)
[v2.1.0](#v2.1.0)
[v2.0.1](#v2.0.1)
[v2.0.0](#v2.0.0)
[v2.0.0-preview.2](#v2.0.0-preview.2)
@@ -32,6 +33,9 @@
## Latest
## v2.1.0
* (2021.04.07) Release `v2.1.0` version
* (2021.03.31) Optimized and refactor `Theme` to solve problems with the same or missing references #118
* (2021.03.30) Optimized `Tooltip` to support setting different category axis data #129
* (2021.03.29) Optimized the custom draw callback API

View File

@@ -2,6 +2,7 @@
# 更新日志
[Latest](#Latest)
[v2.1.0](#v2.1.0)
[v2.0.1](#v2.0.1)
[v2.0.0](#v2.0.0)
[v2.0.0-preview.2](#v2.0.0-preview.2)
@@ -32,6 +33,9 @@
## Latest
## v2.1.0
* (2021.04.07) 发布`v2.1.0`版本
* (2021.03.31) 优化和重构`Theme`,解决引用相同或丢失的问题 #118
* (2021.03.30) 优化`Tooltip`支持设置不同的类目轴数据 #129
* (2021.03.29) 优化自定义绘制回调接口,增加`onCustomDrawBeforeSerie``onCustomDrawAfterSerie``onCustomDrawTop`

View File

@@ -37,8 +37,8 @@ namespace XCharts
[ExecuteInEditMode]
public class XChartsMgr : MonoBehaviour
{
internal static string _version = "2.0.1";
internal static int _versionDate = 20210226;
internal static string _version = "2.1.0";
internal static int _versionDate = 20210407;
public static string version { get { return _version; } }
public static int versionDate { get { return _versionDate; } }
public static string fullVersion { get { return version + "-" + versionDate; } }

View File

@@ -1,9 +1,9 @@
{
"name": "com.monitor1394.xcharts",
"displayName": "XCharts",
"version": "2.0.1",
"date": "20210226",
"checkdate": "20210226",
"version": "2.1.0",
"date": "20210407",
"checkdate": "20210407",
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
"unity": "2018.3",
"description": "A charting and data visualization library for Unity.",

View File

@@ -1,7 +1,7 @@
{
"version": "2.0.1",
"date": "20210226",
"checkdate": "20210226",
"version": "2.1.0",
"date": "20210407",
"checkdate": "20210407",
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
"homepage": "https://github.com/monitor1394/unity-ugui-XCharts"
}