added README.md, updated TODOs
This commit is contained in:
parent
904e4120dd
commit
428cd668f3
|
@ -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 <filename>` 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.
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue