Overview
Comment: | ofhash: Update usage to reflect changed reality
The usage still showed that only one algorithm is allowed while multiple |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
405f05613700e902f636b46f67c2c94d |
User & Date: | js on 2021-07-09 21:23:03 |
Other Links: | manifest | tags |
Context
2021-07-13
| ||
17:52 | Change version from 1.1-dev to 1.1 check-in: 8fb4f1bfce user: js tags: trunk | |
2021-07-09
| ||
21:23 | ofhash: Update usage to reflect changed reality check-in: 405f056137 user: js tags: trunk | |
2021-07-04
| ||
16:31 | ofarc: Fix adding symlinks to directories check-in: ecb2dfa803 user: js tags: trunk | |
Changes
Modified utils/ofhash/OFHash.m from [976db374f8] to [1dccaed4eb].
︙ | ︙ | |||
39 40 41 42 43 44 45 | OF_APPLICATION_DELEGATE(OFHash) static void help(void) { [OFStdErr writeLine: OF_LOCALIZED(@"usage", | | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | OF_APPLICATION_DELEGATE(OFHash) static void help(void) { [OFStdErr writeLine: OF_LOCALIZED(@"usage", @"Usage: %[prog] [--md5] [--ripemd160] [--sha1] [--sha224] " @"[--sha256] [--sha384] [--sha512] file1 [file2 ...]", @"prog", [OFApplication programName])]; [OFApplication terminateWithStatus: 1]; } static void printHash(OFString *algo, OFString *path, id <OFCryptographicHash> hash) |
︙ | ︙ |
Modified utils/ofhash/lang/de.json from [775fc52ec2] to [e3d21e1de1].
1 2 | { "usage": [ | | | | 1 2 3 4 5 6 7 8 9 10 | { "usage": [ "Benutzung: %[prog] [--md5] [--ripemd160] [--sha1] [--sha224] ", "[--sha256] [--sha384] [--sha512] datei1 [datei2 ...]" ], "unknown_long_option": "%[prog]: Unbekannte Option: --%[opt]", "unknown_option": "%[prog]: Unbekannte Option: -%[opt]", "failed_to_open_file": "Fehler beim Öffnen der Datei %[file]: %[error]", "failed_to_read_file": "Fehler beim Lesen der Datei %[file]: %[error]" } |