Skip to content

Commit

Permalink
ALPHA Version Change
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMoradi committed Aug 30, 2021
1 parent 8244fbd commit 32e95ed
Show file tree
Hide file tree
Showing 7 changed files with 2,774 additions and 2,662 deletions.
1,436 changes: 736 additions & 700 deletions engine/Assembly-CSharp.csproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions engine/Assets/Scripts/AutoUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ void Start()
{
// var versionText = GameObject.Find("VersionNumber").GetComponent<Text>();
// versionText.text = "Version " + LocalVersion;
Debug.Log($"Version {LocalVersion} Beta");
Debug.Log($"Version {LocalVersion} ALPHA");
// game = GameObject.Find("UpdatePrompt");

// Analytics For Client Startup
var init = new AnalyticsEvent(category: "Startup", action: "Launched", label: $"Version {LocalVersion} BETA");
var init = new AnalyticsEvent(category: "Startup", action: "Launched", label: $"Version {LocalVersion} ALPHA");
AnalyticsManager.LogEvent(init);
AnalyticsManager.PostData();

Expand Down
2 changes: 1 addition & 1 deletion engine/Assets/Scripts/UI/NavigationBar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class NavigationBar : MonoBehaviour
private string lastOpenedPanel;

private void Start() {
VersionNumber.text = $"v {AutoUpdater.LocalVersion} BETA";
VersionNumber.text = $"v {AutoUpdater.LocalVersion} ALPHA";
OpenTab(homeTab);
}

Expand Down
1,498 changes: 761 additions & 737 deletions engine/CoreEngine.csproj

Large diffs are not rendered by default.

1,245 changes: 634 additions & 611 deletions engine/EditModeTests.csproj

Large diffs are not rendered by default.

1,214 changes: 617 additions & 597 deletions engine/PlayModeTests.csproj

Large diffs are not rendered by default.

37 changes: 23 additions & 14 deletions engine/engine.sln
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoreEngine", "CoreEngine.csproj", "{28740e66-4b28-d1ee-7ffd-ca276d12197b}"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoreEngine", "CoreEngine.csproj", "{660E7428-284B-EED1-7FFD-CA276D12197B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{b5a8759e-0364-3356-928d-1a35a0a8a237}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{9E75A8B5-6403-5633-928D-1A35A0A8A237}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayModeTests", "PlayModeTests.csproj", "{7a96e841-d41a-b76d-ba5e-7e9f67b26716}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayModeTests", "PlayModeTests.csproj", "{41E8967A-1AD4-6DB7-BA5E-7E9F67B26716}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditModeTests", "EditModeTests.csproj", "{03aa75bb-fbc0-7460-e634-7afe38ec939b}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EditModeTests", "EditModeTests.csproj", "{BB75AA03-C0FB-6074-E634-7AFE38EC939B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{28740e66-4b28-d1ee-7ffd-ca276d12197b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{28740e66-4b28-d1ee-7ffd-ca276d12197b}.Debug|Any CPU.Build.0 = Debug|Any CPU
{b5a8759e-0364-3356-928d-1a35a0a8a237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{b5a8759e-0364-3356-928d-1a35a0a8a237}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7a96e841-d41a-b76d-ba5e-7e9f67b26716}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7a96e841-d41a-b76d-ba5e-7e9f67b26716}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03aa75bb-fbc0-7460-e634-7afe38ec939b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03aa75bb-fbc0-7460-e634-7afe38ec939b}.Debug|Any CPU.Build.0 = Debug|Any CPU
{660E7428-284B-EED1-7FFD-CA276D12197B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{660E7428-284B-EED1-7FFD-CA276D12197B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{660E7428-284B-EED1-7FFD-CA276D12197B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{660E7428-284B-EED1-7FFD-CA276D12197B}.Release|Any CPU.Build.0 = Release|Any CPU
{9E75A8B5-6403-5633-928D-1A35A0A8A237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9E75A8B5-6403-5633-928D-1A35A0A8A237}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9E75A8B5-6403-5633-928D-1A35A0A8A237}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9E75A8B5-6403-5633-928D-1A35A0A8A237}.Release|Any CPU.Build.0 = Release|Any CPU
{41E8967A-1AD4-6DB7-BA5E-7E9F67B26716}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41E8967A-1AD4-6DB7-BA5E-7E9F67B26716}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41E8967A-1AD4-6DB7-BA5E-7E9F67B26716}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41E8967A-1AD4-6DB7-BA5E-7E9F67B26716}.Release|Any CPU.Build.0 = Release|Any CPU
{BB75AA03-C0FB-6074-E634-7AFE38EC939B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB75AA03-C0FB-6074-E634-7AFE38EC939B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB75AA03-C0FB-6074-E634-7AFE38EC939B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB75AA03-C0FB-6074-E634-7AFE38EC939B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 32e95ed

Please sign in to comment.