Skip to content

Commit

Permalink
* Fix Crash on Startup (if you had a log file line longer than 1000 c…
Browse files Browse the repository at this point in the history
…haracters)
  • Loading branch information
stringandstickytape committed Jan 18, 2015
1 parent 438d999 commit 2b5d7b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RegulatedNoise/Elite Dangerous Specifics/EdLogWatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static IEnumerable<string> ReadLineReverse(Stream fs, long validpos)
byte[] buffer = new byte[BUFLEN];
long pos = BUFLEN;
if (pos > filelen - validpos + 1) pos = filelen - validpos + 1;
byte[] midbuffer = new byte[1000];
byte[] midbuffer = new byte[100000];
int mindex = midbuffer.Length;
while (true)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace RegulatedNoise
[Serializable]
public class RegulatedNoiseSettings
{
public readonly decimal Version = 1.81m;
public readonly decimal Version = 1.82m;

public string ProductsPath = "";
public string GamePath = ""; //Should Replace ProductsPath by always contain the newest FORC-FDEV dir.
Expand Down
5 changes: 4 additions & 1 deletion RegulatedNoise/Form1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,10 @@
</value>
</data>
<data name="textBox1.Text" xml:space="preserve">
<value>v1.81
<value>v1.82
* Fix Crash on Startup (if you had a log file line longer than 1000 characters)

v1.81
* Add EDDN message counting by app and version
* EditOcrResults window fixes
* Fix No way to clear ORC corrections if you don't want to import #14
Expand Down

0 comments on commit 2b5d7b3

Please sign in to comment.