summary refs log tree commit diff
path: root/home/.local/bin/tup (unfollow)
Commit message (Expand)Author
2018-04-15Add TF2 configsJune McEnroe
2018-04-15Remove d-_-bJune McEnroe
2018-04-14Supersample in brotJune McEnroe
2018-04-14Call status after draw in gfx frontendsJune McEnroe
2018-04-14Sample at the centre of the pixel in brotJune McEnroe
2018-04-13Apply brot color in a second pass and time framesJune McEnroe
2018-04-13Flatten txt/musicJune McEnroe
2018-04-13Only ignore directories under c and txtJune McEnroe
2018-04-13Parse brot optionsJune McEnroe
2018-04-12Combine brot rotate and scaleJune McEnroe
2018-04-11Clean up brot input and statusJune McEnroe
2018-04-11Fix brot scaling for window aspect ratioJune McEnroe
2018-04-11Add brot rotation controlsJune McEnroe
2018-04-10Add brotJune McEnroe
2018-04-10Add Under Your SpellJune McEnroe
2018-04-09Use enum instead of #define for some constantsJune McEnroe
2018-04-08static_assert PNG header size in pngo and glitchJune McEnroe
2018-04-08Sleep in watch when a file is deletedJune McEnroe
2018-04-08Commit with june@causal.agencyJune McEnroe
2018-04-03Add Anthems for a Seventeen Year-Old Girl to new musicJune McEnroe
2018-04-03Add Yuugure no tori to new musicJune McEnroe
2018-04-03Add The Flute to new musicJune McEnroe
2018-04-03Add Flying Microtonal BananaJune McEnroe
2018-04-03Add DAYDREAMJune McEnroe
2018-04-03Add Floating in SpaceJune McEnroe
2018-04-03Add End PositionJune McEnroe
2018-04-03Add The Dusk in UsJune McEnroe
2018-04-03Add MASSEDUCTIONJune McEnroe
2018-04-03Add Luciferian Towers trackJune McEnroe
2018-04-03Indicate all Tiny Desk ConcertsJune McEnroe
2018-04-03Add FloristJune McEnroe
2018-04-03Add CHVRCHES tiny desk concertJune McEnroe
2018-04-03Add AuroraJune McEnroe
2018-04-03Add AtmosphereJune McEnroe
2018-04-03Add Born SlippyJune McEnroe
2018-04-03Add I Can Tell You About PainJune McEnroe
2018-04-03Reverse new music orderJune McEnroe
2018-04-03Add FAUVE, CocoRosieJune McEnroe
2018-04-03Add House of LeavesJune McEnroe
2018-04-03Add ChromaticsJune McEnroe
2018-04-03Add those new Arcade Fire singlesJune McEnroe
2018-04-03Add SermonJune McEnroe
2018-04-03Add Pools of LightJune McEnroe
2018-04-03Add SteroidsJune McEnroe
2018-04-03Add A Common TruthJune McEnroe
2018-04-03Add new Colin Stetson albumJune McEnroe
2018-04-03Add ForgetJune McEnroe
2018-04-03Add ArcaJune McEnroe
2018-04-03Add new DMST and Joni VoidJune McEnroe
2018-04-03Add The Body LoversJune McEnroe
='nohover-highlight'> 2015-08-12ui-log: fix double countingJohn Keeping This crept in while rebasing the previous commit onto an updated upstream. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12log: allow users to follow a fileJohn Keeping Teach the "log" UI to behave in the same way as "git log --follow", when given a suitable instruction by the user. The default behaviour remains to show the log without following renames, but the follow behaviour can be activated by following a link in the page header. Follow is not the default because outputting merges in follow mode is tricky ("git log --follow" will not show merges). We also disable the graph in follow mode because the commit graph is not simplified so we end up with frequent gaps in the graph and many lines that do not connect with any commits we're actually showing. We also teach the "diff" and "commit" UIs to respect the follow flag on URLs, causing the single-file version of these UIs to detect renames. This feature is needed only for commits that rename the path we're interested in. For commits before the file has been renamed (i.e. that appear later in the log list) we change the file path in the links from the log to point to the old name; this means that links to commits always limit by the path known to that commit. If we didn't do this we would need to walk down the log diff'ing every commit whenever we want to show a commit. The drawback is that the "Log" link in the top bar of such a page links to the log limited by the old name, so it will only show pre-rename commits. I consider this a reasonable trade-off since the "Back" button still works and the log matches the path displayed in the top bar. Since following renames requires running diff on every commit we consider, I've added a knob to the configuration file to globally enable/disable this feature. Note that we may consider a large number of commits the revision walking machinery no longer performs any path limitation so we have to examine every commit until we find a page full of commits that affect the target path or something related to it. Suggested-by: René Neumann <necoro@necoro.eu> Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping This will allow us to use this nice wrapper function elsewhere, avoiding dealing with the diff queue when we only need to inspect a filepair. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld Otherwise we can't easily embed links to other /about/ pages. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2015-08-12filters: apply HTML escapingLazaros Koromilas http://www.w3.org/International/questions/qa-escapes#use 2015-08-12git: update to v2.5.0Christian Hesse Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de> 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt