aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-04-18Increase version v0.0.1 -> v0.0.2HEADv0.0.2masterTeddy Wing
2021-04-18Accept multiple PDF input filesTeddy Wing
Previously we only accepted the first PDF file given in free arguments. Allow multiple files to be processed in a single call.
2021-04-18Add license (GNU GPLv3+)v0.0.1Teddy Wing
2021-04-18Cargo.toml: Fix whitespaceTeddy Wing
2021-04-18Makefile: Add packaging and distributionTeddy Wing
2021-04-18Add READMETeddy Wing
2021-04-17Generate man pageTeddy Wing
2021-04-17doc/formurapid.1.txt: Add manual descriptionTeddy Wing
2021-04-17doc/formurapid.1.txt: Document command line optionsTeddy Wing
2021-04-17Add an exampleTeddy Wing
Try to show command usage with a PDF form and the generated files.
2021-04-12Start man pageTeddy Wing
2021-04-12Add `--help` and `--version` flagsTeddy Wing
2021-04-12Add function documentationTeddy Wing
2021-04-12main(): Replace `unwrap`s with `Result`sTeddy Wing
2021-04-11generate_fill_helpers(): Replace `unwrap`s with `anyhow::Result`sTeddy Wing
2021-04-11fill(): Remove `unwrap`sTeddy Wing
Replace these with 'anyhow' `Result`s.
2021-04-11Print usage on malformed command line argumentsTeddy Wing
2021-04-11main(): Move helper file generation to a separate functionTeddy Wing
2021-04-11Make all file names dynamic based on input form pathTeddy Wing
Write files in the same directory as the input form. Files: * PDF form with IDs filled * TOML field file * PDF with fields filled from TOML
2021-04-11Get PDF file path from free command line argumentTeddy Wing
Add 'getopts' to parse command line arguments. Replace `--fill` argument condition with 'getopts'. Replace the hard-coded PDF file path with one from the command line argument.
2021-04-11Write a PDF with fields filled in from the TOML fileTeddy Wing
Add a new `--fill` command line argument that instructs the program to fill in the form using the values in the TOML file.
2021-04-11Idea.txt: Add inspirationTeddy Wing
2021-04-11Write a base TOML file including the fieldsTeddy Wing
Write a file that can be modified by a user to fill in the form fields. A separate procedure will take the TOML file and fill in the appropriate fields.
2021-04-11Idea.txt: Add a note about the nameTeddy Wing
2021-04-11Fill in the form's fields with the fields' IDsTeddy Wing
Use a copy of Form 1040 as a sample. A copy of the PDF is produced so you can reference the text fields by their ID.
2021-04-11Add Idea.txtTeddy Wing
2021-04-11New Rust 1.51.0 projectTeddy Wing
Generated with: $ cargo init --bin