mirror of
https://github.com/elliotnunn/macresources.git
synced 2024-12-14 01:31:03 +00:00
Correctly document non-DeRez-like options
This commit is contained in:
parent
ad96f756d2
commit
b21a7a4595
@ -5,18 +5,18 @@ import macresources
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='''
|
parser = argparse.ArgumentParser(description='''
|
||||||
Decompile legacy Mac resources to the Rez language. Unless the
|
Decompile legacy Mac resources to the Rez language. Unless an option
|
||||||
`-ascii' flag is used, the output will match Apple's deprecated
|
marked below with [!] is used, the output will match Apple's deprecated
|
||||||
DeRez utility. No attempt is made to access the native Mac resource
|
DeRez utility. No attempt is made to access the native Mac resource
|
||||||
fork, but this can be worked around by appending `/..namedfork/rsrc'
|
fork, but this can be worked around by appending `/..namedfork/rsrc'
|
||||||
to the name of the input file.
|
to the name of the input file.
|
||||||
''')
|
''')
|
||||||
|
|
||||||
parser.add_argument('resourceFile', help='file to be decompiled')
|
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('-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()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user