about summary refs log tree commit diff
path: root/git (unfollow)
Commit message (Expand)Author
2008-01-10Use GIT-1.5.3.8Lars Hjemli
2007-12-03Compare string lengths when parsing the snapshot maskLars Hjemli
2007-12-03Default repo description to "[no description]"Evan Martin
2007-12-02Handle missing timestamp in commit/tag objectsLars Hjemli
2007-11-11Set commit date on snapshot contentsLars Hjemli
2007-11-09CGIT 0.7.1Lars Hjemli
2007-11-09Makefile install: include cgit.png, do not empty cacheLars Hjemli
2007-11-08Support "/" as virtual-rootLars Hjemli
2007-11-03Don't show the the branch selector button if javascript is enabledLars Hjemli
2007-11-03Do not require javascript-enabled clientsLars Hjemli
2007-11-03CGIT 0.7Lars Hjemli
2007-11-03Use GIT-1.5.3.5Lars Hjemli
2007-11-03Don't include current SHA1 in 'log' menu-itemLars Hjemli
2007-11-03Don't include current path in menu linksLars Hjemli
2007-11-03Fix search form action/hidden fieldsLars Hjemli
2007-11-03Add search parameters to cgit_log_linkLars Hjemli
2007-11-03Fix typo in cssShunichi Fuji
2007-10-30Change the cgit layoutLars Hjemli
2007-10-30Add config param 'index-info'Lars Hjemli
2007-10-28Teach cgit_object_link() about tag objectsLars Hjemli
2007-10-28Make print_branch() handle refs not pointing at commitsLars Hjemli
2007-10-28Teach log search about --grep, --author and --committerLars Hjemli
2007-10-28Add html_option() functionLars Hjemli
2007-10-27cgit_parse_commit(): Add missing call to xstrdup()Lars Hjemli
2007-10-27Cleanup code introduced by the filter-refs topicLars Hjemli
2007-10-27Add links to the new refs page from summary pageLars Hjemli
2007-10-27Add support for refs viewLars Hjemli
2007-10-27Make cgit_print_branches()/cgit_print_tags() externalLars Hjemli
2007-10-27Add descriptions of summary-branches and summary-tags to cgitrcLars Hjemli
2007-10-27Add support for config param summary-branchesLars Hjemli
2007-10-27Move logic for age comparision from cmp_tag_age into cmp_age()Lars Hjemli
2007-10-27Add support for config param summary-tagsLars Hjemli
2007-10-27Sort tags by ageLars Hjemli
2007-10-27Use reflist to print tag infoLars Hjemli
2007-10-27Use reflist to print branch infoLars Hjemli
2007-10-27Add functions and types for ref listsLars Hjemli
2007-10-27Skip unknown header fields when parsing tags and commitsLars Hjemli
2007-10-05correct typo in CSSMichael Krelin
2007-10-01Use git-1.5.3.3Lars Hjemli
2007-10-01cgit.css: make diff headers more visibleLars Hjemli
2007-10-01ui-diff: add links to pre- and postversion of blobsLars Hjemli
2007-10-01gen-version.sh: don't sed the output from git describeLars Hjemli
2007-10-01css: remove the annoying tr:hover rule for diffstatLars Hjemli
2007-10-01ui-commit.c: link to diff instead of tree from diffstatLars Hjemli
2007-10-01Add prefix parameter to cgit_print_diff()Lars Hjemli
2007-10-01Add prefix parameter to cgit_diff_tree()Lars Hjemli
2007-09-25Add support for a renamelimit option in cgitrcLars Hjemli
2007-09-20cgit v0.6.3Lars Hjemli
2007-09-20Upgrade to GIT 1.5.3.2Lars Hjemli
2007-09-20Use trim_end() to remove trailing slashesLars Hjemli
>2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe