aboutsummaryrefslogtreecommitdiffstats
path: root/app
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-16comment add-command-for-regenerating-the-cacheLibravatar Alexander Foremny
2023-10-16comment add-command-for-regenerating-the-cacheLibravatar Alexander Foremny
2023-10-16comment add-command-for-listing-all-topicsLibravatar Alexander Foremny
2023-10-16add global flag `--no-pager|-P`Libravatar Alexander Foremny
2023-10-16fix unicode-related output problemsLibravatar Alexander Foremny
The underlying problem had been truncating `String` to `ByteString` (via `IsString(fromString))`, which is unsafe.
2023-10-16paginate outputLibravatar Alexander Foremny
2023-10-16add comments to all commentsLibravatar Fabian Kirchner
2023-10-16comment add-option-to-group-issue-listLibravatar Alexander Foremny
2023-10-16comment display-issuye-type-in-list-and-show-viewsLibravatar Alexander Foremny
2023-10-16comment should-automatically-generated-ids-be-randomLibravatar Alexander Foremny
2023-10-16comment ↵Libravatar Alexander Foremny
add-a-subcommand-which-appends-the-generated-ids-to-the-issue-in-the-sourcecode
2023-10-16comment expose-all-command-line-options-as-environment-variablesLibravatar Alexander Foremny
2023-10-16comment add-options-to-show-command-to-display-source-code-around-the-issueLibravatar Alexander Foremny
2023-10-16comment on add-command-for-re-generating-the-cacheLibravatar Alexander Foremny
2023-10-16add global option `--color`Libravatar Alexander Foremny
2023-10-16update `list` outputLibravatar Alexander Foremny
2023-10-16refactor `Git.withWorkingTree`Libravatar Alexander Foremny
2023-10-16add issue support-issue-commentsLibravatar Alexander Foremny
2023-10-16add `--sort` to `list`Libravatar Alexander Foremny
2023-10-16make `internalTags` a global optionLibravatar Alexander Foremny
2023-10-16add internal tag `createdAt`Libravatar Alexander Foremny
2023-10-16refactor `Issue.Provenance` from `Issue`Libravatar Alexander Foremny
2023-10-16add Process.procLibravatar Alexander Foremny
Adds type-trickery akin to `Text.printf` to provide - (1) an abstraction over `fromString (printf ".." ..)` for `ProcessConfig`s, - (2) have arguments be quoted automatically. As string is the only argument type that Shell knows, the formatting character is simply "%".
2023-10-16refactor: add language extensions to Cabal fileLibravatar Alexander Foremny
Ditches `ghci` in favor of `cabal repl`.
2023-10-16fix UTCTime serializationLibravatar Alexander Foremny
2023-10-16drop unused functions from HistoryLibravatar Alexander Foremny
2023-10-15add more issuesLibravatar Fabian Kirchner
2023-10-15add more issuesLibravatar Fabian Kirchner
2023-10-15add grouping options to issueLibravatar Fabian Kirchner
2023-10-15add issue about orderingLibravatar Fabian Kirchner
2023-10-15minor issue adjustmentsLibravatar Fabian Kirchner
2023-10-15fix typo in issue and add caching issueLibravatar Fabian Kirchner
2023-10-15add some issuesLibravatar Fabian Kirchner
2023-10-14filter issues by pathsLibravatar Fabian Kirchner
2023-10-14encode again when decoding cache failedLibravatar Fabian Kirchner
2023-10-14also consider issues changed in current working treeLibravatar Fabian Kirchner
2023-10-14add suffixes to cache idsLibravatar Fabian Kirchner
2023-10-14collect issues starting from the first commit via intermediate IssueEvent'sLibravatar Fabian Kirchner
2023-10-14add getIssuesWorkingTreeChangedLibravatar Fabian Kirchner
2023-10-14add getIssuesCommitAllLibravatar Fabian Kirchner
2023-10-14refactor: improve naming and add some documentationLibravatar Fabian Kirchner
2023-10-14refactor: move and hide exceptions from outside moduleLibravatar Fabian Kirchner
2023-10-14refactor: minor code cleanupLibravatar Fabian Kirchner
2023-10-14refactor: simplify listIssues functionLibravatar Fabian Kirchner
2023-10-14refactor: simplify listIssues.. functionsLibravatar Fabian Kirchner
2023-10-14refactor: split extract listIssuesCurrent from listIssuesOfLibravatar Fabian Kirchner