Mattias Wadman
Mattias Wadman
An interesting future feature would be to write a `toplist` in jq, there is `toxml` :)
Hey, i made some changes to help and help tests https://github.com/wader/fq/pull/430 for you i think it's just to run `make doc` again and possible add a help test, see some...
No worries, great, yes i think it's just a few small things left. But i will take an extra look if there is anything so that you have all comments...
> Is `FieldRawLen` the correct way to decode a blob of binary data, such as in the `Data` type for binary plists? I'm having trouble extracting the data using `toactual`...
singletons seems to produce unknown fields: ```sh ➜ fq git:(bplist) ✗ go run . -o line_bytes=10 'grep_by(.type=="singleton"), .unknown0, .unknown1 | dv' /Users/wader//Library/Containers/com.apple.LoginUserService/Container.plist │00 01 02 03 04 05 06 07...
Range gap issue fixed in master https://github.com/wader/fq/pull/431, now unknown field shows up as one 12 bit field. But i got a bit unsure if the gap we're seeing in the...
With https://github.com/wader/fq/pull/432 `toactual` and `tosym` behave the same as `tovalue`. Also fixed the error. I think that make sense? The code that handles this is starting to get a bit...
Im thinking about releasing 0.0.10 soonish, would be nice to include this. If your busy we can merge and i can try fix the remaning things if you like?
> Sorry, I've been drowning in work and thesis so I haven't had time to figure out those last unknown bytes. If you want to merge it for the next...
Hey, this should fix the unknown field for singletons: ```patch diff --git a/format/bplist/bplist.go b/format/bplist/bplist.go index 7c74848c..83480d0d 100644 --- a/format/bplist/bplist.go +++ b/format/bplist/bplist.go @@ -91,15 +91,11 @@ func decodeItem(d *decode.D, p *plist)...