Codebase list gource / fd7e8cf
Imported Upstream version 0.21 Andrew Caudwell 14 years ago
7 changed file(s) with 18 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 0.21:
1 * Some documentation fixes.
2
03 0.20:
14 * Added bloom effect (turn off with --disable-bloom).
25 * Added support for Mercurial (thanks to Justin Love for gource.style).
176176 --output-framerate FPS
177177 Framerate of output (used with --output-ppm-stream).
178178
179 path Either a git directory, a pre-generated log file (see --git-log-command, --cvs-exp-command or the custom
180 log format) or '-' to read STDIN. If path is ommited gource will attempt to read a git log from the current directory.
179 path Either a Git or Mercurial directory, a pre-generated log file (see --git-log-command, --hg-log-command or the custom
180 log format) or '-' to read STDIN. If path is ommited gource will attempt to read a log from the current directory.
181181
182182 Git and Mercurial Examples:
183183
204204
205205 CVS - http://code.google.com/p/gource/wiki/CVS
206206 SVN - http://code.google.com/p/gource/wiki/SVN
207 Mercurial - http://code.google.com/p/gource/wiki/Mercurial
208207
209208 Custom Log Format:
210209
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.61 for Gource 0.20.
2 # Generated by GNU Autoconf 2.61 for Gource 0.21.
33 #
44 # Report bugs to <acaudwell@gmail.com>.
55 #
573573 # Identity of this package.
574574 PACKAGE_NAME='Gource'
575575 PACKAGE_TARNAME='gource'
576 PACKAGE_VERSION='0.20'
577 PACKAGE_STRING='Gource 0.20'
576 PACKAGE_VERSION='0.21'
577 PACKAGE_STRING='Gource 0.21'
578578 PACKAGE_BUGREPORT='acaudwell@gmail.com'
579579
580580 ac_unique_file="src/main.h"
12151215 # Omit some internal or obsolete options to make the list less imposing.
12161216 # This message is too long to be a string in the A/UX 3.1 sh.
12171217 cat <<_ACEOF
1218 \`configure' configures Gource 0.20 to adapt to many kinds of systems.
1218 \`configure' configures Gource 0.21 to adapt to many kinds of systems.
12191219
12201220 Usage: $0 [OPTION]... [VAR=VALUE]...
12211221
12841284
12851285 if test -n "$ac_init_help"; then
12861286 case $ac_init_help in
1287 short | recursive ) echo "Configuration of Gource 0.20:";;
1287 short | recursive ) echo "Configuration of Gource 0.21:";;
12881288 esac
12891289 cat <<\_ACEOF
12901290
13871387 test -n "$ac_init_help" && exit $ac_status
13881388 if $ac_init_version; then
13891389 cat <<\_ACEOF
1390 Gource configure 0.20
1390 Gource configure 0.21
13911391 generated by GNU Autoconf 2.61
13921392
13931393 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
14011401 This file contains any messages produced by compilers while
14021402 running configure, to aid debugging if configure makes a mistake.
14031403
1404 It was created by Gource $as_me 0.20, which was
1404 It was created by Gource $as_me 0.21, which was
14051405 generated by GNU Autoconf 2.61. Invocation command line was
14061406
14071407 $ $0 $@
97979797 # report actual input values of CONFIG_FILES etc. instead of their
97989798 # values after options handling.
97999799 ac_log="
9800 This file was extended by Gource $as_me 0.20, which was
9800 This file was extended by Gource $as_me 0.21, which was
98019801 generated by GNU Autoconf 2.61. Invocation command line was
98029802
98039803 CONFIG_FILES = $CONFIG_FILES
98409840 _ACEOF
98419841 cat >>$CONFIG_STATUS <<_ACEOF
98429842 ac_cs_version="\\
9843 Gource config.status 0.20
9843 Gource config.status 0.21
98449844 configured by $0, generated by GNU Autoconf 2.61,
98459845 with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
98469846
22
33 AC_PREREQ(2.61)
44
5 AC_INIT(Gource, 0.20, [acaudwell@gmail.com])
5 AC_INIT(Gource, 0.21, [acaudwell@gmail.com])
66 AC_CONFIG_SRCDIR([src/main.h])
77
88 AC_CANONICAL_HOST
148148 Framerate of output (used with \-\-output\-ppm\-stream).
149149 .TP
150150 \fBpath\fR
151 Either a Git directory, a pre-generated log file (see -\-git\-log\-command, -\-cvs\-exp\-command or the custom log format) or '\-' to read STDIN. If path is ommited \fIgource\fR will attempt to read a git log from the current directory.
151 Either a Git or Mercurial directory, a pre-generated log file (see -\-git\-log\-command, -\-hg\-log\-command or the custom log format) or '\-' to read STDIN. If path is ommited \fIgource\fR will attempt to read a log from the current directory.
152152 .SH GIT AND MERCURIAL EXAMPLES
153153
154154 View the log of the respository in the current path:
193193 printf(" --output-ppm-stream FILE Write frames as PPM to a file ('-' for STDOUT)\n");
194194 printf(" --output-framerate FPS Framerate of output (25,30,60)\n\n");
195195
196 printf("PATH may either be a Git directory, a supported log file or '-' to read STDIN.\n");
196 printf("PATH may be a Git or Mercurial directory, a log file or '-' to read STDIN.\n");
197197 printf("If ommited, gource will attempt to generate a log from the current directory.\n\n");
198198
199199 #ifdef _WIN32
1717 #ifndef GOURCE_H
1818 #define GOURCE_H
1919
20 #define GOURCE_VERSION "0.20"
20 #define GOURCE_VERSION "0.21"
2121
2222 #ifdef _WIN32
2323 #include "windows.h"