gitextract_8c62qvm7/ ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── README.md ├── THANKS ├── autogen.sh ├── cmd/ │ ├── gource │ └── gource.cmd ├── configure.ac ├── contrib/ │ └── svn-gource.py ├── data/ │ ├── bloom.tga │ ├── bloom_alpha.tga │ ├── fonts/ │ │ └── README │ ├── gource.1 │ ├── gource.style │ └── shaders/ │ ├── bloom.frag │ ├── bloom.vert │ ├── shadow.frag │ ├── shadow.vert │ ├── text.frag │ └── text.vert ├── dev/ │ ├── .gitignore │ ├── bin/ │ │ ├── build_tar.pl │ │ └── build_win64.pl │ └── nsis/ │ ├── disclaimer.txt │ └── welcome.xcf ├── gource.pro ├── m4/ │ ├── ax_boost_base.m4 │ ├── ax_boost_filesystem.m4 │ ├── ax_check_gl.m4 │ ├── ax_check_glu.m4 │ ├── ax_check_glut.m4 │ ├── ax_pthread.m4 │ ├── ax_restore_flags_with_prefix.m4 │ ├── ax_save_flags_with_prefix.m4 │ └── pkg.m4 ├── resources/ │ ├── file.xcf │ └── user.xcf ├── scripts/ │ └── gource-ps.pl ├── src/ │ ├── .gitignore │ ├── action.cpp │ ├── action.h │ ├── bloom.cpp │ ├── bloom.h │ ├── caption.cpp │ ├── caption.h │ ├── dirnode.cpp │ ├── dirnode.h │ ├── file.cpp │ ├── file.h │ ├── formats/ │ │ ├── apache.cpp │ │ ├── apache.h │ │ ├── bzr.cpp │ │ ├── bzr.h │ │ ├── commitlog.cpp │ │ ├── commitlog.h │ │ ├── custom.cpp │ │ ├── custom.h │ │ ├── cvs-exp.cpp │ │ ├── cvs-exp.h │ │ ├── cvs2cl.cpp │ │ ├── cvs2cl.h │ │ ├── git.cpp │ │ ├── git.h │ │ ├── gitraw.cpp │ │ ├── gitraw.h │ │ ├── hg.cpp │ │ ├── hg.h │ │ ├── svn.cpp │ │ └── svn.h │ ├── gource.cpp │ ├── gource.h │ ├── gource_settings.cpp │ ├── gource_settings.h │ ├── gource_shell.cpp │ ├── gource_shell.h │ ├── key.cpp │ ├── key.h │ ├── logmill.cpp │ ├── logmill.h │ ├── main.cpp │ ├── main.h │ ├── pawn.cpp │ ├── pawn.h │ ├── slider.cpp │ ├── slider.h │ ├── spline.cpp │ ├── spline.h │ ├── test/ │ │ ├── datetime_tests.cpp │ │ ├── main.cpp │ │ └── regex_tests.cpp │ ├── textbox.cpp │ ├── textbox.h │ ├── tinyxml/ │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ ├── user.cpp │ ├── user.h │ ├── zoomcamera.cpp │ └── zoomcamera.h └── tests/ ├── logs/ │ ├── custom-dir-delete.log │ ├── file-removal.log │ ├── file-to-dir.log │ ├── svn-dir-delete.log │ ├── utf8-caption.log │ └── utf8.log └── test.conf