Skip to content

Commit 68038d8

Browse files
committed
Fixed issue that prevents update check when Remind Later timer elapses.
1 parent 32f375e commit 68038d8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

AutoUpdater.NET/AutoUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ private static void BackgroundWorkerOnRunWorkerCompleted(object sender, RunWorke
218218
}
219219
}
220220
}
221-
Running = false;
222221
}
223222
}
223+
Running = false;
224224
}
225225

226226
private static void BackgroundWorkerDoWork(object sender, DoWorkEventArgs e)

AutoUpdater.NET/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.4.2.0")]
36-
[assembly: AssemblyFileVersion("1.4.2.0")]
35+
[assembly: AssemblyVersion("1.4.3.0")]
36+
[assembly: AssemblyFileVersion("1.4.3.0")]
3737
[assembly: NeutralResourcesLanguageAttribute("en")]

AutoUpdaterTest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.4.2.0")]
36-
[assembly: AssemblyFileVersion("1.4.2.0")]
35+
[assembly: AssemblyVersion("1.4.3.0")]
36+
[assembly: AssemblyFileVersion("1.4.3.0")]
3737
[assembly: NeutralResourcesLanguageAttribute("en")]

0 commit comments

Comments
 (0)