Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
monitor1394 committed Nov 27, 2021
1 parent b304bd2 commit acae09b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 6 additions & 2 deletions Assets/XCharts/CHANGELOG-EN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# 更新日志

[master](#master)
[branch-2.0](#branch-2.0)
[v2.5.0](#v2.5.0)
[v2.4.0](#v2.4.0)
[v2.3.0](#v2.3.0)
[v2.2.3](#v2.2.3)
Expand Down Expand Up @@ -38,8 +39,11 @@
[v0.5.0](#v0.5.0)
[v0.1.0](#v0.1.0)

## master
## branch-2.0

## v2.5.0

* (2021.11.27) Release `v2.5.0` version
* (2021.11.27) Added `Tooltip` delegate function `positionFunction`
* (2021.10.29) Removed settings for `TextMeshPro` when package first imported
* (2021.10.29) Added support for `{e}` in `Tooltip` #170
Expand Down
8 changes: 6 additions & 2 deletions Assets/XCharts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# 更新日志

[master](#master)
[branch-2.0](#branch-2.0)
[v2.5.0](#v2.5.0)
[v2.4.0](#v2.4.0)
[v2.3.0](#v2.3.0)
[v2.2.3](#v2.2.3)
Expand Down Expand Up @@ -38,8 +39,11 @@
[v0.5.0](#v0.5.0)
[v0.1.0](#v0.1.0)

## master
## branch-2.0

## v2.5.0

* (2021.11.27) 发布`v2.5.0`版本
* (2021.11.27) 增加`Tooltip``positionFunction`的坐标设置委托函数
* (2021.10.29) 移除`XCharts`首次导入时`TextMeshPro`的相关设置
* (2021.10.29) 增加`Tooltip`对通配符`{e}`的支持 #170
Expand Down
4 changes: 2 additions & 2 deletions Assets/XCharts/Runtime/XChartsMgr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class XChartsVersion
[ExecuteInEditMode]
public class XChartsMgr : MonoBehaviour
{
internal static string _version = "2.4.0";
internal static int _versionDate = 20210831;
internal static string _version = "2.5.0";
internal static int _versionDate = 20211127;
public static string version { get { return _version; } }
public static int versionDate { get { return _versionDate; } }
public static string fullVersion { get { return version + "-" + versionDate; } }
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": "2.4.0",
"date": "20210831",
"checkdate": "20210831",
"version": "2.5.0",
"date": "20211127",
"checkdate": "20211127",
"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": "2.4.0",
"date": "20210831",
"checkdate": "20210831",
"version": "2.5.0",
"date": "20211127",
"checkdate": "20211127",
"desc": "如果 XCharts 对您有帮助,希望您能在 Github 上点 Star 支持,非常感谢!",
"homepage": "https://github.com/monitor1394/unity-ugui-XCharts"
}

0 comments on commit acae09b

Please sign in to comment.