Skip to content

Commit b8d1f16

Browse files
committed
#283 Port range for redirect URI calculated wrong
1 parent ea7ec22 commit b8d1f16

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.0.3 (2021-05-21)
2+
3+
### Fixed
4+
5+
- \#283 Port range for redirect URI calculated wrong
6+
7+
18
## 2.0.2 (2021-05-21)
29

310
### Fixed

KeeAnywhere/OAuth2/OidcSystemBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private static bool CreateListener(out string redirectUri, out HttpListener list
3232
// IANA suggested range for dynamic or private ports
3333
//const int MinPort = 49215;
3434
//const int MaxPort = 65535;
35-
ports = Enumerable.Range(49215, 65535);
35+
ports = Enumerable.Range(49215, 16321);
3636
}
3737

3838
foreach (var port in ports)

KeeAnywhere/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
//[assembly: AssemblyVersion("0.1.0.0")]
34-
[assembly: AssemblyVersion("2.0.2.0")]
35-
[assembly: AssemblyFileVersion("2.0.2.0")]
36-
[assembly: AssemblyInformationalVersion("2.0.2")]
34+
[assembly: AssemblyVersion("2.0.3.0")]
35+
[assembly: AssemblyFileVersion("2.0.3.0")]
36+
[assembly: AssemblyInformationalVersion("2.0.3")]

build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
set version=2.0.2
2+
set version=2.0.3
33
set zip="packages\7-Zip.CommandLine.9.20.0\tools\7za.exe"
44
set msbuildcmd="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat"
55

chocolatey/keepass-plugin-keeanywhere.nuspec

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>keepass-plugin-keeanywhere</id>
55
<title>KeePass Plugin KeeAnywhere</title>
6-
<version>2.0.2</version>
6+
<version>2.0.3</version>
77
<authors>Daniel Bölts</authors>
88
<owners>Kyrodan</owners>
99
<summary>Plugin for KeePass 2.x to to add support for cloud storage providers</summary>
@@ -31,7 +31,14 @@ Supported providers:
3131
<copyright>© 2015-2021 Daniel Bölts</copyright>
3232
<licenseUrl>https://github.com/Kyrodan/KeeAnywhere/blob/master/LICENSE</licenseUrl>
3333
<requireLicenseAcceptance>false</requireLicenseAcceptance>
34-
<releaseNotes>## 2.0.2 (2021-05-21)
34+
<releaseNotes>## 2.0.3 (2021-05-21)
35+
36+
### Fixed
37+
38+
- \#283 Port range for redirect URI calculated wrong
39+
40+
41+
## 2.0.2 (2021-05-21)
3542

3643
### Fixed
3744

version_manifest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:
2-
KeeAnywhere:2.0.2.0
2+
KeeAnywhere:2.0.3.0
33
:

0 commit comments

Comments
 (0)