Skip to content

Commit

Permalink
updated version number
Browse files Browse the repository at this point in the history
intel fix
  • Loading branch information
BitBaboonSteve committed Dec 17, 2017
1 parent 5a9565b commit b2dddda
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion About.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
Title="Slazangers Map Tool (SMT)" Height="200" Width="400" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid>
<Image x:Name="image" HorizontalAlignment="Left" Height="149" Margin="10,10,0,0" VerticalAlignment="Top" Width="172" Source="Images/Slazanger.png" RenderTransformOrigin="0.695,0.632" />
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="168,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="149" Width="214"><Run Text="Version "/><Run Text="0.34"/><LineBreak/><Run/><LineBreak/><Run Text="Created By "/><Hyperlink x:Name="SlazLink" NavigateUri="https://evewho.com/pilot/Slazanger"><Run Text="Slazanger"/></Hyperlink><LineBreak/><LineBreak/><Run Text="All Donations, feedback and "/><Run Text="f"/><Run Text="eature requests welcome.. feel free to evemail in game."/></TextBlock>
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="168,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="149" Width="214"><Run Text="Version "/><Run Text="0.3"/><Run Text="5"/><LineBreak/><Run/><LineBreak/><Run Text="Created By "/><Hyperlink x:Name="SlazLink" NavigateUri="https://evewho.com/pilot/Slazanger"><Run Text="Slazanger"/></Hyperlink><LineBreak/><LineBreak/><Run Text="All Donations, feedback and "/><Run Text="f"/><Run Text="eature requests welcome.. feel free to evemail in game."/></TextBlock>
</Grid>
</Window>
12 changes: 6 additions & 6 deletions EVEData/EveManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -443,15 +443,15 @@ private void IntelFileWatcher_Changed(object sender, FileSystemEventArgs e)
}

string line = file.ReadLine();
// trim any items off the front
if (line.Contains("[") && line.Contains("]"))
{
line = line.Substring(line.IndexOf("["));
}


while (line != null)
{
{ // trim any items off the front
if (line.Contains("[") && line.Contains("]"))
{
line = line.Substring(line.IndexOf("["));
}

fileReadFrom++;

if (localChat)
Expand Down

0 comments on commit b2dddda

Please sign in to comment.