From 6d507470e04c51247f03f101636d439f4d9d04df Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Fri, 5 Feb 2021 21:46:31 +0800 Subject: [PATCH] v2.0.0 --- CHANGELOG.md | 3 +++ README.md | 5 +++++ Runtime/XChartsMgr.cs | 4 ++-- package.json | 6 +++--- version.json | 6 +++--- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b346b55..d59c5c23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,9 @@ ## Latest +## 2.0.0 + +* (2021.02.05) 发布`v2.0.0`版本 * (2021.02.03) 修复`AxisLine`的`OnZero`对`YAxis`不生效的问题 #116 * (2021.01.29) 修复`Category`轴在`BoundaryGap`和`AlignWithLabel`为`True`时`Tick`显示效果不对的问题 #115 * (2021.01.25) 优化一些细节 diff --git a/README.md b/README.md index 4f91ad78..4aa49cbc 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,11 @@ A powerful, easy-to-use, configurable charting and data visualization library fo ![radarchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-radar.png) ![scatterchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-scatter.png) ![heatmapchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-heatmap.png) +![gaugechart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-gauge.png) +![ringchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-ring.png) +![polarchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-polar.png) +![liquidchart](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-liquid.png) +![combinations](https://github.com/monitor1394/unity-ugui-XCharts/blob/master/Doc/screenshot/xcharts-combinations.png) ## Cheat Sheet diff --git a/Runtime/XChartsMgr.cs b/Runtime/XChartsMgr.cs index 0be66718..e23bea7d 100644 --- a/Runtime/XChartsMgr.cs +++ b/Runtime/XChartsMgr.cs @@ -35,8 +35,8 @@ namespace XCharts [ExecuteInEditMode] public class XChartsMgr : MonoBehaviour { - internal static string _version = "2.0.0-preview.2"; - internal static int _versionDate = 20210121; + internal static string _version = "2.0.0"; + internal static int _versionDate = 20210205; public static string version { get { return _version; } } public static int versionDate { get { return _versionDate; } } public static string fullVersion { get { return version + "-" + versionDate; } } diff --git a/package.json b/package.json index 41a2c6ad..1a95f13d 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "com.monitor1394.xcharts", "displayName": "XCharts", - "version": "2.0.0-preview.2", - "date": "20210121", - "checkdate": "20210121", + "version": "2.0.0", + "date": "20210205", + "checkdate": "20210205", "desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!", "unity": "2018.3", "description": "A charting and data visualization library for Unity.", diff --git a/version.json b/version.json index 7860a843..a2e274cb 100644 --- a/version.json +++ b/version.json @@ -1,7 +1,7 @@ { - "version": "2.0.0-preview.2", - "date": "20210121", - "checkdate": "20210121", + "version": "2.0.0", + "date": "20210205", + "checkdate": "20210205", "desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!", "homepage": "https://github.com/monitor1394/unity-ugui-XCharts" } \ No newline at end of file