aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue
AgeCommit message (Collapse)Author
2023-12-12chore: add issue marker "XXX"Libravatar Alexander Foremny
2023-12-12fix: fix sortLibravatar Alexander Foremny
2023-12-08feat: add filtering tags by (POSIX) regexLibravatar Alexander Foremny
Example: ``` anissue list --filter '@title /foo/' ```
2023-12-08feat: easily separate renderables by blank linesLibravatar Alexander Foremny
2023-12-08chore: drop `Git.withWorkingTree`Libravatar Alexander Foremny
2023-12-07chore: move remaining `History.*` modules outside of `History`Libravatar Alexander Foremny
2023-12-05feat: parse issues as markdownLibravatar Alexander Foremny
2023-12-05feat: add experimental render apiLibravatar Alexander Foremny
2023-11-30chore: make issue ids obligatoryLibravatar Alexander Foremny
2023-11-30feat: show commit references in show commandLibravatar Alexander Foremny
2023-11-29feat: collect issues referencing issueLibravatar Fabian Kirchner
2023-11-29support commentsLibravatar Alexander Foremny
2023-11-28editing issues preserves comment styleLibravatar Alexander Foremny
2023-11-28change provenance's hash form `Text` to `CommitHash`Libravatar Alexander Foremny
2023-11-27close separate-database-issues-and-history-issuesLibravatar Alexander Foremny
2023-11-27don't cache `internalTags`Libravatar Alexander Foremny
2023-11-10@backlog issues, remove @scheduledLibravatar Alexander Foremny
2023-11-09group-by -> groupLibravatar Alexander Foremny
2023-11-09fix extracting tags from codeLibravatar Alexander Foremny
2023-11-07sort newest issues first by defaultLibravatar Alexander Foremny
2023-11-07add internal tag `title'Libravatar Alexander Foremny
2023-11-07update issuesLibravatar Alexander Foremny
2023-11-07add issue marker as internal tag @typeLibravatar Alexander Foremny
2023-11-07add author & editor to internal tagsLibravatar Alexander Foremny
2023-11-07add numbers to grouped topicsLibravatar Alexander Foremny
2023-11-07fix group-by parsingLibravatar Alexander Foremny
2023-11-07add --group-by optionLibravatar Fabian Kirchner
2023-11-07add internal tag @modifiedAtLibravatar Alexander Foremny
2023-11-07record both creation and update in provenanceLibravatar Alexander Foremny
2023-11-07refactor historyLibravatar Alexander Foremny
2023-10-17make sort type-awareLibravatar Alexander Foremny
2023-10-17make filter type-awareLibravatar Alexander Foremny
We interpret the following types: - ISO8601-formatted strings as dates, - integer-formatted strings as integers, - all other strings as strings. If the filter value matches a format, it is cast into the respective data type. For comparison-based filtering, the tag's value is then cast into the same data type and comparison is performed type-aware. If the tag's value is not castable, we consider it not matching.
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