v2.0.0-preview.1

This commit is contained in:
monitor1394
2021-01-19 12:39:12 +08:00
parent b7ca0ac531
commit 68da7221b8
8 changed files with 36 additions and 24 deletions

View File

@@ -7,7 +7,7 @@
namespace XCharts
{
public partial class PolarChart
public partial class BaseChart
{
/// <summary>
/// 极坐标。

View File

@@ -35,11 +35,11 @@ namespace XCharts
[ExecuteInEditMode]
public class XChartsMgr : MonoBehaviour
{
internal static string _version = "2.0.0";
internal static int _versionDate = 20210117;
internal static string _version = "2.0.0-preview.1";
internal static int _versionDate = 20210119;
public static string version { get { return _version; } }
public static int versionDate { get { return _versionDate; } }
public static string fullVersion { get { return version + "_" + versionDate; } }
public static string fullVersion { get { return version + "-" + versionDate; } }
[SerializeField] private string m_NowVersion;
[SerializeField] private string m_NewVersion;
@@ -173,7 +173,7 @@ namespace XCharts
{
isNetworkError = false;
var cv = JsonUtility.FromJson<XChartsVersion>(web.downloadHandler.text);
m_NewVersion = cv.version + "_" + cv.date;
m_NewVersion = cv.version + "-" + cv.date;
newDate = cv.date;
newCheckDate = cv.checkdate;
desc = cv.desc;