| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-12-30 | fix | Patrick | 1 | -2/+1 | |
| 2025-12-30 | fix expand table | Patrick | 2 | -1/+8 | |
| 2025-12-30 | fix table expand css | Patrick | 1 | -1/+1 | |
| 2025-12-30 | expandable file tree table | Patrick | 2 | -1/+4 | |
| 2025-12-30 | replace clone urls with input and button | Patrick | 1 | -5/+6 | |
| 2025-12-30 | remove unused functinos | Patrick | 1 | -67/+8 | |
| 2025-12-30 | css | Patrick | 1 | -3/+11 | |
| 2025-12-30 | html class for css | Patrick | 1 | -0/+2 | |
| 2025-12-30 | css | Patrick | 3 | -3/+18 | |
| 2025-12-30 | change default branch | Patrick | 1 | -1/+1 | |
| 2025-12-23 | update footer | Patrick | 1 | -1/+1 | |
| 2025-12-23 | only show preview/code links on markdown blobs | Patrick | 1 | -5/+8 | |
| 2025-12-23 | redirect links without command (/git/<repo>/a/b.c) to /git/<repo>/tree/a/b.c | Patrick | 1 | -0/+5 | |
| 2025-12-23 | buncha features | Patrick | 5 | -24/+77 | |
| 2025-12-23 | remove git subdir | Patrick | 1 | -0/+0 | |
| 2025-12-22 | update flake | Patrick | 1 | -2/+3 | |
| 2025-12-22 | upate flake.lock | Patrick | 1 | -0/+27 | |
| 2025-12-03 | add container to flake | patrick-scho | 1 | -0/+90 | |
| 2025-12-03 | fix links | patrick-scho | 1 | -4/+4 | |
| 2025-12-03 | move cgithub assets | patrick-scho | 10 | -0/+0 | |
| 2025-12-03 | fix | patrick-scho | 2 | -2/+2 | |
| 2025-12-03 | update cgithub paths | patrick-scho | 2 | -7/+6 | |
| 2025-12-03 | add cgithub to repo and install it in Makefile | patrick-scho | 12 | -0/+3339 | |
| 2025-12-01 | changes | patrick-scho | 4 | -11/+12 | |
| 2025-12-01 | print readme by oid try 1 | patrick-scho | 6 | -48/+68 | |
| 2025-12-01 | update flake package name | patrick-scho | 1 | -1/+1 | |
| 2025-12-01 | fix | patrick-scho | 1 | -1/+1 | |
| 2025-12-01 | new type of tree link | patrick-scho | 2 | -2/+11 | |
| 2025-12-01 | summary link -> /summary, tree link -> / | patrick-scho | 1 | -2/+2 | |
| 2025-12-01 | default page summary -> tree | patrick-scho | 1 | -1/+1 | |
| 2025-12-01 | move tree/blame tab to the left in page header | patrick-scho | 1 | -6/+6 | |
| 2025-12-01 | only print readme after tree on base path | patrick-scho | 1 | -4/+1 | |
| 2025-12-01 | summary is summary again | patrick-scho | 1 | -2/+1 | |
| 2025-12-01 | ... | patrick-scho | 1 | -0/+1 | |
| 2025-12-01 | moar changez | patrick-scho | 3 | -29/+65 | |
| 2025-12-01 | ... | patrick-scho | 1 | -3/+0 | |
| 2025-12-01 | fix again | patrick-scho | 2 | -8/+29 | |
| 2025-12-01 | try to fix readme in summary | patrick-scho | 2 | -1/+8 | |
| 2025-11-30 | always print readme on summary page | patrick-scho | 1 | -0/+1 | |
| 2025-11-30 | revert test change | patrick-scho | 1 | -1/+1 | |
| 2025-11-30 | change default branch to main | patrick-scho | 1 | -1/+1 | |
| 2025-11-30 | test change | patrick-scho | 1 | -1/+1 | |
| 2025-11-30 | add flake | patrick-scho | 2 | -0/+171 | |
| 2020-03-13 | Bump version | Jason A. Donenfeld | 1 | -1/+1 | |
| Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> | |||||
| 2020-03-13 | global: use proper accessors for maybe_tree | Jason A. Donenfeld | 7 | -19/+29 | |
| A previous commit changed ->tree to ->maybe_tree throughout, which may have worked at the time, but wasn't safe, because maybe_tree is loaded lazily. This manifested itself in crashes when using the "follow" log feature. The proper fix is to use the correct contextual accessors everytime we want access to maybe_tree. Thankfully, the commit.cocci script takes care of creating mostly-correct patches that we could then fix up, resulting in this commit here. Fixes: 255b78f ("git: update to v2.18.0") Reviewed-by: Christian Hesse <mail@eworm.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> | |||||
| 2020-03-12 | ui-snapshot: add support for zstd compression | Christian Hesse | 4 | -4/+56 | |
| This patch adds support for zstd [0] compressed snapshots (*.tar.zst). We enable multiple working threads (-T0), but keep default compression level. The latter can be influenced by environment variable. [0] https://www.zstd.net/ Signed-off-by: Christian Hesse <mail@eworm.de> | |||||
| 2020-03-12 | tests: add tests for xz compressed snapshots | Christian Hesse | 2 | -1/+43 | |
| Signed-off-by: Christian Hesse <mail@eworm.de> | |||||
| 2020-02-26 | ui-snapshot: add support for lzip compression | Hanspeter Portner | 4 | -3/+52 | |
| This patch adds support for lzip [1] compressed snapshots (*.tar.lz) [1] https://www.nongnu.org/lzip/ Signed-off-by: Hanspeter Portner <dev@open-music-kontrollers.ch> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> | |||||
| 2020-02-17 | git: update to v2.25.1 | Christian Hesse | 2 | -1/+1 | |
| Update to git version v2.25.1. No changes required. | |||||
| 2020-01-13 | tests: allow to skip git version tests | Christian Hesse | 1 | -0/+4 | |
| This allows to run tests non-tagged git checkout or when bisecting. Signed-off-by: Christian Hesse <mail@eworm.de> | |||||
