Skip to content
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.

Commit

Permalink
ownsall doesn't need username. v0.3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alvr committed Sep 26, 2016
1 parent 66dd395 commit a493252
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions ASFui/ASFui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -364,16 +364,15 @@ private void btnOwnAll_Click(object sender, EventArgs e)
if (!tbInput.Text.Equals(""))
{
var result =
Util.SendCommand(Util.GenerateCommand("ownsall", cbBotList.SelectedItem.ToString(),
Util.SendCommand(Util.GenerateCommand("ownsall", string.Empty,
Util.MultiToOne(tbInput.Lines)));
if (_isLocal)
{
tsslCommandOutput.Text = @"!ownsall <" + cbBotList.SelectedItem + @">: " + result;
tsslCommandOutput.Text = @"!ownsall: " + result;
}
else
{
rtbOutput.AppendText(@"!ownsall <" + cbBotList.SelectedItem + @">: " + result +
Environment.NewLine);
rtbOutput.AppendText(@"!ownsall: " + result + Environment.NewLine);
rtbOutput.SelectionStart = rtbOutput.Text.Length;
rtbOutput.ScrollToCaret();
}
Expand Down
4 changes: 2 additions & 2 deletions ASFui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.6.0")]
[assembly: AssemblyFileVersion("0.3.6.0")]
[assembly: AssemblyVersion("0.3.6.1")]
[assembly: AssemblyFileVersion("0.3.6.1")]
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.6.0
0.3.6.1

0 comments on commit a493252

Please sign in to comment.