Tested on Rust 1.39.
Extracting texts from users id1 and id2 from a chat dump:
cargo run --release --example cli -- -o messages.txt --only-include-names=id1,id2 -- messages.htmlTo see all available options, run:
cargo run --release --example cli -- --helpSee examples/cli.rs.
Added new events for reading message attachments:
AttachmentExtracted { kind, url, vk_obj, description }— raised after extracting a generic attachmentWallPartExtracted— raised after extracting the text of the wall post from the precedingAttachmentExtractedevent (ifkind == Wall)RawAttachmentPartExtracted— raised after extracting the body of an attachment encoded in JSON, e.g. a poll.
- Forwarded messages are now correctly parsed
- The current nesting level is reported for each message: this can be used to reconstruct forwarded message chains or skip forwarded messages altogether
- Minor performance improvements
Initial release