├── .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 ├── beam.png ├── bloom.tga ├── bloom_alpha.tga ├── file.png ├── fonts │ ├── FreeSans.ttf │ └── README ├── gource.1 ├── gource.style ├── shaders │ ├── bloom.frag │ ├── bloom.vert │ ├── shadow.frag │ ├── shadow.vert │ ├── text.frag │ └── text.vert └── user.png ├── dev ├── .gitignore ├── bin │ ├── build_tar.pl │ └── build_win64.pl └── nsis │ ├── disclaimer.txt │ ├── welcome.bmp │ └── 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 ├── images └── Árvíztűrő tükörfúrógép.png ├── logs ├── custom-dir-delete.log ├── file-removal.log ├── file-to-dir.log ├── svn-dir-delete.log ├── utf8-caption.log └── utf8.log └── test.conf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.cmd text eol=crlf 2 | 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: acaudwell 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/THANKS -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmd/gource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/cmd/gource -------------------------------------------------------------------------------- /cmd/gource.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | "%~dp0\..\gource.exe" %* 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/svn-gource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/contrib/svn-gource.py -------------------------------------------------------------------------------- /data/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/beam.png -------------------------------------------------------------------------------- /data/bloom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/bloom.tga -------------------------------------------------------------------------------- /data/bloom_alpha.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/bloom_alpha.tga -------------------------------------------------------------------------------- /data/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/file.png -------------------------------------------------------------------------------- /data/fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /data/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/fonts/README -------------------------------------------------------------------------------- /data/gource.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/gource.1 -------------------------------------------------------------------------------- /data/gource.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/gource.style -------------------------------------------------------------------------------- /data/shaders/bloom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/bloom.frag -------------------------------------------------------------------------------- /data/shaders/bloom.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/bloom.vert -------------------------------------------------------------------------------- /data/shaders/shadow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/shadow.frag -------------------------------------------------------------------------------- /data/shaders/shadow.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/shadow.vert -------------------------------------------------------------------------------- /data/shaders/text.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/text.frag -------------------------------------------------------------------------------- /data/shaders/text.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/shaders/text.vert -------------------------------------------------------------------------------- /data/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/data/user.png -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- 1 | builds/ 2 | -------------------------------------------------------------------------------- /dev/bin/build_tar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/dev/bin/build_tar.pl -------------------------------------------------------------------------------- /dev/bin/build_win64.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/dev/bin/build_win64.pl -------------------------------------------------------------------------------- /dev/nsis/disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/dev/nsis/disclaimer.txt -------------------------------------------------------------------------------- /dev/nsis/welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/dev/nsis/welcome.bmp -------------------------------------------------------------------------------- /dev/nsis/welcome.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/dev/nsis/welcome.xcf -------------------------------------------------------------------------------- /gource.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/gource.pro -------------------------------------------------------------------------------- /m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/ax_boost_filesystem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_boost_filesystem.m4 -------------------------------------------------------------------------------- /m4/ax_check_gl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_check_gl.m4 -------------------------------------------------------------------------------- /m4/ax_check_glu.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_check_glu.m4 -------------------------------------------------------------------------------- /m4/ax_check_glut.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_check_glut.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_restore_flags_with_prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_restore_flags_with_prefix.m4 -------------------------------------------------------------------------------- /m4/ax_save_flags_with_prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/ax_save_flags_with_prefix.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /resources/file.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/resources/file.xcf -------------------------------------------------------------------------------- /resources/user.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/resources/user.xcf -------------------------------------------------------------------------------- /scripts/gource-ps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/scripts/gource-ps.pl -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /src/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/action.cpp -------------------------------------------------------------------------------- /src/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/action.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/caption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/caption.cpp -------------------------------------------------------------------------------- /src/caption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/caption.h -------------------------------------------------------------------------------- /src/dirnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/dirnode.cpp -------------------------------------------------------------------------------- /src/dirnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/dirnode.h -------------------------------------------------------------------------------- /src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/file.cpp -------------------------------------------------------------------------------- /src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/file.h -------------------------------------------------------------------------------- /src/formats/apache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/apache.cpp -------------------------------------------------------------------------------- /src/formats/apache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/apache.h -------------------------------------------------------------------------------- /src/formats/bzr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/bzr.cpp -------------------------------------------------------------------------------- /src/formats/bzr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/bzr.h -------------------------------------------------------------------------------- /src/formats/commitlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/commitlog.cpp -------------------------------------------------------------------------------- /src/formats/commitlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/commitlog.h -------------------------------------------------------------------------------- /src/formats/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/custom.cpp -------------------------------------------------------------------------------- /src/formats/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/custom.h -------------------------------------------------------------------------------- /src/formats/cvs-exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/cvs-exp.cpp -------------------------------------------------------------------------------- /src/formats/cvs-exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/cvs-exp.h -------------------------------------------------------------------------------- /src/formats/cvs2cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/cvs2cl.cpp -------------------------------------------------------------------------------- /src/formats/cvs2cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/cvs2cl.h -------------------------------------------------------------------------------- /src/formats/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/git.cpp -------------------------------------------------------------------------------- /src/formats/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/git.h -------------------------------------------------------------------------------- /src/formats/gitraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/gitraw.cpp -------------------------------------------------------------------------------- /src/formats/gitraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/gitraw.h -------------------------------------------------------------------------------- /src/formats/hg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/hg.cpp -------------------------------------------------------------------------------- /src/formats/hg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/hg.h -------------------------------------------------------------------------------- /src/formats/svn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/svn.cpp -------------------------------------------------------------------------------- /src/formats/svn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/formats/svn.h -------------------------------------------------------------------------------- /src/gource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource.cpp -------------------------------------------------------------------------------- /src/gource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource.h -------------------------------------------------------------------------------- /src/gource_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource_settings.cpp -------------------------------------------------------------------------------- /src/gource_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource_settings.h -------------------------------------------------------------------------------- /src/gource_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource_shell.cpp -------------------------------------------------------------------------------- /src/gource_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/gource_shell.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/key.h -------------------------------------------------------------------------------- /src/logmill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/logmill.cpp -------------------------------------------------------------------------------- /src/logmill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/logmill.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/main.h -------------------------------------------------------------------------------- /src/pawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/pawn.cpp -------------------------------------------------------------------------------- /src/pawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/pawn.h -------------------------------------------------------------------------------- /src/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/slider.cpp -------------------------------------------------------------------------------- /src/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/slider.h -------------------------------------------------------------------------------- /src/spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/spline.cpp -------------------------------------------------------------------------------- /src/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/spline.h -------------------------------------------------------------------------------- /src/test/datetime_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/test/datetime_tests.cpp -------------------------------------------------------------------------------- /src/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/test/main.cpp -------------------------------------------------------------------------------- /src/test/regex_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/test/regex_tests.cpp -------------------------------------------------------------------------------- /src/textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/textbox.cpp -------------------------------------------------------------------------------- /src/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/textbox.h -------------------------------------------------------------------------------- /src/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinystr.h -------------------------------------------------------------------------------- /src/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /src/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /src/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/user.cpp -------------------------------------------------------------------------------- /src/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/user.h -------------------------------------------------------------------------------- /src/zoomcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/zoomcamera.cpp -------------------------------------------------------------------------------- /src/zoomcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/src/zoomcamera.h -------------------------------------------------------------------------------- /tests/images/Árvíztűrő tükörfúrógép.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/images/Árvíztűrő tükörfúrógép.png -------------------------------------------------------------------------------- /tests/logs/custom-dir-delete.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/custom-dir-delete.log -------------------------------------------------------------------------------- /tests/logs/file-removal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/file-removal.log -------------------------------------------------------------------------------- /tests/logs/file-to-dir.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/file-to-dir.log -------------------------------------------------------------------------------- /tests/logs/svn-dir-delete.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/svn-dir-delete.log -------------------------------------------------------------------------------- /tests/logs/utf8-caption.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/utf8-caption.log -------------------------------------------------------------------------------- /tests/logs/utf8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/logs/utf8.log -------------------------------------------------------------------------------- /tests/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaudwell/Gource/HEAD/tests/test.conf --------------------------------------------------------------------------------