Skip to content

Commit

Permalink
Update to 6/8/20 - Build 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tran-Foxxo committed Jun 8, 2020
1 parent 9f720e2 commit 356ffa5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog for 6/7/20 - Build 2
# Changelog for 6/8/20 - Build 1

* Merged changes from the `develop` branch into the `master` branch
* Merged changes from the `develop` branch into the `master` branch.
* Trigger support is now available from the merge!
13 changes: 3 additions & 10 deletions src/GameCanvas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,17 +206,10 @@ public void ShowChangelog()
else
{
var changelogText = "" +
" * Added Superdavo0001\'s remount mod into LRTran!\n" +
" * Changelog toggle in the Preferences -> Other.\n" +
" * Turning off the changelog actually works now.\n" +
" * Autosaves now save to their own file (autosave_day.month.year_hours.minutes.trk).\n" +
" * \"<untitled>\" will now be autosaved in the \"Unnamed Track\" folder.\n" +
" * Autosaves can be configured in Preferences -> Other.\n" +
" * Track changes will always be shown on screen.\n" +
" * Added Multi-Scarf functionality in the Preferences -> Rider.\n" +
" * When the game has enough changed where it will autosave, \"Autosave enabled!\" will appear in the top left corner.\n" +
" * Merged changes from the `develop` branch into the `master` branch.\n" +
" * Trigger support is now available from the merge!\n" +
"\n" +
"NOTE: Discord is auto disabled on startup for now until I implement it in a more stable way.";
"NOTE: Discord is still auto disabled on startup for now until I implement it in a more stable way.";

var window = MessageBox.Show(this, changelogText, "Changelog for " + Program.Version, MessageBox.ButtonType.YesNoCancel);
window.RenameButtonsYN("Previous Changelogs (Github)", "Continue and don\'t show again", "Continue");
Expand Down
3 changes: 1 addition & 2 deletions src/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public void GameUpdate()

for (int i = 1; i < Settings.multiScarfAmount; i++)
{
insertScarfColor(0x0000FF, 0x00, ((i * Settings.multiScarfSegments))+(i-1)-(1+i));
insertScarfColor(0x0000FF, 0x00, ((i * Settings.multiScarfSegments)) + (i - 1) - (1 + i));
}
}
//If edits to the png is toggled update the rider
Expand Down Expand Up @@ -319,7 +319,6 @@ public void GameUpdate()
}
}


if (Track.Playing)
{
if (ReversePlayback)
Expand Down
2 changes: 1 addition & 1 deletion src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static class Program
#endif
public static string BinariesFolder = "bin";
public readonly static CultureInfo Culture = new CultureInfo("en-US");
public static string Version = "6/7/20 - Build 1";
public static string Version = "6/8/20 - Build 1";
public static string TestVersion = "";
public static string NewVersion = null;
public static readonly string WindowTitle = "Line Rider: Advanced (Tran\'s fork) " + Version + TestVersion;
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6/7/20 - Build 1
6/8/20 - Build 1

0 comments on commit 356ffa5

Please sign in to comment.