Skip to content

Commit

Permalink
Small changes for 6.2r
Browse files Browse the repository at this point in the history
  • Loading branch information
dotPawel committed Jul 22, 2023
1 parent 4fb9814 commit 9fc271e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions UniDKIT/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace UniDKIT
{
public partial class Main : Form
{
public static string Version = "1.0r";
public static string Version = "1.1r";
private DiscordRpcClient client;

// whar
Expand Down Expand Up @@ -99,7 +99,7 @@ public partial class Main : Form
"clr", "about", "echo", "sleep", "exit", "ptm-cmd", "help",

// other slash commands
"/p", "/all", "/ptm"
"/p", "/all", "/ptm", "/name", "/frc"
};

public Main()
Expand Down Expand Up @@ -604,6 +604,8 @@ private void Textbox_TextChanged(object sender, FastColoredTextBoxNS.TextChanged
e.ChangedRange.SetStyle(GreenStyle, @"/p", RegexOptions.IgnoreCase);
e.ChangedRange.SetStyle(GreenStyle, @"/all", RegexOptions.IgnoreCase);
e.ChangedRange.SetStyle(GreenStyle, @"/ptm", RegexOptions.IgnoreCase);
e.ChangedRange.SetStyle(GreenStyle, @"/frc", RegexOptions.IgnoreCase);
e.ChangedRange.SetStyle(GreenStyle, @"/name", RegexOptions.IgnoreCase);
}
}
}

0 comments on commit 9fc271e

Please sign in to comment.