Skip to content

Commit

Permalink
begin 1.04a unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
jealouscloud committed May 23, 2018
1 parent a24ad2a commit 0579a5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public static class Program
#endif
public static string BinariesFolder = "bin";
public readonly static CultureInfo Culture = new CultureInfo("en-US");
public static string Version = "1.03.1";
public static string TestVersion = "";
public static string Version = "1.04a";
public static string TestVersion = " unstable";
public static string NewVersion = null;
public static readonly string WindowTitle = "Line Rider: Advanced " + Version;
public static readonly string WindowTitle = "Line Rider: Advanced " + Version + TestVersion;
public static Random Random;
private static bool _crashed;
private static MainWindow glGame;
Expand Down Expand Up @@ -177,7 +177,7 @@ public static void UpdateCheck()
{
using (WebClient wc = new WebClient())
{
string currentversion = wc.DownloadString("https://raw.githubusercontent.com/jealouscloud/linerider-advanced/master/version");
string currentversion = wc.DownloadString("https://raw.githubusercontent.com/jealouscloud/linerider-advanced/develop/version");
var idx = currentversion.IndexOfAny(new char[] { '\r', '\n' });
if (idx != -1)
{
Expand Down
2 changes: 1 addition & 1 deletion src/linerider.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>7</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\build</OutputPath>
<DebugType>portable</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.03.1
1.04a

0 comments on commit 0579a5a

Please sign in to comment.