diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a9254e..570ed18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.0.3 (2021-05-21) + +### Fixed + +- \#283 Port range for redirect URI calculated wrong + + ## 2.0.2 (2021-05-21) ### Fixed diff --git a/KeeAnywhere/OAuth2/OidcSystemBrowser.cs b/KeeAnywhere/OAuth2/OidcSystemBrowser.cs index deb807f..4a6c79c 100644 --- a/KeeAnywhere/OAuth2/OidcSystemBrowser.cs +++ b/KeeAnywhere/OAuth2/OidcSystemBrowser.cs @@ -32,7 +32,7 @@ private static bool CreateListener(out string redirectUri, out HttpListener list // IANA suggested range for dynamic or private ports //const int MinPort = 49215; //const int MaxPort = 65535; - ports = Enumerable.Range(49215, 65535); + ports = Enumerable.Range(49215, 16321); } foreach (var port in ports) diff --git a/KeeAnywhere/Properties/AssemblyInfo.cs b/KeeAnywhere/Properties/AssemblyInfo.cs index f56ac95..d4b65c0 100644 --- a/KeeAnywhere/Properties/AssemblyInfo.cs +++ b/KeeAnywhere/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: //[assembly: AssemblyVersion("0.1.0.0")] -[assembly: AssemblyVersion("2.0.2.0")] -[assembly: AssemblyFileVersion("2.0.2.0")] -[assembly: AssemblyInformationalVersion("2.0.2")] +[assembly: AssemblyVersion("2.0.3.0")] +[assembly: AssemblyFileVersion("2.0.3.0")] +[assembly: AssemblyInformationalVersion("2.0.3")] diff --git a/build.cmd b/build.cmd index 24e0fcd..9751647 100644 --- a/build.cmd +++ b/build.cmd @@ -1,5 +1,5 @@ @echo off -set version=2.0.2 +set version=2.0.3 set zip="packages\7-Zip.CommandLine.9.20.0\tools\7za.exe" set msbuildcmd="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" diff --git a/chocolatey/keepass-plugin-keeanywhere.nuspec b/chocolatey/keepass-plugin-keeanywhere.nuspec index e47586c..0bb5507 100644 --- a/chocolatey/keepass-plugin-keeanywhere.nuspec +++ b/chocolatey/keepass-plugin-keeanywhere.nuspec @@ -3,7 +3,7 @@ keepass-plugin-keeanywhere KeePass Plugin KeeAnywhere - 2.0.2 + 2.0.3 Daniel Bölts Kyrodan Plugin for KeePass 2.x to to add support for cloud storage providers @@ -31,7 +31,14 @@ Supported providers: © 2015-2021 Daniel Bölts https://github.com/Kyrodan/KeeAnywhere/blob/master/LICENSE false - ## 2.0.2 (2021-05-21) + ## 2.0.3 (2021-05-21) + +### Fixed + +- \#283 Port range for redirect URI calculated wrong + + +## 2.0.2 (2021-05-21) ### Fixed diff --git a/version_manifest.txt b/version_manifest.txt index b24b278..574d66f 100644 --- a/version_manifest.txt +++ b/version_manifest.txt @@ -1,3 +1,3 @@ : -KeeAnywhere:2.0.2.0 +KeeAnywhere:2.0.3.0 : \ No newline at end of file