about summary refs log tree commit diff
path: root/Makefile (follow)
Commit message (Expand)AuthorAge
...
* Makefile: enable compilation on uclibcLars Hjemli2008-10-11
* CGIT 0.8Lars Hjemli2008-10-05
* Use GIT-1.6.0.2Lars Hjemli2008-10-05
* Add LDFLAGS to makefile.Harley Laue2008-09-20
* Add support for --scan-tree=<path> option to cgitLars Hjemli2008-09-15
* Update Makefile to use GIT-1.6.0.1Lars Hjemli2008-09-03
* Merge branch 'lh/plain'Lars Hjemli2008-09-01
|\
| * Implement plain viewLars Hjemli2008-08-06
* | Merge branch 'lh/clone'Lars Hjemli2008-09-01
|\|
| * Add support for cloning over httpLars Hjemli2008-08-06
* | Use GIT-1.6.0.rc1Lars Hjemli2008-08-06
* | Makefile: Git dependency, take 3Lars Hjemli2008-08-06
* | Add atom-supportLars Hjemli2008-08-01
|/
* Makefile: another take on git dependency rulesLars Hjemli2008-08-01
* Makefile: remove the `distclean` and `emptycache` targetsLars Hjemli2008-07-22
* Makefile: do not touch the git objects with `make clean`Lars Hjemli2008-07-22
* Makefile: fix git dependency rulesLars Hjemli2008-07-22
* Use GIT-1.5.6Lars Hjemli2008-06-25
* Use GIT-1.5.5.1Lars Hjemli2008-05-18
* Use GIT-1.5.5Lars Hjemli2008-04-09
* Merge branch 'lh/cleanup'Lars Hjemli2008-04-08
|\
| * Move function for configfile parsing into configfile.[ch]Lars Hjemli2008-03-28
| * Makefile: copy the QUIET constructs from the Makefile in git.gitLars Hjemli2008-03-25
| * Move cgit_version from shared.c to cgit.cLars Hjemli2008-03-24
| * Makefile: autobuild dependency rulesLars Hjemli2008-03-24
| * Initial Makefile cleanupLars Hjemli2008-03-24
| * Add command dispatcherLars Hjemli2008-03-24
* | Use GIT-1.5.5.rc1Lars Hjemli2008-03-23
* | Use GIT-1.5.4.4Lars Hjemli2008-03-17
|/
* Use GIT-1.5.4.1Lars Hjemli2008-02-16
* Use GIT-1.5.4Lars Hjemli2008-02-02
* Use GIT-1.5.4.rc5Lars Hjemli2008-01-28
* Use GIT-1.5.4.rc4Lars Hjemli2008-01-21
* Merge branch 'stable'Lars Hjemli2008-01-13
|\
| * CGIT 0.7.2Lars Hjemli2008-01-10
| * Use GIT-1.5.3.8Lars Hjemli2008-01-10
* | Add plain patch viewLars Hjemli2007-12-11
* | Create initial testsuiteLars Hjemli2007-11-11
* | Merge branch 'stable'Lars Hjemli2007-11-09
|\|
| * CGIT 0.7.1Lars Hjemli2007-11-09
| * Makefile install: include cgit.png, do not empty cacheLars Hjemli2007-11-09
* | Makefile: link with libiconv if NEEDS_LIBICONV is definedLars Hjemli2007-11-06
|/
* CGIT 0.7Lars Hjemli2007-11-03
* Use GIT-1.5.3.5Lars Hjemli2007-11-03
* Add support for refs viewLars Hjemli2007-10-27
* Use git-1.5.3.3Lars Hjemli2007-10-01
* cgit v0.6.3Lars Hjemli2007-09-20
* Upgrade to GIT 1.5.3.2Lars Hjemli2007-09-20
* cgit v0.6.2Lars Hjemli2007-09-08
* Revert part of "Makefile: add support for DESTDIR"Lars Hjemli2007-09-08
nneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe In other words, warn when a function is missing static. I don't see why this isn't in -Wextra. 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