11using ICSharpCode . TextEditor ;
2- using LOU ;
2+ using LoU ;
33using Microsoft . Win32 ;
44using SharpMonoInjector ;
55using System ;
1313using System . Text ;
1414using System . Windows . Forms ;
1515
16- namespace EasyLOU
16+ namespace EasyLoU
1717{
1818 public partial class MainForm : Form
1919 {
@@ -41,7 +41,7 @@ public MainForm()
4141 {
4242 MainForm . TheMainForm = this ;
4343 InitializeComponent ( ) ;
44- this . Text = "EasyLOU - " + Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version . ToString ( ) ;
44+ this . Text = "EasyLoU - " + Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version . ToString ( ) ;
4545
4646 Settings . LoadSettings ( ) ;
4747 Settings . RegisterHotkeys ( this . Handle ) ;
@@ -674,12 +674,12 @@ private void DoDontMoveCursor()
674674
675675 private void DoHelp ( )
676676 {
677- System . Diagnostics . Process . Start ( "https://lmgtfy.com/?q=easylou +help" ) ;
677+ System . Diagnostics . Process . Start ( "https://lmgtfy.com/?q=EasyLoU +help" ) ;
678678 }
679679
680680 private void DoWebsite ( )
681681 {
682- System . Diagnostics . Process . Start ( "https://lmgtfy.com/?q=easylou +website" ) ;
682+ System . Diagnostics . Process . Start ( "https://lmgtfy.com/?q=EasyLoU +website" ) ;
683683 }
684684
685685 private void DoConnectToClient ( )
@@ -1066,7 +1066,7 @@ private void PlayToolStripButton_Click(object sender, EventArgs e)
10661066 {
10671067 if ( ! MainStatusLabel . Text . StartsWith ( "Connected to" ) )
10681068 {
1069- if ( MessageBoxEx . Show ( MainForm . TheMainForm , "EasyLOU not connected to any client. Run this script anyway?" , "Client not connected" , MessageBoxButtons . OKCancel ) != DialogResult . OK )
1069+ if ( MessageBoxEx . Show ( MainForm . TheMainForm , "EasyLoU not connected to any client. Run this script anyway?" , "Client not connected" , MessageBoxButtons . OKCancel ) != DialogResult . OK )
10701070 {
10711071 return ;
10721072 }
@@ -1082,12 +1082,12 @@ private void connectToClientToolStripButton_Click(object sender, EventArgs e)
10821082
10831083 private void HelpToolStripButton_Click ( object sender , EventArgs e )
10841084 {
1085- System . Diagnostics . Process . Start ( "https://github.com/Lady-Binary/EasyLOU /issues" ) ;
1085+ System . Diagnostics . Process . Start ( "https://github.com/Lady-Binary/EasyLoU /issues" ) ;
10861086 }
10871087
10881088 private void HomeToolStripButton_Click ( object sender , EventArgs e )
10891089 {
1090- System . Diagnostics . Process . Start ( "https://github.com/Lady-Binary/EasyLOU " ) ;
1090+ System . Diagnostics . Process . Start ( "https://github.com/Lady-Binary/EasyLoU " ) ;
10911091 }
10921092
10931093
@@ -1147,7 +1147,7 @@ private void Inject(int ProcessId)
11471147 {
11481148 var MonoModule = GetMonoModule ( ProcessId ) ;
11491149
1150- String AssemblyPath = "LOU .dll" ;
1150+ String AssemblyPath = "LoU .dll" ;
11511151
11521152 IntPtr handle = Native . OpenProcess ( ProcessAccessRights . PROCESS_ALL_ACCESS , false , ProcessId ) ;
11531153
@@ -1177,7 +1177,7 @@ private void Inject(int ProcessId)
11771177 {
11781178 try
11791179 {
1180- IntPtr asm = injector . Inject ( file , "LOU " , "Loader" , "Load" ) ;
1180+ IntPtr asm = injector . Inject ( file , "LoU " , "Loader" , "Load" ) ;
11811181 MainStatusLabel . ForeColor = Color . Orange ;
11821182 MainStatusLabel . Text = "Injection on " + ProcessId . ToString ( ) + " successful" ;
11831183 }
@@ -1198,12 +1198,12 @@ private Object GetKey(String KeyName)
11981198 {
11991199 RegistryKey SoftwareKey = Registry . CurrentUser . OpenSubKey ( "Software" , true ) ;
12001200
1201- RegistryKey key = SoftwareKey . OpenSubKey ( "EasyLOU " , true ) ;
1201+ RegistryKey key = SoftwareKey . OpenSubKey ( "EasyLoU " , true ) ;
12021202
12031203 if ( key == null )
12041204 {
1205- SoftwareKey . CreateSubKey ( "EasyLOU " ) ;
1206- key = SoftwareKey . OpenSubKey ( "EasyLOU " , true ) ;
1205+ SoftwareKey . CreateSubKey ( "EasyLoU " ) ;
1206+ key = SoftwareKey . OpenSubKey ( "EasyLoU " , true ) ;
12071207 }
12081208
12091209 return key . GetValue ( "ExePath" ) ;
@@ -1213,12 +1213,12 @@ private void SetKey(String KeyName, Object KeyValue)
12131213 {
12141214 RegistryKey SoftwareKey = Registry . CurrentUser . OpenSubKey ( "Software" , true ) ;
12151215
1216- RegistryKey key = SoftwareKey . OpenSubKey ( "EasyLOU " , true ) ;
1216+ RegistryKey key = SoftwareKey . OpenSubKey ( "EasyLoU " , true ) ;
12171217
12181218 if ( key == null )
12191219 {
1220- SoftwareKey . CreateSubKey ( "EasyLOU " ) ;
1221- key = SoftwareKey . OpenSubKey ( "EasyLOU " , true ) ;
1220+ SoftwareKey . CreateSubKey ( "EasyLoU " ) ;
1221+ key = SoftwareKey . OpenSubKey ( "EasyLoU " , true ) ;
12221222 }
12231223
12241224 key . SetValue ( KeyName , KeyValue ) ;
@@ -1441,20 +1441,20 @@ static void DumpCommands()
14411441 string postfix = "\" />" ;
14421442 Console . WriteLine ( "RefreshKeywords()" ) ;
14431443
1444- string s = string . Join ( "," , Enum . GetNames ( typeof ( LOU . CommandType ) ) ) ;
1444+ string s = string . Join ( "," , Enum . GetNames ( typeof ( LoU . CommandType ) ) ) ;
14451445
1446- foreach ( String c in Enum . GetNames ( typeof ( LOU . CommandType ) ) )
1446+ foreach ( String c in Enum . GetNames ( typeof ( LoU . CommandType ) ) )
14471447 {
14481448 Debug . Print ( "- [" + c + "](#" + c + ")" ) ;
14491449 }
14501450
1451- foreach ( String c in Enum . GetNames ( typeof ( LOU . CommandType ) ) )
1451+ foreach ( String c in Enum . GetNames ( typeof ( LoU . CommandType ) ) )
14521452 {
14531453 Debug . Print ( "## " + c ) ;
14541454 Debug . Print ( "Description" ) ;
14551455 }
14561456
1457- foreach ( String c in Enum . GetNames ( typeof ( LOU . CommandType ) ) )
1457+ foreach ( String c in Enum . GetNames ( typeof ( LoU . CommandType ) ) )
14581458 {
14591459 Debug . Print ( prefix + c + postfix ) ;
14601460 }
0 commit comments