aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-10-06cli: Add "delete" commandzlg2-0/+19
Unlike the old version of vgstash, the new one does not accept row IDs as arguments for removal. Instead, it accepts two mandatory arguments: the title of the game, and the system it's on. This is in line with the database itself, using the title and system as primary keys.
2018-10-06Remove ID field from DBzlg3-38/+46
The sqlite database already uses a game's title and system as the primary keys. Row IDs are redundant.
2018-10-06cli: change "Status" heading to "Progress"zlg2-36/+40
2018-09-29cli: Add pretty printing to 'list' commandzlg3-17/+107
Also add the "--width" option to specify the maximum width of the table.
2018-09-08cli: add '--raw' option to list commandzlg2-9/+45
Add '--raw' option to the list command, in addition to proper note expansion. Newline characters in notes are escaped to be friendly to scripting. This option may be shortened to '-r' at the user's convenience. In raw output mode, the information is formatted in plain pipe-delimited strings, one line per row: title|system|ownership|progress|notes ownership and progress are printed in their numeric form, consistent with the OWNERSHIP and PROGRESS dictionaries in the vgstash package. An empty notes field will result in a line ending with a pipe and no whitespace following it.
2018-09-08Add remaining filters to vgstash packagezlg1-2/+11
2018-09-03Branch off from master with pytest, tox, clickzlg4-0/+579
This commit is huge, but contains everything needed for a "proper" build system built on pytest + tox and a CLI built with click. For now, this branch will contain all new vgstash development activity until it reaches feature parity with master. The CLI is installed to pip's PATH. Only the 'init', 'add', and 'list' commands work, with only two filters. This is pre-alpha software, and is therefore not stable yet.