Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit d2df896

Browse files
authored
Merge pull request #1 from R3FR4G/updater
Implemented auto updater
2 parents 21b234a + 0228215 commit d2df896

36 files changed

+1029
-459
lines changed

Controller Input Display/Controller Input Display.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.30330.147
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Controller Input Display", "Controller Input Display\Controller Input Display.csproj", "{F2D33640-BA21-40B4-B320-2D854381C5EF}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Updater", "Updater\Updater.csproj", "{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
1517
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

Controller Input Display/Controller Input Display/App.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
<setting name="BackgroundColor" serializeAs="String">
4141
<value>Black</value>
4242
</setting>
43+
<setting name="UpdateCheckAtStartup" serializeAs="String">
44+
<value>False</value>
45+
</setting>
4346
</Controller_Input_Display.Properties.Settings>
4447
</userSettings>
4548
</configuration>

Controller Input Display/Controller Input Display/Controller Input Display.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
<DesignTimeSharedInput>True</DesignTimeSharedInput>
6363
<DependentUpon>Settings.settings</DependentUpon>
6464
</Compile>
65+
<Compile Include="Settings.cs">
66+
<SubType>Form</SubType>
67+
</Compile>
6568
<Compile Include="SonicInputDisplay.cs" />
6669
</ItemGroup>
6770
<ItemGroup>

0 commit comments

Comments
 (0)