-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- encryptName now checks for illegal chars - encrypt command now honors -f switch - decryptFile now handles a long name correctly - mkdir can operate on real file system with switch -R - mv command does not terminate shell anymore in case of errors - (de-/en-)cryptFile behavior is unified and enhanced in multi-sources operations - new -F switch instructs encrypt/decrypt to preserve full path specified on the command line (default: only base name is used)
- Loading branch information
Showing
4 changed files
with
80 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
COPYRIGHT = '''Copyright (C)2024, by maxpat78.''' | ||
__version__ = '1.10' | ||
__version__ = '1.11' | ||
__all__ = ["Vault", "init_vault", "backupDirIds"] | ||
from .cryptomator import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters