Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
cleanup before auto upgrade changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
sir-wilhelm committed Feb 13, 2020
1 parent 526b4dd commit 2d7065e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions SmartHunter/Core/MemoryUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void CreateStateMachine()
() => ConfigHelper.Main.Values.AutomaticallyCheckAndDownloadUpdates,
() =>
{
Log.WriteLine("Searching for updates (You can disable this feature in file 'Config.json')!");
Log.WriteLine("Searching for updates (You can disable this feature in file 'Config.json').");
}),
new StateMachine<State>.Transition(
State.WaitingForProcess,
Expand All @@ -93,7 +93,7 @@ void CreateStateMachine()
() => updater.CheckForUpdates(),
() =>
{
Log.WriteLine("Starting to download Updates!");
Log.WriteLine("Starting to download Updates.");
})
}));

Expand All @@ -106,14 +106,14 @@ void CreateStateMachine()
() => updater.DownloadUpdates(),
() =>
{
Log.WriteLine("Successfully downloaded all files!");
Log.WriteLine("Successfully downloaded all files.");
}),
new StateMachine<State>.Transition(
State.WaitingForProcess,
() => !updater.DownloadUpdates(),
() =>
{
Log.WriteLine("Failed to download Updates... Resuming the normal flow of the application!");
Log.WriteLine("Failed to download Updates... Resuming the normal flow of the application.");
Initialize();
})
}));
Expand Down Expand Up @@ -232,7 +232,7 @@ void CreateStateMachine()
},
() =>
{
Log.WriteLine($"All pattern failed... Aborting!");
Log.WriteLine($"All pattern failed... Aborting.");
}),
new StateMachine<State>.Transition(
State.WaitingForProcess,
Expand Down
2 changes: 1 addition & 1 deletion SmartHunter/SmartHunter.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<ProjectGuid>{F5F99CEF-1C16-48E6-A88B-1A66D3B53998}</ProjectGuid>
<OutputType>WinExe</OutputType>
Expand Down

0 comments on commit 2d7065e

Please sign in to comment.