Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
b41810c075 | ||
|
96dad4fa6d | ||
|
2401e56366 | ||
|
4979df5837 |
@@ -1,6 +1,11 @@
|
|||||||
SuperTuxKart 0.6.2 (July 2009)
|
SuperTuxKart 0.6.2a (October 2009)
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
* Bugfix: game could crash in rare circumstances.
|
* Bugfix: STK would crash while trying to save the config file
|
||||||
|
on Windows Vista.
|
||||||
|
|
||||||
|
SuperTuxKart 0.6.2 (July 2009)
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
* Bugfix: Game could crash in rare circumstances.
|
||||||
* Bugfix: Restarting a GP (with the in-race menu ESC) would
|
* Bugfix: Restarting a GP (with the in-race menu ESC) would
|
||||||
not subtract already allocated points.
|
not subtract already allocated points.
|
||||||
* Bugfix: A race could be finished with an invalid shortcut.
|
* Bugfix: A race could be finished with an invalid shortcut.
|
||||||
|
5
NEWS
5
NEWS
@@ -1,3 +1,8 @@
|
|||||||
|
SuperTuxkart 0.6.2a (October 2009)
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
* Bugfix: STK would crash while trying to save the config file
|
||||||
|
on Windows Vista.
|
||||||
|
|
||||||
SuperTuxkart 0.6.2 (July 2009)
|
SuperTuxkart 0.6.2 (July 2009)
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
* Bugfix: battle mode would not display track groups.
|
* Bugfix: battle mode would not display track groups.
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
dnl Process this file with autogen.sh to produce a configure script.
|
dnl Process this file with autogen.sh to produce a configure script.
|
||||||
|
|
||||||
AC_INIT(supertuxkart, 0.6.2)
|
AC_INIT(supertuxkart, 0.6.2a)
|
||||||
AC_CONFIG_SRCDIR([src/main.cpp])
|
AC_CONFIG_SRCDIR([src/main.cpp])
|
||||||
|
|
||||||
AC_PREREQ(2.61)
|
AC_PREREQ(2.61)
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
Super TuxKart - 0.6.2
|
Super TuxKart - 0.6.2a
|
||||||
=====================
|
======================
|
||||||
Visit us at http://supertuxkart.sourceforge.net
|
Visit us at http://supertuxkart.sourceforge.net
|
||||||
|
|
||||||
|
|
||||||
|
@@ -262,9 +262,15 @@ std::string FileManager::getHomeDir() const
|
|||||||
{
|
{
|
||||||
std::string DIRNAME;
|
std::string DIRNAME;
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
// For now the old windows config way is used: store a config file
|
// Try to use the APPDATA directory to store config files and highscore
|
||||||
// in the current directory (in other OS a special subdirectory is created)
|
// lists. If not defined, used the current directory.
|
||||||
DIRNAME=".";
|
std::ostringstream s;
|
||||||
|
if(getenv("APPDATA")!=NULL)
|
||||||
|
{
|
||||||
|
s<<getenv("APPDATA")<<"/supertuxkart/";
|
||||||
|
DIRNAME=s.str();
|
||||||
|
}
|
||||||
|
else DIRNAME=".";
|
||||||
#else
|
#else
|
||||||
if(getenv("HOME")!=NULL)
|
if(getenv("HOME")!=NULL)
|
||||||
{
|
{
|
||||||
|
@@ -517,7 +517,7 @@
|
|||||||
Optimization="0"
|
Optimization="0"
|
||||||
WholeProgramOptimization="false"
|
WholeProgramOptimization="false"
|
||||||
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;"$(STK_INCLUDE)";../../../src/enet/include"
|
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;"$(STK_INCLUDE)";../../../src/enet/include"
|
||||||
PreprocessorDefinitions="BT_NO_PROFILE;HAVE_OPENAL;HAVE_OGGVORBIS;_DEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\"0.6.2\";_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;DEBUG;PACKAGE=\"supertuxkart\";HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
|
PreprocessorDefinitions="BT_NO_PROFILE;HAVE_OPENAL;HAVE_OGGVORBIS;_DEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\"0.6.2a\";_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;DEBUG;PACKAGE=\"supertuxkart\";HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
|
||||||
GeneratePreprocessedFile="0"
|
GeneratePreprocessedFile="0"
|
||||||
MinimalRebuild="true"
|
MinimalRebuild="true"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
@@ -605,7 +605,7 @@
|
|||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
WholeProgramOptimization="true"
|
WholeProgramOptimization="true"
|
||||||
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;"$(STK_INCLUDE)";../../../src/enet/include"
|
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;"$(STK_INCLUDE)";../../../src/enet/include"
|
||||||
PreprocessorDefinitions="HAVE_OPENAL;HAVE_OGGVORBIS;NDEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\"0.6.2\";_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;BT_NO_PROFILE;PACKAGE=\"supertuxkart\";HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
|
PreprocessorDefinitions="HAVE_OPENAL;HAVE_OGGVORBIS;NDEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\"0.6.2a\";_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;BT_NO_PROFILE;PACKAGE=\"supertuxkart\";HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
|
Reference in New Issue
Block a user