Skip to content

Commit

Permalink
Bugfix plugin issue causing not continue at login
Browse files Browse the repository at this point in the history
Sorry for this YAR did not update my plugin while testing locally here
  • Loading branch information
sinterlkaas committed Dec 18, 2012
1 parent 093a0f2 commit dd3cb27
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Binary file modified LatestBuild/YetAnotherRelogger.exe
Binary file not shown.
2 changes: 2 additions & 0 deletions YetAnotherRelogger/Forms/MainForm2.cs
Expand Up @@ -212,6 +212,8 @@ public void UpdateGridView()
dataGridView1.Columns["WindowsUserPassword"].Visible = false;
dataGridView1.Columns["D3PrefsLocation"].Visible = false;
dataGridView1.Columns["IsStandby"].Visible = false;
dataGridView1.Columns["UseDiabloClone"].Visible = false;
dataGridView1.Columns["DiabloCloneLocation"].Visible = false;

dataGridView1.Columns["isEnabled"].DisplayIndex = 1;
dataGridView1.Columns["isEnabled"].HeaderText = "Enabled";
Expand Down
2 changes: 1 addition & 1 deletion YetAnotherRelogger/Program.cs
Expand Up @@ -15,7 +15,7 @@ namespace YetAnotherRelogger
{
static class Program
{
public const string VERSION = "0.2.0.2";
public const string VERSION = "0.2.0.3";
public const int Sleeptime = 10;
/// <summary>
/// The main entry point for the application.
Expand Down
6 changes: 3 additions & 3 deletions YetAnotherRelogger/Resources/Plugin.cs
@@ -1,4 +1,4 @@
// VERSION: 0.2.0.2
// VERSION: 0.2.0.3
/* Changelog:
* VERSION: 0.1.9.1
* Added: Monsterpower
Expand Down Expand Up @@ -59,7 +59,7 @@ namespace YARPLUGIN
public class YARPLUGIN : IPlugin
{
// Plugin version
public Version Version { get { return new Version(0, 2, 0, 2); } }
public Version Version { get { return new Version(0, 2, 0, 3); } }

private const bool _debug = true;

Expand Down Expand Up @@ -380,7 +380,7 @@ private void Send(string data, bool pause = false, bool xml = false, int retry =

sw.WriteLine(data);
var connectionTime = DateTime.Now;
while (client.IsConnected)
while (!success && client.IsConnected)
{
if (DateTime.Now.Subtract(connectionTime).TotalSeconds > 3)
{
Expand Down

0 comments on commit dd3cb27

Please sign in to comment.