Codebase list gource / 8e44943
Imported Upstream version 0.22 Andrew Caudwell 14 years ago
8 changed file(s) with 24 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 0.22:
1 * Fixed Mercurial log order.
2
3 0.21b:
4 * Fixed windows build.
5
06 0.21:
17 * Some documentation fixes.
28
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.61 for Gource 0.21.
2 # Generated by GNU Autoconf 2.61 for Gource 0.22.
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.21'
577 PACKAGE_STRING='Gource 0.21'
576 PACKAGE_VERSION='0.22'
577 PACKAGE_STRING='Gource 0.22'
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.21 to adapt to many kinds of systems.
1218 \`configure' configures Gource 0.22 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.21:";;
1287 short | recursive ) echo "Configuration of Gource 0.22:";;
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.21
1390 Gource configure 0.22
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.21, which was
1404 It was created by Gource $as_me 0.22, 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.21, which was
9800 This file was extended by Gource $as_me 0.22, 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.21
9843 Gource config.status 0.22
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.21, [acaudwell@gmail.com])
5 AC_INIT(Gource, 0.22, [acaudwell@gmail.com])
66 AC_CONFIG_SRCDIR([src/main.h])
77
88 AC_CANONICAL_HOST
8686 <Unit filename="src\gitraw.h" />
8787 <Unit filename="src\gource.cpp" />
8888 <Unit filename="src\gource.h" />
89 <Unit filename="src\hg.cpp" />
90 <Unit filename="src\hg.h" />
8991 <Unit filename="src\main.cpp" />
9092 <Unit filename="src\main.h" />
9193 <Unit filename="src\pawn.cpp" />
9294 <Unit filename="src\pawn.h" />
95 <Unit filename="src\ppm.cpp" />
96 <Unit filename="src\ppm.h" />
9397 <Unit filename="src\slider.cpp" />
9498 <Unit filename="src\slider.h" />
9599 <Unit filename="src\spline.cpp" />
98102 <Unit filename="src\user.h" />
99103 <Unit filename="src\zoomcamera.cpp" />
100104 <Unit filename="src\zoomcamera.h" />
101 <Unit filename="src\ppm.cpp" />
102 <Unit filename="src\ppm.h" />
103105 <Extensions>
104106 <code_completion />
105107 <envvars />
5353
5454 int pos = exepath.rfind("\\");
5555
56 path = exepath.substr(0, pos+1);
56 std::string path = exepath.substr(0, pos+1);
5757 resource_dir = path + std::string("\\data\\");
5858 fonts_dir = path + std::string("\\data\\fonts\\");
5959 #else
119119 RECT windowRect;
120120 if(GetWindowRect(consoleWindow, &windowRect)) {
121121 float width = windowRect.right - windowRect.left;
122 MoveWindow(consoleWindow,windowRect.left,windowRect.top,width,1000,true);
122 MoveWindow(consoleWindow,windowRect.left,windowRect.top,width,950,true);
123123 }
124124 }
125125 #endif
1717 #ifndef GOURCE_H
1818 #define GOURCE_H
1919
20 #define GOURCE_VERSION "0.21"
20 #define GOURCE_VERSION "0.22"
2121
2222 #ifdef _WIN32
2323 #include "windows.h"
2424
2525 std::string gource_style_path = gSDLAppResourceDir + std::string("gource.style");
2626
27 return std::string("hg log --style ") + gource_style_path;
27 return std::string("hg log -r 0:tip --style ") + gource_style_path;
2828 }
2929
3030 MercurialLog::MercurialLog(std::string logfile) : RCommitLog(logfile) {