Skip to content

Commit

Permalink
VERSION 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandrem committed Aug 24, 2019
1 parent a3668d4 commit efa36ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Assets/Scripts/Global/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public class Global : MonoBehaviour {

private static bool isAlreadyInitialized;

public static string CurrentVersion = "0.9.4 DEV";
public static int CurrentVersionInt = 100090300;
public static int LatestVersionInt = 100090300;
public static string CurrentVersion = "0.9.4";
public static int CurrentVersionInt = 100090400;
public static int LatestVersionInt = 100090400;

void Awake()
{
Expand Down
6 changes: 4 additions & 2 deletions Assets/Scripts/Global/Model/Console/Console.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,10 @@ private void ProcessUnityLog(string logString, string stackTrace, LogType type)

if (!DebugManager.ErrorIsAlreadyReported)
{
//if (DebugManager.ReleaseVersion && Global.CurrentVersionInt == Global.LatestVersionInt) { }
SendReport(stackTrace);
if (DebugManager.ReleaseVersion && Global.CurrentVersionInt == Global.LatestVersionInt)
{
SendReport(stackTrace);
}
}

IsActive = true;
Expand Down
4 changes: 2 additions & 2 deletions Assets/Scripts/MainMenu/View/CreditsUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ public static class CreditsUI {

private static readonly Dictionary<string, string> CreditsData = new Dictionary<string, string>()
{
{ "Programming", "Sandrem, Rune-b, Azrapse, Matthew Blanchard, GeneralVryth, bwakefield27, thordurk91, Conzar, deakolt, Galaxy613, TheChiefMoose, YannickBgn, Evan Lundell, Fabio Macal, SirHaplo, Nick Buonarota (NickyDaB), rats3g, tetrarchangel, Andrew Matheny, Jimmy5910, jamorbal, pappnase99, Stephen Wangner, jychuah, jtg15, vladamex, xNyer, Ryan Praska, savagerose, Krumok, Tron, mikethetike, tinydantser, belk, XPav, DejaFu, bitsai, joshhightower, Andrew Nickell" },
{ "Programming", "Sandrem, Rune-b, Azrapse, Matthew Blanchard, GeneralVryth, bwakefield27, thordurk91, Conzar, deakolt, Galaxy613, TheChiefMoose, YannickBgn, Evan Lundell, Fabio Macal, SirHaplo, Nick Buonarota (NickyDaB), rats3g, tetrarchangel, Andrew Matheny, Jimmy5910, jamorbal, pappnase99, Stephen Wangner, jychuah, jtg15, vladamex, xNyer, Ryan Praska, savagerose, Krumok, Tron, mikethetike, tinydantser, belk, XPav, DejaFu, bitsai, joshhightower, Andrew Nickell, barraudl" },
{ "3D Art", "TerranCmdr, Izaak94, Darksaber, DTM, Warb Null, Rob, Gambler, Nim the Netrunner, Gremlyn, Morvana, FabioOtto, Grediel, Cherrybomb67, Smight, Voiceoftheforce, flipdark95, JonnieLP, Atherin, Captain Tributon, JackJohn2942, danielnavax90s, abdyla" },
{ "2D Art", "xwingtmgphotography, Andreas Bazylewsi, Andrew McCarthy" },
{ "Music", "Daniel (Affordable Audio 4 Everyone), Robson Cozendey" },
{ "Fonts", "Pixel Sagas \"Rebellion\", \"Strike Fighter\" (Daniel Zadorozny, Iconian Fonts), xwing-miniatures-font (geordanr)" },
{ "Additional assets", "Skybox Volume 2: Nebula (Hedgehog Team), Simple Table Glass (Quadrante Studio)" },
{ "Testing", "djeknemesis2012, LiquidLogic" },
{ "Thanks for support", "Rick Servello, Spencer Loper, Landon, Dual Torpedoes, Vittorio Rosa, GregFromParis#42, Charlie King, Fabian Falconett, Julian Munoz Bermejo, Benny Tsai, Ignatius Bug, John Snape, Bryan Froh, Ross Kushnereit, David Gausebeck, Alan Michael" },
{ "Thanks for support", "Rick Servello, Spencer Loper, Landon, Dual Torpedoes, Vittorio Rosa, GregFromParis#42, Charlie King, Fabian Falconett, Julian Munoz Bermejo, Benny Tsai, Ignatius Bug, John Snape, Bryan Froh, Ross Kushnereit, David Gausebeck, Alan Michael, Brian Hall" },
};

public static void InitializePanel()
Expand Down

0 comments on commit efa36ad

Please sign in to comment.