Skip to content

Commit

Permalink
#283 Port range for redirect URI calculated wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrodan committed May 21, 2021
1 parent ea7ec22 commit b8d1f16
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion KeeAnywhere/OAuth2/OidcSystemBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions KeeAnywhere/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
11 changes: 9 additions & 2 deletions chocolatey/keepass-plugin-keeanywhere.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>keepass-plugin-keeanywhere</id>
<title>KeePass Plugin KeeAnywhere</title>
<version>2.0.2</version>
<version>2.0.3</version>
<authors>Daniel Bölts</authors>
<owners>Kyrodan</owners>
<summary>Plugin for KeePass 2.x to to add support for cloud storage providers</summary>
Expand Down Expand Up @@ -31,7 +31,14 @@ Supported providers:
<copyright>© 2015-2021 Daniel Bölts</copyright>
<licenseUrl>https://github.com/Kyrodan/KeeAnywhere/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>## 2.0.2 (2021-05-21)
<releaseNotes>## 2.0.3 (2021-05-21)

### Fixed

- \#283 Port range for redirect URI calculated wrong


## 2.0.2 (2021-05-21)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion version_manifest.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
KeeAnywhere:2.0.2.0
KeeAnywhere:2.0.3.0
:

0 comments on commit b8d1f16

Please sign in to comment.