New Proton Drive CLI with improved UX
The new Proton Drive CLI v0.8.0 is out. We focused mostly on UX based on the feedback we got.
- General help is now expanded to tell you about
fsand other shortcuts, - CLI gives you hints what commands you probably meant if you use ambiguous shortcut (for example, you can type just
fsand it will list all commands for given category, easier discovery), versioncommand also tells you if the CLI is up-to-date,- help for upload and download commands explains in detail what various conflict strategies do,
- and finally, we reworked conflict strategies to be more explicit and tailored for each operation instead of using general terms that was leading to major confusion (with that, we had to remove setting conflict strategy for both files and folders, now it must be specified separately),
- and also some bug fixing as usual.
For example, fs up -h:
Options:
-f, --file-conflict-strategy STRATEGY
Conflict strategy applied to files. Values:
* create-new-revision: Create a new revision of the
existing file.
* rename: Add a unique suffix to the name.
* replace: Trash the remote file or folder and
upload the local copy.
* skip: Skip the conflicting file or folder.
-d, --folder-conflict-strategy STRATEGY
Conflict strategy applied to folders. Values:
* merge: Merge folder contents.
* rename: Add a unique suffix to the name.
* replace: Trash the remote file or folder and
upload the local copy.
* skip: Skip the conflicting file or folder.