forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditorUpdateWindow.cs
148 lines (114 loc) · 5.08 KB
/
EditorUpdateWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using System.Collections;
using UnityEditor;
using UnityEditorInternal;
namespace UnityEditor
{
internal class EditorUpdateWindow : EditorWindow
{
static void ShowEditorErrorWindow(string errorString)
{
LoadResources();
EditorUpdateWindow w = ShowWindow();
w.s_ErrorString = errorString;
w.s_HasConnectionError = true;
w.s_HasUpdate = false;
}
static void ShowEditorUpdateWindow(string latestVersionString, string latestVersionMessage, string updateURL)
{
LoadResources();
EditorUpdateWindow w = ShowWindow();
w.s_LatestVersionString = latestVersionString;
w.s_LatestVersionMessage = latestVersionMessage;
w.s_UpdateURL = updateURL;
w.s_HasConnectionError = false;
w.s_HasUpdate = updateURL.Length > 0;
}
private static EditorUpdateWindow ShowWindow()
{
return EditorWindow.GetWindowWithRect(typeof(EditorUpdateWindow), new Rect(100, 100, 570, 400), true, s_Title.text) as EditorUpdateWindow;
}
private static GUIContent s_UnityLogo;
private static GUIContent s_Title;
private static GUIContent s_TextHasUpdate, s_TextUpToDate;
private static GUIContent s_CheckForNewUpdatesText;
[SerializeField]
private string s_ErrorString;
[SerializeField]
private string s_LatestVersionString;
[SerializeField]
private string s_LatestVersionMessage;
[SerializeField]
private string s_UpdateURL;
[SerializeField]
private bool s_HasUpdate;
[SerializeField]
private bool s_HasConnectionError;
private static bool s_ShowAtStartup;
private Vector2 m_ScrollPos;
private static void LoadResources()
{
if (s_UnityLogo != null)
return;
s_ShowAtStartup = EditorPrefs.GetBool("EditorUpdateShowAtStartup", true);
s_Title = EditorGUIUtility.TrTextContent("Unity Editor Update Check");
s_UnityLogo = EditorGUIUtility.IconContent("UnityLogo");
s_TextHasUpdate = EditorGUIUtility.TrTextContent("There is a new version of the Unity Editor available for download.\n\nCurrently installed version is {0}\nNew version is {1}");
s_TextUpToDate = EditorGUIUtility.TrTextContent("The Unity Editor is up to date. Currently installed version is {0}");
s_CheckForNewUpdatesText = EditorGUIUtility.TrTextContent("Check for Updates");
}
public void OnGUI()
{
LoadResources();
GUILayout.BeginVertical();
GUILayout.Space(10);
GUI.Box(new Rect(13, 8, s_UnityLogo.image.width, s_UnityLogo.image.height), s_UnityLogo, GUIStyle.none);
GUILayout.Space(5);
GUILayout.BeginHorizontal();
GUILayout.Space(120);
GUILayout.BeginVertical();
if (s_HasConnectionError)
{
GUILayout.Label(s_ErrorString, "WordWrappedLabel", GUILayout.Width(405));
}
else if (s_HasUpdate)
{
GUILayout.Label(string.Format(s_TextHasUpdate.text, InternalEditorUtility.GetFullUnityVersion(), s_LatestVersionString), "WordWrappedLabel", GUILayout.Width(300));
GUILayout.Space(20);
m_ScrollPos = EditorGUILayout.BeginScrollView(m_ScrollPos, GUILayout.Width(405), GUILayout.Height(200));
GUILayout.Label(s_LatestVersionMessage, "WordWrappedLabel");
EditorGUILayout.EndScrollView();
GUILayout.Space(20);
GUILayout.BeginHorizontal();
if (GUILayout.Button("Download new version", GUILayout.Width(200)))
Help.BrowseURL(s_UpdateURL);
if (GUILayout.Button("Skip new version", GUILayout.Width(200)))
{
EditorPrefs.SetString("EditorUpdateSkipVersionString", s_LatestVersionString);
Close();
}
GUILayout.EndHorizontal();
}
else
{
GUILayout.Label(string.Format(s_TextUpToDate.text, Application.unityVersion), "WordWrappedLabel", GUILayout.Width(405));
}
GUILayout.EndVertical();
GUILayout.EndHorizontal();
GUILayout.Space(8);
GUILayout.FlexibleSpace();
GUILayout.BeginHorizontal(GUILayout.Height(20));
GUILayout.FlexibleSpace();
GUI.changed = false;
s_ShowAtStartup = GUILayout.Toggle(s_ShowAtStartup, s_CheckForNewUpdatesText);
if (GUI.changed)
EditorPrefs.SetBool("EditorUpdateShowAtStartup", s_ShowAtStartup);
GUILayout.Space(10);
GUILayout.EndHorizontal();
GUILayout.EndVertical();
}
}
} // namespace