2024.4.7
What's Changed
This update adds two new, quality-of-life feature flags to the command-line interface of avro.py. These apply to both commands (parse
and reverse
):
- A new
--from-clip
flag, which draws input text for parsing from the system clipboard. - A new
--copy
flag, which saves the output (parsed) text to clipboard.
# Using additional flags to ease workflow.
$ avro parse --from-clip # (fetching input from clipboard)
$ avro parse "asolei!" --copy && avro reverse "আসলেই" --copy # (copying output to clipboard)
$ avro parse --from-clip --copy # (clipboard input -> output)
Full Changelog: 2024.2.17...2024.3.31