about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeLines
* chore: release 0.1.6 v0.1.6Alan Pearce2024-06-19-1/+31
|
* style: increase information densityAlan Pearce2024-06-10-4/+29
|
* chore: update simple-cssAlan Pearce2024-06-10-4/+4
|
* feat: add low-memory modeAlan Pearce2024-06-09-22/+73
|
* refactor: use a struct to configure index optionsAlan Pearce2024-06-09-8/+19
|
* feat: enable configuration of flags as environment variablesAlan Pearce2024-06-09-3/+15
|
* fix: create index metadata when index exists and meta doesn'tAlan Pearce2024-06-08-0/+8
|
* build: add emacs formatting configurationAlan Pearce2024-06-08-0/+9
|
* feat: display results in a table, showing details on clickAlan Pearce2024-06-08-188/+180
|
* feat: add detail pages for packages/optionsAlan Pearce2024-06-08-31/+249
|
* chore: reduce tracing sample rateAlan Pearce2024-06-08-1/+1
|
* feat: use stale-while-revalidate instead of immutable asset pathsAlan Pearce2024-06-03-22/+16
|
* feat: serve assets via immutable pathsAlan Pearce2024-05-31-25/+40
|
* fix: moving through search history shows no resultsAlan Pearce2024-05-31-2/+2
|
* build: re-enable asset reloading in devAlan Pearce2024-05-31-5/+20
|
* feat: make security headers stricterAlan Pearce2024-05-30-7/+34
|
* feat: enable sub-resource integrity for assetsAlan Pearce2024-05-30-3/+113
|
* refactor: extract default config to own fileAlan Pearce2024-05-30-98/+105
|
* docs: move and clarify (achieved!) relevancy goal to "Goals"Alan Pearce2024-05-29-2/+3
|
* fix: nil pointer exception when (re-)indexingAlan Pearce2024-05-29-3/+4
|
* chore: release 0.1.5 v0.1.5Alan Pearce2024-05-29-1/+21
|
* build: add command to generate changelogAlan Pearce2024-05-29-0/+3
|
* feat: improve search relevance by boosting keyword matchesAlan Pearce2024-05-29-4/+46
|
* fix: missing alternate forms of packages with the same nameAlan Pearce2024-05-29-1/+1
| | | | e.g. for git: git, gitFull, gitMinimal, etc..
* fix: incorrect (switched) behaviour of --update/--replaceAlan Pearce2024-05-29-1/+1
|
* fix: re-enable exit --update/--replaceAlan Pearce2024-05-29-0/+4
| | | | | regression after extracting the command-line handling to cmd/searchix-web
* chore: update dependenciesAlan Pearce2024-05-26-12/+9
|
* build: add task to update dependenciesAlan Pearce2024-05-26-1/+10
|
* build: fix flake errorAlan Pearce2024-05-26-1/+0
|
* feat: support cleartext HTTP/2 (i.e. from a reverse proxy)Alan Pearce2024-05-25-31/+44
|
* refactor: don't log request Host, it's irrelevant to this serverAlan Pearce2024-05-25-6/+1
|
* build: just use nix version as internal versionAlan Pearce2024-05-25-38/+6
|
* 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"