abouttreesummaryrefslogcommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2025-12-30fixPatrick1-2/+1
2025-12-30fix expand tablePatrick2-1/+8
2025-12-30fix table expand cssPatrick1-1/+1
2025-12-30expandable file tree tablePatrick2-1/+4
2025-12-30replace clone urls with input and buttonPatrick1-5/+6
2025-12-30remove unused functinosPatrick1-67/+8
2025-12-30cssPatrick1-3/+11
2025-12-30html class for cssPatrick1-0/+2
2025-12-30cssPatrick3-3/+18
2025-12-30change default branchPatrick1-1/+1
2025-12-23update footerPatrick1-1/+1
2025-12-23only show preview/code links on markdown blobsPatrick1-5/+8
2025-12-23redirect links without command (/git/<repo>/a/b.c) to /git/<repo>/tree/a/b.cPatrick1-0/+5
2025-12-23buncha featuresPatrick5-24/+77
2025-12-23remove git subdirPatrick1-0/+0
2025-12-22update flakePatrick1-2/+3
2025-12-22upate flake.lockPatrick1-0/+27
2025-12-03add container to flakepatrick-scho1-0/+90
2025-12-03fix linkspatrick-scho1-4/+4
2025-12-03move cgithub assetspatrick-scho10-0/+0
2025-12-03fixpatrick-scho2-2/+2
2025-12-03update cgithub pathspatrick-scho2-7/+6
2025-12-03add cgithub to repo and install it in Makefilepatrick-scho12-0/+3339
2025-12-01changespatrick-scho4-11/+12
2025-12-01print readme by oid try 1patrick-scho6-48/+68
2025-12-01update flake package namepatrick-scho1-1/+1
2025-12-01fixpatrick-scho1-1/+1
2025-12-01new type of tree linkpatrick-scho2-2/+11
2025-12-01summary link -> /summary, tree link -> /patrick-scho1-2/+2
2025-12-01default page summary -> treepatrick-scho1-1/+1
2025-12-01move tree/blame tab to the left in page headerpatrick-scho1-6/+6
2025-12-01only print readme after tree on base pathpatrick-scho1-4/+1
2025-12-01summary is summary againpatrick-scho1-2/+1
2025-12-01...patrick-scho1-0/+1
2025-12-01moar changezpatrick-scho3-29/+65
2025-12-01...patrick-scho1-3/+0
2025-12-01fix againpatrick-scho2-8/+29
2025-12-01try to fix readme in summarypatrick-scho2-1/+8
2025-11-30always print readme on summary pagepatrick-scho1-0/+1
2025-11-30revert test changepatrick-scho1-1/+1
2025-11-30change default branch to mainpatrick-scho1-1/+1
2025-11-30test changepatrick-scho1-1/+1
2025-11-30add flakepatrick-scho2-0/+171
2020-03-13Bump versionJason A. Donenfeld1-1/+1
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2020-03-13global: use proper accessors for maybe_treeJason A. Donenfeld7-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-12ui-snapshot: add support for zstd compressionChristian Hesse4-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-12tests: add tests for xz compressed snapshotsChristian Hesse2-1/+43
Signed-off-by: Christian Hesse <mail@eworm.de>
2020-02-26ui-snapshot: add support for lzip compressionHanspeter Portner4-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-17git: update to v2.25.1Christian Hesse2-1/+1
Update to git version v2.25.1. No changes required.
2020-01-13tests: allow to skip git version testsChristian Hesse1-0/+4
This allows to run tests non-tagged git checkout or when bisecting. Signed-off-by: Christian Hesse <mail@eworm.de>