Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-07 | add internal tag `title' | ||
2023-11-07 | add `tags` command | ||
2023-11-07 | update issues | ||
2023-11-07 | fix hardcoded "@topic" | ||
2023-11-07 | add numbers to grouped topics | ||
2023-11-07 | add --group-by option | ||
2023-11-07 | add settings | ||
2023-11-07 | add `--edit` flag to `show` command | ||
2023-11-07 | add internal tag @modifiedAt | ||
2023-11-07 | record both creation and update in provenance | ||
2023-11-07 | refactor history | ||
2023-10-17 | add `log` command | ||
2023-10-17 | make --width a global option | ||
2023-10-17 | make filter type-aware | ||
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-17 | add filter operators | ||
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-16 | comment add-command-for-regenerating-the-cache | ||
2023-10-16 | comment add-command-for-regenerating-the-cache | ||
2023-10-16 | comment add-command-for-listing-all-topics | ||
2023-10-16 | add global flag `--no-pager|-P` | ||
2023-10-16 | fix unicode-related output problems | ||
The underlying problem had been truncating `String` to `ByteString` (via `IsString(fromString))`, which is unsafe. | |||
2023-10-16 | paginate output | ||
2023-10-16 | add comments to all comments | ||
2023-10-16 | comment add-option-to-group-issue-list | ||
2023-10-16 | comment display-issuye-type-in-list-and-show-views | ||
2023-10-16 | comment should-automatically-generated-ids-be-random | ||
2023-10-16 | comment ↵ | ||
add-a-subcommand-which-appends-the-generated-ids-to-the-issue-in-the-sourcecode | |||
2023-10-16 | comment expose-all-command-line-options-as-environment-variables | ||
2023-10-16 | comment add-options-to-show-command-to-display-source-code-around-the-issue | ||
2023-10-16 | comment on add-command-for-re-generating-the-cache | ||
2023-10-16 | add global option `--color` | ||
2023-10-16 | update `list` output | ||
2023-10-16 | add issue support-issue-comments | ||
2023-10-16 | add `--sort` to `list` | ||
2023-10-16 | make `internalTags` a global option | ||
2023-10-16 | refactor: add language extensions to Cabal file | ||
Ditches `ghci` in favor of `cabal repl`. | |||
2023-10-15 | add more issues | ||
2023-10-15 | add more issues | ||
2023-10-15 | add grouping options to issue | ||
2023-10-15 | add issue about ordering | ||
2023-10-15 | minor issue adjustments | ||
2023-10-15 | fix typo in issue and add caching issue | ||
2023-10-15 | add some issues | ||
2023-10-14 | extract listIssues to History and make commit configurable | ||
2023-10-13 | refactor: extract getIssues into History | ||
2023-10-13 | remove me | ||
2023-10-13 | only show prov info in show command | ||
2023-10-13 | show commit hash where issue occurs first | ||
2023-10-13 | extract quote to Process and fix quoting quotes | ||
2023-10-13 | refactor: extract sh and sh_ into Process | ||
2023-10-13 | also support FIXME and QUESTION as markers | ||