diff --git a/README.md b/README.md new file mode 100644 index 0000000..3f10998 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +A command-line tool for printing text-only proxies of Magic The Gathering Cards. Kind of a silly idea, mostly meant to help me learn some zig. + +Currently the only way to use the program is to build from source. + +Use like: `proxy-print -l ` where the file specified contains a list of cards exported from Moxfield. Other list formats will hopefully be supported in the future. + +I'm still working on adding some extra options, we'll see how far I take it. Currently there isn't a way to specify the name of the output pdf, or any formatting options other than whether or not the height of the cards should be constant. diff --git a/src/print.zig b/src/print.zig index a2c98d8..c1a9006 100644 --- a/src/print.zig +++ b/src/print.zig @@ -5,6 +5,8 @@ //TODO: add some kind of "update" command to support pulling new oracle data //TODO: implement oracleFileName as a cli arg //TODO: add more robust tests +//TODO: support other list formats +//TODO: support multiple copies of cards const std = @import("std"); // https://github.com/Hejsil/zig-clap