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

Commit

Permalink
Merge pull request #1 from R3FR4G/updater
Browse files Browse the repository at this point in the history
Implemented auto updater
  • Loading branch information
Refragg authored Mar 23, 2021
2 parents 21b234a + 0228215 commit d2df896
Show file tree
Hide file tree
Showing 36 changed files with 1,029 additions and 459 deletions.
6 changes: 6 additions & 0 deletions Controller Input Display/Controller Input Display.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.30330.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Controller Input Display", "Controller Input Display\Controller Input Display.csproj", "{F2D33640-BA21-40B4-B320-2D854381C5EF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Updater", "Updater\Updater.csproj", "{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -15,6 +17,10 @@ Global
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F2D33640-BA21-40B4-B320-2D854381C5EF}.Release|Any CPU.Build.0 = Release|Any CPU
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A0FC62C8-F4D9-40D0-80A3-718DC42B3D90}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
3 changes: 3 additions & 0 deletions Controller Input Display/Controller Input Display/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
<setting name="BackgroundColor" serializeAs="String">
<value>Black</value>
</setting>
<setting name="UpdateCheckAtStartup" serializeAs="String">
<value>False</value>
</setting>
</Controller_Input_Display.Properties.Settings>
</userSettings>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Include="Settings.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="SonicInputDisplay.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
Loading

1 comment on commit d2df896

@Refragg
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also includes some performance improvements and removes the old settings thing

Please sign in to comment.