From b21a7a4595dd80d889dd84ba5043a13c58964771 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Sun, 9 Dec 2018 13:19:49 +0800 Subject: [PATCH] Correctly document non-DeRez-like options --- bin/SimpleDeRez | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/SimpleDeRez b/bin/SimpleDeRez index 75ec9d6..401b094 100755 --- a/bin/SimpleDeRez +++ b/bin/SimpleDeRez @@ -5,18 +5,18 @@ import macresources import sys parser = argparse.ArgumentParser(description=''' - Decompile legacy Mac resources to the Rez language. Unless the - `-ascii' flag is used, the output will match Apple's deprecated + Decompile legacy Mac resources to the Rez language. Unless an option + marked below with [!] is used, the output will match Apple's deprecated DeRez utility. No attempt is made to access the native Mac resource fork, but this can be worked around by appending `/..namedfork/rsrc' to the name of the input file. ''') parser.add_argument('resourceFile', help='file to be decompiled') -parser.add_argument('-ascii', action='store_true', help='guarantee ASCII output') +parser.add_argument('-ascii', action='store_true', help='[!] guarantee ASCII output') +parser.add_argument('-fakehdr', action='store_true', help='[!] save 225b file header as fake resource') +parser.add_argument('-compcmt', action='store_true', help='[!] helpfully comment compressed resources') parser.add_argument('-useDF', action='store_true', help='ignored: data fork is always used') -parser.add_argument('-fakehdr', action='store_true', help='save 225b file header as fake resource') -parser.add_argument('-compcmt', action='store_true', help='helpfully comment compressed resources') args = parser.parse_args()