Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit f76d67d

Browse files
committed
Version 2.0.7.1
1 parent 9e12142 commit f76d67d

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

KeeOneDriveSync.plgx

-8.09 KB
Binary file not shown.

KoenZomers.KeePass.OneDriveSync/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
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("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.7.0")]
34+
[assembly: AssemblyVersion("2.0.7.1")]

KoenZomers.KeePass.OneDriveSync/Providers/OneDriveProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,12 @@ public static async Task<string> OpenFromOneDriveCloudProvider(Configuration dat
478478
var saveFileDialogResult = saveFiledialog.ShowDialog();
479479
if (saveFileDialogResult != DialogResult.OK || string.IsNullOrEmpty(saveFiledialog.FileName))
480480
{
481-
updateStatus(string.Format("Open KeePass database {0} from OneDrive aborted", databaseConfig.KeePassDatabase.Name));
481+
updateStatus("Open KeePass database from OneDrive aborted");
482482
return null;
483483
}
484484

485485
// Download the KeePass database to the selected location
486-
updateStatus(string.Format("Downloading KeePass database {0}", databaseConfig.KeePassDatabase.Name));
486+
updateStatus("Downloading KeePass database");
487487
await oneDriveApi.DownloadItemAndSaveAs(oneDriveItem, saveFiledialog.FileName);
488488

489489
// The ETag changes with every request of the item so we use the CTag instead which only changes when the file changes

README.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Download the PLGX and place it inside your KeePass\Plugins folder. Typically thi
1717

1818
## Latest Version
1919

20+
Version 2.0.7.1 - July 7, 2019
21+
22+
- Resolved an issue with using the Open from OneDrive option as reported in [issue 100](https://github.com/KoenZomers/KeePassOneDriveSync/issues/100)
23+
2024
Version 2.0.7.0 - June 30, 2019
2125

2226
- The ability to synchronize multiple databases at once in version 2.0.5.0 didn't work yet for KeePass databases stored on SharePoint. Fixed that in this version, syncing multiple databases at once works for OneDrive Consumer, OneDrive for Business and SharePoint hosted databases now.
@@ -59,23 +63,6 @@ Version 2.0.3.0 - April 9, 2019
5963

6064
- Removed the option to store the OneDrive Refresh Token in the Windows Credential Manager. Several people raised an issue where storing the Refresh Token in the Windows Credential Manager kept prompting them to log in each time they would restart KeePass or reopen the database. I found out that the Refresh Tokens have become longer. Because of this they don't fit into the Windows Credential Manager store anymore. There is no way for me to enlarge the storage in the Windows Credential Manager store nor to truncate the Refresh Token, so the only option I had left was to remove it as an option. Existing databases which are using it will keep using it. New databases won't get the option anymore. If you are facing the login prompt each time you open your database, go to Tools -> OneDriveSync Options and remove the line with your database. Hit ctrl+s again and set up your sync again choosing one of the two remaining options: storing it in the KeePass database or in the KeePass config file on your local disk. [More information on both options](OneDriveRefreshToken.md).
6165

62-
Version 2.0.2.5 - February 18, 2019
63-
64-
- Enabled TLS 1.2 to be used to resolve [issue 72](https://github.com/KoenZomers/KeePassOneDriveSync/issues/72)
65-
66-
Version 2.0.2.4 - February 18, 2019
67-
68-
- Enabled surpressing of JavaScript errors in the Internet Explorer navigation window which is used to sign in to OneDrive. The error that was shown did no harm and confused end users. This resolves [issue 76](https://github.com/KoenZomers/KeePassOneDriveSync/issues/76) .
69-
70-
Version 2.0.2.3 - February 18, 2019
71-
72-
- Updated the OneDrive API package to version 2.1.2.1 in which the issue with OneDrive for Business as addressed here has been fixed [issue 78](https://github.com/KoenZomers/KeePassOneDriveSync/issues/78)
73-
74-
Version 2.0.2.2 - February 17, 2019
75-
76-
- Fixed the instance not set to a reference of an object error reported by several people typically when still using the OneDriveConsumer Storage Provider
77-
- I've stopped publishing the DLL files from now on to avoid confusion. I believe everyone is using the PLGX already anyway. If not and you have a good reason to use the DLLs over the PLGX, let me know.
78-
7966
[Version History](./VersionHistory.md)
8067

8168
## TODO

VersionHistory.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## Version History
44

5+
Version 2.0.2.5 - February 18, 2019
6+
7+
- Enabled TLS 1.2 to be used to resolve [issue 72](https://github.com/KoenZomers/KeePassOneDriveSync/issues/72)
8+
9+
Version 2.0.2.4 - February 18, 2019
10+
11+
- Enabled surpressing of JavaScript errors in the Internet Explorer navigation window which is used to sign in to OneDrive. The error that was shown did no harm and confused end users. This resolves [issue 76](https://github.com/KoenZomers/KeePassOneDriveSync/issues/76) .
12+
13+
Version 2.0.2.3 - February 18, 2019
14+
15+
- Updated the OneDrive API package to version 2.1.2.1 in which the issue with OneDrive for Business as addressed here has been fixed [issue 78](https://github.com/KoenZomers/KeePassOneDriveSync/issues/78)
16+
17+
Version 2.0.2.2 - February 17, 2019
18+
19+
- Fixed the instance not set to a reference of an object error reported by several people typically when still using the OneDriveConsumer Storage Provider
20+
- I've stopped publishing the DLL files from now on to avoid confusion. I believe everyone is using the PLGX already anyway. If not and you have a good reason to use the DLLs over the PLGX, let me know.
21+
522
Version 2.0.2.1 - October 16, 2018
623

724
- Fixed incorrect spelling of equivalent in the where to store the token dialog. Thanks to [awesomecogs](https://github.com/awesomecogs) for [reporting it](https://github.com/KoenZomers/KeePassOneDriveSync/issues/64)!

0 commit comments

Comments
 (0)