aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue
AgeCommit message (Collapse)Author
2023-10-17add filter operatorsLibravatar Alexander Foremny
The following filter expressions are now additionally valid: ``` --filter @tag <=VALUE --filter @tag <VALUE --filter @tag >=VALUE --filter @tag >VALUE ``` Note that negation needs some re-work. Currently, only `--filter !@tag <VALUE` is valid, and `--filter @tag !<VALUE` is not. The first version may not behave as you would expect it. A tracking issue has been created. Note that without typing tag values, all comparisons perform lexicographically on `String`s.
2023-10-17applySort -> applySortsLibravatar Alexander Foremny
2023-10-17allow empty-valued (bool) tagsLibravatar Alexander Foremny
2023-10-17refactor include,exclude from simple filtersLibravatar Alexander Foremny
2023-10-16add `--sort` to `list`Libravatar Alexander Foremny
2023-10-16add internal tag `createdAt`Libravatar Alexander Foremny
2023-10-16refactor `Issue.Provenance` from `Issue`Libravatar Alexander Foremny
2023-10-16refactor: add language extensions to Cabal fileLibravatar Alexander Foremny
Ditches `ghci` in favor of `cabal repl`.
2023-10-14add basic caching of Issue'sLibravatar Fabian Kirchner
2023-10-13title cannot span multiple linesLibravatar Fabian Kirchner
2023-10-05fix trailing newline in text extract, fix testsLibravatar Alexander Foremny
2023-10-05show single issue by id onlyLibravatar Alexander Foremny
2023-10-05generate internal @id tag from titleLibravatar Alexander Foremny
2023-10-05refactor issue text extractionLibravatar Alexander Foremny
2023-10-04add --filter, filter by tagsLibravatar Alexander Foremny
2023-10-04add tags to issuesLibravatar Alexander Foremny