Skip to content

Commit

Permalink
Cleanup, Ver 1.0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
harliq committed Feb 4, 2020
1 parent bcccc5e commit 4c406af
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions AceCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ private void Current_ChatBoxMessage(object sender, ChatTextInterceptEventArgs e)
LabelGetInfo.Text = e.Text;
TextboxExportJsonWCID.Text = wcid;
TextboxExportSQLWCID.Text = wcid;
// Util.WriteToChat(e.Text);
}

}
Expand Down
2 changes: 1 addition & 1 deletion ChatMessages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static bool GetWeenieInfo(string text, out string wcid)
if (regex.IsMatch(text))
{

Util.WriteToChat("CapGroup1= " + RegExGroup(@"WeenieClassId: (.*)", text));
// Util.WriteToChat("CapGroup1= " + RegExGroup(@"WeenieClassId: (.*)", text));
wcid = RegExGroup(@"WeenieClassId: (.*)", text);
return true;

Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2.4")]
[assembly: AssemblyFileVersion("1.0.2.4")]
[assembly: AssemblyVersion("1.0.2.6")]
[assembly: AssemblyFileVersion("1.0.2.6")]
9 changes: 3 additions & 6 deletions mainView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,11 @@
<control progid="DecalControls.PushButton" name="ButtonExportSQL" left="120" top="275" width="80" height="20" text="Export SQL"/>

<control progid="DecalControls.PushButton" name="CommandRefreshFilesList" left="250" top="275" width="100" height="20" text="Refresh File Lists"/>
<control progid="DecalControls.PushButton" name="ButtonDeleteItem" left="250" top="345" width="100" height="20" text="Delete Selected"/>

<control progid="DecalControls.StaticText" name="LabelGetInfo" left="5" top="345" width="340" height="50" text=""/>
<control progid="DecalControls.PushButton" name="ButtonDeleteItem" left="10" top="385" width="100" height="20" text="Delete Selected"/>
<control progid="DecalControls.PushButton" name="ButtonGetInfo" left="250" top="385" width="100" height="20" text="GetInfo"/>

<control progid="DecalControls.StaticText" name="LabelGetInfo" left="5" top="375" width="240" height="50" text=""/>
<control progid="DecalControls.PushButton" name="ButtonGetInfo" left="250" top="385" width="100" height="20" text="GetInfo"/>



</control>

</page>
Expand Down

0 comments on commit 4c406af

Please sign in to comment.