Skip to content

Commit a236b04

Browse files
author
Ciaran Fisher
committed
Version bump 1.0.1.4
1 parent 3bf1131 commit a236b04

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

AutoUpdater/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private bool IsAnotherRunning()
101101
private async Task<Uri> GetPathToLatestVersion()
102102
{
103103
Status.Content = "Finding Latest IL2-SRS Version";
104-
var githubClient = new GitHubClient(new ProductHeaderValue(GITHUB_USER_AGENT, "1.0.1.3"));
104+
var githubClient = new GitHubClient(new ProductHeaderValue(GITHUB_USER_AGENT, "1.0.1.4"));
105105

106106
var releases = await githubClient.Repository.Release.GetAll(GITHUB_USERNAME, GITHUB_REPOSITORY);
107107

AutoUpdater/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.0.1.3")]
55-
[assembly: AssemblyFileVersion("1.0.1.3")]
54+
[assembly: AssemblyVersion("1.0.1.4")]
55+
[assembly: AssemblyFileVersion("1.0.1.4")]

AutoUpdater/Properties/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.0.1.3" name="MyApplication.app" />
3+
<assemblyIdentity version="1.0.1.4" name="MyApplication.app" />
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

IL2-SR-Client/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
5454

55-
[assembly: AssemblyVersion("1.0.1.3")]
56-
[assembly: AssemblyFileVersion("1.0.1.3")]
55+
[assembly: AssemblyVersion("1.0.1.4")]
56+
[assembly: AssemblyFileVersion("1.0.1.4")]

IL2-SR-Client/Properties/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.0.1.3" name="MyApplication.app" />
3+
<assemblyIdentity version="1.0.1.4" name="MyApplication.app" />
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

IL2-SR-Common/Network/UpdaterChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class UpdaterChecker
2121

2222
public static readonly string MINIMUM_PROTOCOL_VERSION = "1.0.0.0";
2323

24-
public static readonly string VERSION = "1.0.1.3";
24+
public static readonly string VERSION = "1.0.1.4";
2525

2626
private static readonly Logger _logger = LogManager.GetCurrentClassLogger();
2727

IL2-SR-Common/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("1.0.1.3")]
39-
[assembly: AssemblyFileVersion("1.0.1.3")]
38+
[assembly: AssemblyVersion("1.0.1.4")]
39+
[assembly: AssemblyFileVersion("1.0.1.4")]

IL2-SR-CommonTests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
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.0.1.3")]
36-
[assembly: AssemblyFileVersion("1.0.1.3")]
35+
[assembly: AssemblyVersion("1.0.1.4")]
36+
[assembly: AssemblyFileVersion("1.0.1.4")]

IL2-SimpleRadio Server/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
5454

55-
[assembly: AssemblyVersion("1.0.1.3")]
56-
[assembly: AssemblyFileVersion("1.0.1.3")]
55+
[assembly: AssemblyVersion("1.0.1.4")]
56+
[assembly: AssemblyFileVersion("1.0.1.4")]

IL2-SimpleRadio Server/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.0.1.3" name="MyApplication.app"/>
3+
<assemblyIdentity version="1.0.1.4" name="MyApplication.app"/>
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

0 commit comments

Comments
 (0)