Skip to content

Commit

Permalink
Merge pull request #92 from micahmo/release/v2.0.6
Browse files Browse the repository at this point in the history
Release/v2.0.6
  • Loading branch information
micahmo authored Feb 3, 2023
2 parents a339153 + d3cbb68 commit 4453e60
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>
<!-- Keep in sync with WS4WSetupScript.iss and VersionInfo.xml -->
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<FileVersion>2.0.5.0</FileVersion>
<InformationalVersion>2.0.5.0</InformationalVersion>
<AssemblyVersion>2.0.6.0</AssemblyVersion>
<FileVersion>2.0.6.0</FileVersion>
<InformationalVersion>2.0.6.0</InformationalVersion>
<Authors>Micah Morrison</Authors>
<Product>WS4W</Product>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Installer/WS4WSetupScript.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define MyAppNameOld "WireGuard Server For Windows"
#define MyAppName "Wg Server for Windows"
#define MyAppVersion "2.0.5"
#define MyAppVersion "2.0.6"
#define MyAppPublisher "Micah Morrison"
#define MyAppURL "https://github.com/micahmo/WgServerforWindows"
#define MyAppExeName "WgServerforWindows.exe"
Expand Down
3 changes: 3 additions & 0 deletions WgServerforWindows/Models/ClientConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ public ClientConfiguration(ClientConfigurationList parentList)
// Initial value is server value
AllowedRoutableIpsProperty.Value = allowedIpsDefault;

// The public key can be entered by the user
PublicKeyProperty.IsReadOnly = false;

// The client generates the PSK
PresharedKeyProperty.Action = new ConfigurationPropertyAction(this)
{
Expand Down
10 changes: 5 additions & 5 deletions WireGuardServerForWindows/VersionInfo2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<!-- Things to update: Version, Date, Release Notes -->
<AppUpdate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/micahmo/WgServerforWindows/master/WireGuardServerForWindows/AppUpdate.xsd">
<Version>2.0.5.0</Version>
<ReleaseDate>2023-01-05</ReleaseDate>
<Version>2.0.6.0</Version>
<ReleaseDate>2023-02-03</ReleaseDate>
<!-- Default download -->
<DownloadLink>https://github.com/micahmo/WgServerforWindows/releases/download/v2.0.5/WS4WSetup-2.0.5.exe</DownloadLink>
<DownloadFileName>WS4WSetup-2.0.5.exe</DownloadFileName>
<DownloadLink>https://github.com/micahmo/WgServerforWindows/releases/download/v2.0.6/WS4WSetup-2.0.6.exe</DownloadLink>
<DownloadFileName>WS4WSetup-2.0.6.exe</DownloadFileName>
<!-- Release notes -->
<VersionNotes> - Fix issue with generating client addresses (#70)</VersionNotes>
<VersionNotes> - Allow setting client public key without having private key (#76)</VersionNotes>
<ReleaseNotes></ReleaseNotes>
</AppUpdate>

0 comments on commit 4453e60

Please sign in to comment.