about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeLines
...
* build: enable non-flake importAlan Pearce2024-05-25-7/+7
|
* refactor: split server cmd and moduleAlan Pearce2024-05-24-162/+249
| | | | | It should now be possible to run the server from inside another go application by importing the main module and running its Start() function
* fix: check for nil pointers in NewMuxAlan Pearce2024-05-24-0/+6
|
* chore: release v0.1.4 v0.1.4Alan Pearce2024-05-23-3/+36
|
* refactor: use a single value for per-source import timeoutsAlan Pearce2024-05-23-81/+64
|
* feat: stream files directly from fetcher to importerAlan Pearce2024-05-23-287/+288
| | | | | Use IndexMeta to store the information relevant to making conditional updates in future runs.
* fix: abort import of source on batch processing errorsAlan Pearce2024-05-23-7/+36
|
* refactor: clarify log message when starting importAlan Pearce2024-05-22-1/+9
|
* fix(web): fetch host from request, not header, where it's expectedAlan Pearce2024-05-22-1/+1
|
* docs: expand readme, move dev docs to subfolderAlan Pearce2024-05-22-23/+74
|
* docs: document how to run an instanceAlan Pearce2024-05-22-0/+44
|
* build: fix pre-commit check exclude/ignore patternsAlan Pearce2024-05-22-2/+4
|
* fix(nix): generate default baseURL from listen address and portAlan Pearce2024-05-22-5/+9
|
* refactor(nix): rename module attribute to allow for other modulesAlan Pearce2024-05-22-1/+1
|
* build: narrow overly-broad linting exclusionsAlan Pearce2024-05-21-4/+4
| | | | | | | | | I started this project using `niv`, which creates `nix/sources.nix`, which is all I really needed to exclude as it's generated by niv. Now there's generated code only in `nix/overlays`, so the rest of the files under `nix/` should be formatted by nixpkgs-fmt and analysed by statix and deadnix.
* fix: make fetcher check on creation that it supports Source.ImporterAlan Pearce2024-05-20-41/+57
|
* fix(importer): abort import of current source in case of errorAlan Pearce2024-05-20-6/+22
| | | | | | | The switch to logger.Error is to make clear that the operation is aborted, whereas the remaining warning (fetching the git revision) is not so important so it remains a warning and does not skip the current iteration
* perf: make channel-nixpkgs importer only fetch necessary filesAlan Pearce2024-05-20-5/+14
| | | | i.e. don't fetch options.json when Source.Type = "packages"
* refactor: make repository URLs by Repo.Type (currently no change)Alan Pearce2024-05-20-12/+29
| | | | | "currently no change" because only GitHub repos are supported, but more ready to support other types
* refactor: use enum for Repository.TypeAlan Pearce2024-05-20-4/+8
|
* refactor: make declaration/definition URLs from Source.RepoAlan Pearce2024-05-20-19/+8
|
* build: fix `prepare` task not working after flake migrationAlan Pearce2024-05-20-1/+2
|
* feat: add --update flag to force-update index and exitAlan Pearce2024-05-20-2/+6
|
* style: use double-dash arguments to wgoAlan Pearce2024-05-20-1/+1
|
* docs: clarify help text for --replaceAlan Pearce2024-05-20-6/+2
|
* docs: add comments to default configurationAlan Pearce2024-05-20-48/+121
|
* feat(config): use enums' string representations to print defaultsAlan Pearce2024-05-20-8/+16
|
* docs: add link to default config file in nix moduleAlan Pearce2024-05-20-1/+5
|
* build: check defaults.toml wasn't modified pre-commitAlan Pearce2024-05-20-1/+2
|
* fix: nix cannot read date/time TOML values from default configAlan Pearce2024-05-20-4/+27
|
* feat(config): print durations and URLs with human valuesAlan Pearce2024-05-20-41/+33
|
* build: store default configuration in repo and ensure freshnessAlan Pearce2024-05-20-8/+176
|
* feat: show default configuration with --print-default-configAlan Pearce2024-05-20-4/+32
|
* fix: duplicate error logging on config parse errorAlan Pearce2024-05-17-1/+3
|
* chore: release 0.1.3 v0.1.3Alan Pearce2024-05-17-2/+27
|
* feat(ui): enable resetting form by clicking current source linkAlan Pearce2024-05-17-2/+14
|
* feat: render markdown in packages' LongDescriptionAlan Pearce2024-05-17-3/+11
|
* feat: use attribute instead of name for packagesAlan Pearce2024-05-17-3/+5
|
* fix(css): pagination styles not applied v0.1.2Alan Pearce2024-05-17-2/+2
|
* fix(nix): missing version variable in build v0.1.1Alan Pearce2024-05-17-1/+2
|
* chore(release): release 0.1.0 v0.1.0Alan Pearce2024-05-17-0/+175
|
* build: enable versioning of packageAlan Pearce2024-05-17-6/+6
|
* chore: add convco configurationAlan Pearce2024-05-17-0/+6
|
* feat: display more information about packagesAlan Pearce2024-05-17-2/+47
|
* fix: render errors as HTML given correct content-typeAlan Pearce2024-05-17-1/+2
|
* fix: missing last page of search resultsAlan Pearce2024-05-17-1/+2
|
* fix: store only data from current entity in indexAlan Pearce2024-05-17-4/+5
|
* fix: nil pointer when updating all sourcesAlan Pearce2024-05-17-1/+1
|
* feat: error on non-matching configuration entriesAlan Pearce2024-05-17-0/+5
|
* refactor: reduce debug loggingAlan Pearce2024-05-17-5/+0
|