Skip to content

Commit

Permalink
Version 1.0.8-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
viciousviper committed Aug 26, 2016
1 parent b3c9488 commit d307f42
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.7-alpha {build}
version: 1.0.8-alpha {build}

branches:
only:
Expand Down
3 changes: 1 addition & 2 deletions CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

using System;
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyCompany("IgorSoft")]
[assembly: AssemblyCopyright("Copyright © 2015-2016")]
[assembly: AssemblyTrademark("")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.6.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
10 changes: 5 additions & 5 deletions DokanCloudFS.Mounter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ private void ParseCommandLine(string[] args)
c.OnExecute(() => Mount(passPhrase.Value(), userNames.Values));
});

commandLine.Command("reset", c => {
var userNames = c.Argument("<userNames>", "If specified, purge the persisted settings of the drives associated with the specified users; otherwise, purge the persisted settings of all configured drives.", true);
c.HelpOption("-?|-h|--help");
c.OnExecute(() => Reset(userNames.Values));
});
//commandLine.Command("reset", c => {
// var userNames = c.Argument("<userNames>", "If specified, purge the persisted settings of the drives associated with the specified users; otherwise, purge the persisted settings of all configured drives.", true);
// c.HelpOption("-?|-h|--help");
// c.OnExecute(() => Reset(userNames.Values));
//});

commandLine.Execute(args);
}
Expand Down
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ The expected gateway interface types and a set of prefabricated gateways are pro
Commands:
mount
reset
Usage: Mounter mount [arguments] [options]
Expand All @@ -97,18 +96,9 @@ The expected gateway interface types and a set of prefabricated gateways are pro
Options:
-p|--passPhrase The pass phrase used to encrypt persisted user credentials and access tokens
-?|-h|--help Show help information
Usage: Mounter reset [arguments] [options]
Arguments:
<userNames> If specified, purge the persisted settings of the drives associated with the specified users; otherwise, purge the persisted settings of all configured drives.
Options:
-?|-h|--help Show help information
```
- The **mount** command will mount the drives configured in *IgorSoft.DokanCloudFS.Mounter.exe.config*, optionally filtered by the specified user names.
- If you use the **-p|--passPhrase** option for the first time, previously unencrypted persisted settings **of the drives mounted at this time** - and all newly acquired authentication credentials - will be encrypted with the specified pass phrase. Persisted settings of drives not mounted at this time will remain as they are.
- The **reset** command will purge all persisted settings and require you to explicitely login on the next start of *IgorSoft.DokanCloudFS.Mounter.exe*.

### Sample configuration

Expand Down Expand Up @@ -190,7 +180,7 @@ You have been warned.

| Date | Version | Comments |
| :--------- | :---------- | :----------------------------------------------------------------------------- |
| 2016-08-26 | 1.0.8-alpha | -
| 2016-08-26 | 1.0.8-alpha | - Updated CloudFS to version 1.0.8-alpha<br/>- Support encryption of account credentials and access tokens in persistent settings.<br/>- Activated static code analysis via Coverity Scan.
| 2016-08-08 | 1.0.7-alpha | - Updated DokanNet to version 1.0.0-RC4<br/>- Successful authentication is required before mounting a cloud drive<br/>- Determine effective file size of encrypted files asynchronously to avoid timeouts when opening large directories in Windows Explorer |
| 2016-06-16 | 1.0.6-alpha | - Added separate build configurations for use with locally built CloudFS gateways or unsigned/signed CloudFS NuGet packages |
| 2016-05-19 | 1.0.5-alpha | - Updated DokanNet to version 1.0.0-RC3<br/>- Retired Copy gateway<br/>- Allow readonly-access to unencrypted files on otherwise encrypted cloud storage volumes<br/>- Support file creation for gateways that don't allow modification of existing files (e.g. Mega)<br/>- Fixed error in size calculation when retrieving encrypted files from cloud storage<br/>- Improved online file editing capability<br/>- Various bugfixes |
Expand Down

0 comments on commit d307f42

Please sign in to comment.