Skip to content

Commit 97a4aa5

Browse files
committed
Rename project
1 parent 77bc7da commit 97a4aa5

12 files changed

+34
-34
lines changed

LiveSplit.LiveKeys.sln renamed to LiveSplit.SKeys.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio Version 16
33
VisualStudioVersion = 16.0.29424.173
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveSplit.LiveKeys", "LiveSplit.LiveKeys\LiveSplit.LiveKeys.csproj", "{CA09C389-7F2C-4690-B22C-5938F74EBCD7}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveSplit.SKeys", "LiveSplit.SKeys\LiveSplit.SKeys.csproj", "{CA09C389-7F2C-4690-B22C-5938F74EBCD7}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SKeys.Core", "SKeys\SKeys.Core\SKeys.Core.csproj", "{D721B0CC-4B1E-472F-AC7D-21707CAD36C1}"
88
EndProject
File renamed without changes.

LiveSplit.LiveKeys/LiveSplit.LiveKeys.csproj renamed to LiveSplit.SKeys/LiveSplit.SKeys.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{CA09C389-7F2C-4690-B22C-5938F74EBCD7}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>LiveSplit.LiveKeys</RootNamespace>
11-
<AssemblyName>LiveSplit.LiveKeys</AssemblyName>
10+
<RootNamespace>LiveSplit.SKeys</RootNamespace>
11+
<AssemblyName>LiveSplit.SKeys</AssemblyName>
1212
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
@@ -54,19 +54,19 @@
5454
<ItemGroup>
5555
<Compile Include="GitVersion.cs" />
5656
<Compile Include="GraphicsExtensions.cs" />
57-
<Compile Include="LiveKeysComponent.cs" />
58-
<Compile Include="LiveKeysFactory.cs" />
59-
<Compile Include="LiveKeysSettings.cs">
57+
<Compile Include="SKeysComponent.cs" />
58+
<Compile Include="SKeysFactory.cs" />
59+
<Compile Include="SKeysSettings.cs">
6060
<SubType>UserControl</SubType>
6161
</Compile>
62-
<Compile Include="LiveKeysSettings.Designer.cs">
63-
<DependentUpon>LiveKeysSettings.cs</DependentUpon>
62+
<Compile Include="SKeysSettings.Designer.cs">
63+
<DependentUpon>SKeysSettings.cs</DependentUpon>
6464
</Compile>
6565
<Compile Include="Properties\AssemblyInfo.cs" />
6666
</ItemGroup>
6767
<ItemGroup>
68-
<EmbeddedResource Include="LiveKeysSettings.resx">
69-
<DependentUpon>LiveKeysSettings.cs</DependentUpon>
68+
<EmbeddedResource Include="SKeysSettings.resx">
69+
<DependentUpon>SKeysSettings.cs</DependentUpon>
7070
</EmbeddedResource>
7171
</ItemGroup>
7272
<ItemGroup>

LiveSplit.LiveKeys/Properties/AssemblyInfo.cs renamed to LiveSplit.SKeys/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
// General Information about an assembly is controlled through the following
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
7-
[assembly: AssemblyTitle("LiveSplit.LiveKeys")]
7+
[assembly: AssemblyTitle("LiveSplit.SKeys")]
88
[assembly: AssemblyDescription("")]
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("")]
11-
[assembly: AssemblyProduct("LiveSplit.LiveKeys")]
11+
[assembly: AssemblyProduct("LiveSplit.SKeys")]
1212
[assembly: AssemblyCopyright("Copyright © 2019")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]

LiveSplit.LiveKeys/LiveKeysComponent.cs renamed to LiveSplit.SKeys/SKeysComponent.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
using LiveSplit.UI.Components;
1010
using SKeys.Core;
1111

12-
namespace LiveSplit.LiveKeys
12+
namespace LiveSplit.SKeys
1313
{
14-
class LiveKeysComponent : IComponent
14+
class SKeysComponent : IComponent
1515
{
16-
private readonly LiveKeysFactory Factory;
17-
private readonly LiveKeysSettings Settings;
16+
private readonly SKeysFactory Factory;
17+
private readonly SKeysSettings Settings;
1818

1919
public Hooks Hooks { get; }
2020
private Input Input;
2121
private SimpleLabel Label;
2222

23-
public LiveKeysComponent(LiveSplitState state, LiveKeysFactory f)
23+
public SKeysComponent(LiveSplitState state, SKeysFactory f)
2424
{
2525
Factory = f;
2626

27-
Settings = new LiveKeysSettings()
27+
Settings = new SKeysSettings()
2828
{
2929
ComponentHeight = 50f,
3030
ComponentWidth = 100f,
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
using System;
22
using GitInfo;
3-
using LiveSplit.LiveKeys;
3+
using LiveSplit.SKeys;
44
using LiveSplit.Model;
55
using LiveSplit.UI.Components;
66

7-
[assembly: ComponentFactory(typeof(LiveKeysFactory))]
7+
[assembly: ComponentFactory(typeof(SKeysFactory))]
88

9-
namespace LiveSplit.LiveKeys
9+
namespace LiveSplit.SKeys
1010
{
11-
public class LiveKeysFactory : IComponentFactory
11+
public class SKeysFactory : IComponentFactory
1212
{
13-
public string ComponentName => "Live Keys";
13+
public string ComponentName => "SKeys";
1414

1515
public string Description => "SKeys component for LiveSplit";
1616

@@ -24,6 +24,6 @@ public class LiveKeysFactory : IComponentFactory
2424

2525
public Version Version => GitVersion.Short.ToVersion();
2626

27-
public IComponent Create(LiveSplitState state) => new LiveKeysComponent(state, this);
27+
public IComponent Create(LiveSplitState state) => new SKeysComponent(state, this);
2828
}
2929
}

LiveSplit.LiveKeys/LiveKeysSettings.Designer.cs renamed to LiveSplit.SKeys/SKeysSettings.Designer.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LiveSplit.LiveKeys/LiveKeysSettings.cs renamed to LiveSplit.SKeys/SKeysSettings.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using LiveSplit.UI;
44
using System.Xml;
55

6-
namespace LiveSplit.LiveKeys
6+
namespace LiveSplit.SKeys
77
{
8-
public partial class LiveKeysSettings : UserControl
8+
public partial class SKeysSettings : UserControl
99
{
1010
public event EventHandler OnSettingsChanged;
1111

@@ -15,7 +15,7 @@ public partial class LiveKeysSettings : UserControl
1515
public float ComponentHeight { get; set; }
1616
public float ComponentWidth { get; set; }
1717

18-
public LiveKeysSettings()
18+
public SKeysSettings()
1919
{
2020
InitializeComponent();
2121
}
@@ -41,7 +41,7 @@ public XmlNode GetSettings(XmlDocument document)
4141
return parent;
4242
}
4343

44-
private void LiveKeysSettings_Load(object sender, EventArgs e)
44+
private void SKeysSettings_Load(object sender, EventArgs e)
4545
{
4646
if (Mode == LayoutMode.Vertical)
4747
{
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LiveSplit.LiveKeys
1+
LiveSplit.SKeys
22
===

0 commit comments

Comments
 (0)