Skip to content

Commit 6b186b9

Browse files
committed
🚚 rename project to EliteVA
semver: chore
1 parent bf55cdd commit 6b186b9

20 files changed

Lines changed: 54 additions & 68 deletions

EliteAPI.sln

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EliteAPI.Tests", "EliteAPI.
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EliteVA", "EliteVA\EliteVA.csproj", "{2CF5B08E-42DA-463D-9623-EA872D40881F}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VoiceAttack", "VoiceAttack\VoiceAttack.csproj", "{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}"
13-
EndProject
1412
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Console", "Console\Console.csproj", "{272A8615-5B48-40A8-A349-771127F856D4}"
1513
EndProject
1614
Global
@@ -59,18 +57,6 @@ Global
5957
{2CF5B08E-42DA-463D-9623-EA872D40881F}.Release|x64.Build.0 = Release|Any CPU
6058
{2CF5B08E-42DA-463D-9623-EA872D40881F}.Release|x86.ActiveCfg = Release|Any CPU
6159
{2CF5B08E-42DA-463D-9623-EA872D40881F}.Release|x86.Build.0 = Release|Any CPU
62-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
63-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
64-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|x64.ActiveCfg = Debug|Any CPU
65-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|x64.Build.0 = Debug|Any CPU
66-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|x86.ActiveCfg = Debug|Any CPU
67-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Debug|x86.Build.0 = Debug|Any CPU
68-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
69-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|Any CPU.Build.0 = Release|Any CPU
70-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|x64.ActiveCfg = Release|Any CPU
71-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|x64.Build.0 = Release|Any CPU
72-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|x86.ActiveCfg = Release|Any CPU
73-
{A30596CE-C88C-412C-9AAE-8FA6927BB9EF}.Release|x86.Build.0 = Release|Any CPU
7460
{272A8615-5B48-40A8-A349-771127F856D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7561
{272A8615-5B48-40A8-A349-771127F856D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
7662
{272A8615-5B48-40A8-A349-771127F856D4}.Debug|x64.ActiveCfg = Debug|Any CPU
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Threading.Tasks;
4-
using VoiceAttack.Audio;
5-
using VoiceAttack.Commands;
6-
using VoiceAttack.Logging;
7-
using VoiceAttack.Options;
8-
using VoiceAttack.Paths;
9-
using VoiceAttack.Variables;
10-
using VoiceAttack.Versions;
4+
using EliteVA.Audio;
5+
using EliteVA.Commands;
6+
using EliteVA.Logging;
7+
using EliteVA.Options;
8+
using EliteVA.Paths;
9+
using EliteVA.Variables;
10+
using EliteVA.Versions;
1111

12-
namespace VoiceAttack.Abstractions;
12+
namespace EliteVA.Abstractions;
1313

1414
public interface IVoiceAttackProxy
1515
{
@@ -98,4 +98,4 @@ public interface IVoiceAttackProxy
9898
/// Closes the VoiceAttack window
9999
/// </summary>
100100
Task Close();
101-
}
101+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace VoiceAttack.Audio;
1+
namespace EliteVA.Audio;
22

33
public enum AudioType
44
{
@@ -31,4 +31,4 @@ public enum AudioType
3131
/// The voice command audio from dictation mode
3232
/// </summary>
3333
Dictated
34-
}
34+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.IO;
22
using System.Threading.Tasks;
33

4-
namespace VoiceAttack.Audio;
4+
namespace EliteVA.Audio;
55

66
public class VoiceAttackSpeech
77
{
@@ -43,4 +43,4 @@ public Task SetMuted(bool isMuted)
4343
_proxy.Utility.SetSpeechRecordingDeviceMute(isMuted);
4444
return Task.CompletedTask;
4545
}
46-
}
46+
}

VoiceAttack/Commands/VoiceAttackCommand.cs renamed to EliteVA/Commands/VoiceAttackCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace VoiceAttack.Commands;
3+
namespace EliteVA.Commands;
44

55
public class VoiceAttackCommand
66
{
@@ -63,4 +63,4 @@ internal VoiceAttackCommand(dynamic proxy)
6363
/// Whether the executing command is already executing in another instance
6464
/// </summary>
6565
public bool IsDuplicate => _proxy.Command.AlreadyExecuting();
66-
}
66+
}

VoiceAttack/Commands/VoiceAttackCommands.cs renamed to EliteVA/Commands/VoiceAttackCommands.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Threading.Tasks;
44

5-
namespace VoiceAttack.Commands;
5+
namespace EliteVA.Commands;
66

77
public class VoiceAttackCommands
88
{
@@ -193,4 +193,4 @@ public enum CommandSource
193193
DictationRecognized,
194194
Plugin,
195195
Other
196-
}
196+
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
22
using System.Threading.Tasks;
33
using EliteApi;
4-
using VoiceAttack.Abstractions;
5-
using VoiceAttack.Logging;
4+
using EliteVA.Abstractions;
5+
using EliteVA.Logging;
66

7-
namespace VoiceAttack;
7+
namespace EliteVA;
88

99
public class Plugin : VoiceAttackPlugin
1010
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace VoiceAttack.Logging;
1+
namespace EliteVA.Logging;
22

33
public enum VoiceAttackColor
44
{
@@ -12,4 +12,4 @@ public enum VoiceAttackColor
1212
Black,
1313
Gray,
1414
Pink
15-
}
15+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace VoiceAttack.Logging;
1+
namespace EliteVA.Logging;
22

33
public class VoiceAttackLog
44
{
@@ -26,4 +26,4 @@ public void Clear()
2626
{
2727
_proxy.ClearLog();
2828
}
29-
}
29+
}

0 commit comments

Comments
 (0)