This commit is contained in:
BubbaGumpShrump 2024-12-08 15:39:17 -05:00
parent 256407c654
commit a24607d7fe
3 changed files with 7 additions and 7 deletions

View file

@ -101,13 +101,13 @@ $global:killTally = 0
# Load historic kills from csv
$historicKills = Import-CSV "$scriptFolder\Kill-log.csv" | Sort-Object Descending
Try{
if (Test-Path "$scriptFolder\Kill-Log.csv") {
$historicKills = Import-CSV "$scriptFolder\Kill-log.csv" | Sort-Object Descending
foreach ($kill in $historicKills) {
Write-Output "NewKill=throwaway,$($kill.EnemyPilot),$($kill.EnemyShip),$($kill.OrgAffiliation),$($kill.Enlisted),$($kill.RecordNumber),$($kill.KillTime),$($kill.PFP)"
$global:killTally++
}
} Catch {}
}
Write-Output "KillTally=$global:killTally"
# Match and extract username from gamelog

View file

@ -9,7 +9,7 @@ namespace AutoTrackR2
{
public partial class UpdatePage : UserControl
{
private string currentVersion = "v2.0-beta.01";
private string currentVersion = "v2.0-beta.1";
private string latestVersion;
public UpdatePage()