Skip to content

Commit c7b43ca

Browse files
committed
v0.7.7
1 parent 99cef59 commit c7b43ca

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ Options:
4141
exmaple 'i:com.apple.*' or 'o:com.apple.apsd'.
4242
-r, --parse Parse XPC dictionary keys that include either
4343
`bplist00` or `bplist16` data.
44-
-o OUTPUT, --output=OUTPUT
45-
dump output to file OUTPUT
4644
```
4745
![screenshot_1.png](assets/screenshot_1.png)
4846

xpcspy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.7.6'
1+
__version__ = '0.7.7'

xpcspy/console/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def _add_options(self, parser):
1919
parser.add_option('-r', '--parse',
2020
help="Parse XPC dictionary keys that include either `bplist00` or `bplist16` data.",
2121
metavar='SHOULD_PARSE', action='store_true')
22-
parser.add_option('-o', '--output', help="dump output to file OUTPUT", metavar='OUTPUT', type='string')
22+
# parser.add_option('-o', '--output', help="dump output to file OUTPUT", metavar='OUTPUT', type='string')
2323

2424
def _initialize(self, parser, options, args):
2525
if options.filter:
@@ -39,4 +39,4 @@ def _start(self):
3939

4040
def main():
4141
app = XPCSpyApplication()
42-
app.run()
42+
app.run()

0 commit comments

Comments
 (0)