Skip to content

Commit

Permalink
Added variables to output
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyHen committed Oct 12, 2022
1 parent 07cd9e4 commit b98f374
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Binary file modified LiveSplit.TheRun.dll
Binary file not shown.
6 changes: 4 additions & 2 deletions UI/Components/CollectorComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ private object buildLiveRunData()
category = CategoryName,
platform = run.Metadata.PlatformName,
region = run.Metadata.RegionName,
emulator = run.Metadata.UsesEmulator
emulator = run.Metadata.UsesEmulator,
variables = run.Metadata.VariableValueNames
};

foreach (var segment in run)
Expand Down Expand Up @@ -129,7 +130,8 @@ public async void HandleSplit(object sender, object e)
try
{
await UpdateSplitsState();
} catch { }
}
catch { }
}

public async void HandleReset(object sender, TimerPhase value)
Expand Down
2 changes: 1 addition & 1 deletion UI/Components/CollectorFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public class CollectorFactory : IComponentFactory
public string UpdateURL => "https://raw.githubusercontent.com/therungg/LiveSplit.TheRun/main/";
public string XMLURL => UpdateURL + "update.LiveSplit.TheRun.xml";

public Version Version => Version.Parse("0.1.4");
public Version Version => Version.Parse("0.1.5");
}
}
2 changes: 1 addition & 1 deletion update.LiveSplit.TheRun.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<updates>
<update version="0.1.4">
<update version="0.1.5">
<files>
<file path="LiveSplit.TheRun.dll" status="changed" />
</files>
Expand Down

0 comments on commit b98f374

Please sign in to comment.