Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-10 | assign separate-database-issues-and-history-issues | Alexander Foremny | |
2023-11-09 | refactor TreeGrepper.Comment | Alexander Foremny | |
2023-11-09 | improve grouped list styling | Alexander Foremny | |
2023-11-09 | group-by -> group | Alexander Foremny | |
2023-11-09 | don't reference issues with @ | Alexander Foremny | |
2023-11-09 | fix extracting tags from code | Alexander Foremny | |
2023-11-09 | improve list output | Alexander Foremny | |
2023-11-07 | update issues | Alexander Foremny | |
2023-11-07 | sort newest issues first by default | Alexander Foremny | |
2023-11-07 | add issues | Alexander Foremny | |
2023-11-07 | add internal tag `title' | Alexander Foremny | |
2023-11-07 | improve getCommitHashes | Alexander Foremny | |
`getCommitHashes` now returns at least one commit, and reverses commits by default (ie. oldest to newset). | |||
2023-11-07 | add `tags` command | Alexander Foremny | |
2023-11-07 | fix performance when generating history | Alexander Foremny | |
At some point, we noticed a performance drop when generating the history. It turns out that per-file granularity is not performant anymore, presumably since we're analizing changed files. This restores performance by switching to per-commit granularity instead. | |||
2023-11-07 | fix issue title | Alexander Foremny | |
This regression had been introduced in d9400635bcb28674c8510d71aa6eed94194bf669. | |||
2023-11-07 | fix `getRootDir` returning wrong path | Alexander Foremny | |
Check for `../anissue\n` having been created by invocations prior to this fix. | |||
2023-11-07 | update issues | Alexander Foremny | |
2023-11-07 | fix hardcoded "@topic" | Alexander Foremny | |
2023-11-07 | add issue marker as internal tag @type | Alexander Foremny | |
2023-11-07 | add author & editor to internal tags | Alexander Foremny | |
2023-11-07 | add numbers to grouped topics | Alexander Foremny | |
2023-11-07 | fix group-by parsing | Alexander Foremny | |
2023-11-07 | add --group-by option | Fabian Kirchner | |
2023-11-07 | add renaming issues | Fabian Kirchner | |
2023-11-07 | add `Git.getRootDir` | Alexander Foremny | |
2023-11-07 | add settings | Alexander Foremny | |
2023-11-07 | add hlint | Alexander Foremny | |
2023-11-07 | add `--edit` flag to `show` command | Alexander Foremny | |
2023-11-07 | add internal tag @modifiedAt | Alexander Foremny | |
2023-11-07 | record both creation and update in provenance | Alexander Foremny | |
2023-11-07 | refactor history | Alexander Foremny | |
2023-10-19 | add glossary | Alexander Foremny | |
2023-10-17 | inline `cached` into function calls | Alexander Foremny | |
2023-10-17 | refactor `cached` | Alexander Foremny | |
2023-10-17 | add `log` command | Alexander Foremny | |
2023-10-17 | make --width a global option | Alexander Foremny | |
2023-10-17 | make sort type-aware | Alexander Foremny | |
2023-10-17 | make filter type-aware | 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-17 | add filter operators | 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-17 | applySort -> applySorts | Alexander Foremny | |
2023-10-17 | allow empty-valued (bool) tags | Alexander Foremny | |
2023-10-17 | refactor include,exclude from simple filters | Alexander Foremny | |
2023-10-16 | comment add-command-for-regenerating-the-cache | Alexander Foremny | |
2023-10-16 | comment add-command-for-regenerating-the-cache | Alexander Foremny | |
2023-10-16 | comment add-command-for-listing-all-topics | Alexander Foremny | |
2023-10-16 | add global flag `--no-pager|-P` | Alexander Foremny | |
2023-10-16 | fix unicode-related output problems | Alexander Foremny | |
The underlying problem had been truncating `String` to `ByteString` (via `IsString(fromString))`, which is unsafe. | |||
2023-10-16 | paginate output | Alexander Foremny | |
2023-10-16 | add comments to all comments | Fabian Kirchner | |
2023-10-16 | comment add-option-to-group-issue-list | Alexander Foremny | |