Skip to content

Commit 89eda6d

Browse files
authored
Merge pull request #196 from micahmo/release/v2.1.4
Release/v2.1.4
2 parents 18ca5e1 + 822ebee commit 89eda6d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22
<PropertyGroup>
33
<!-- Keep in sync with WS4WSetupScript.iss and VersionInfo.xml -->
4-
<AssemblyVersion>2.1.3.0</AssemblyVersion>
5-
<FileVersion>2.1.3.0</FileVersion>
6-
<InformationalVersion>2.1.3.0</InformationalVersion>
4+
<AssemblyVersion>2.1.4.0</AssemblyVersion>
5+
<FileVersion>2.1.4.0</FileVersion>
6+
<InformationalVersion>2.1.4.0</InformationalVersion>
77
<Authors>Micah Morrison</Authors>
88
<Product>WS4W</Product>
99
</PropertyGroup>

Installer/WS4WSetupScript.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define MyAppNameOld "WireGuard Server For Windows"
22
#define MyAppName "Wg Server for Windows"
3-
#define MyAppVersion "2.1.3"
3+
#define MyAppVersion "2.1.4"
44
#define MyAppPublisher "Micah Morrison"
55
#define MyAppURL "https://github.com/micahmo/WgServerforWindows"
66
#define MyAppExeName "WgServerforWindows.exe"

WgServerforWindows/Models/NewNetIpAddressTaskSubCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void Resolve(string serverDataPath)
4444

4545
// Create/update a Scheduled Task that sets the NetIPAddress on boot.
4646
TaskDefinition td = TaskService.Instance.NewTask();
47-
td.Actions.Add(new ExecAction(Path.Combine(AppContext.BaseDirectory, "ws4w.exe"), $"{typeof(SetNetIpAddressCommand).GetVerb()} --{typeof(SetNetIpAddressCommand).GetOption(nameof(SetNetIpAddressCommand.ServerDataPath))} {serverDataPath ?? ServerConfigurationPrerequisite.ServerDataPath}"));
47+
td.Actions.Add(new ExecAction(Path.Combine(AppContext.BaseDirectory, "ws4w.exe"), $"{typeof(SetNetIpAddressCommand).GetVerb()} --{typeof(SetNetIpAddressCommand).GetOption(nameof(SetNetIpAddressCommand.ServerDataPath))} \"{serverDataPath ?? ServerConfigurationPrerequisite.ServerDataPath}\""));
4848
td.Triggers.Add(new BootTrigger { Delay = GlobalAppSettings.Instance.BootTaskDelay + TimeSpan.FromSeconds(15) });
4949
TaskService.Instance.RootFolder.RegisterTaskDefinition(_netIpAddressTaskUniqueName, td, TaskCreation.CreateOrUpdate, "SYSTEM", null, TaskLogonType.ServiceAccount);
5050

WireGuardServerForWindows/VersionInfo2.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<!-- Things to update: Version, Date, Release Notes -->
33
<AppUpdate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/micahmo/WgServerforWindows/master/WireGuardServerForWindows/AppUpdate.xsd">
5-
<Version>2.1.3.0</Version>
6-
<ReleaseDate>2025-03-05</ReleaseDate>
5+
<Version>2.1.4.0</Version>
6+
<ReleaseDate>2025-03-17</ReleaseDate>
77
<!-- Default download -->
8-
<DownloadLink>https://github.com/micahmo/WgServerforWindows/releases/download/v2.1.3/WS4WSetup-2.1.3.exe</DownloadLink>
9-
<DownloadFileName>WS4WSetup-2.1.3.exe</DownloadFileName>
8+
<DownloadLink>https://github.com/micahmo/WgServerforWindows/releases/download/v2.1.4/WS4WSetup-2.1.4.exe</DownloadLink>
9+
<DownloadFileName>WS4WSetup-2.1.4.exe</DownloadFileName>
1010
<!-- Release notes -->
11-
<VersionNotes> - Show warning if another process is listening on the configured WireGuard server port (#138 and #188)</VersionNotes>
11+
<VersionNotes> - Fix issue where NAT boot task could fail (#139)</VersionNotes>
1212
<ReleaseNotes></ReleaseNotes>
1313
</AppUpdate>

0 commit comments

Comments
 (0)