4 Commits

Author SHA1 Message Date
hikerstk
b41810c075 Updated version number.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/0.6.2a@4127 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2009-10-16 13:16:20 +00:00
hikerstk
96dad4fa6d Updated version number to 0.6.2a, added description.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/0.6.2a@4126 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2009-10-16 02:49:19 +00:00
hikerstk
2401e56366 Moved the default directory to store user config files in
from . to APPDATA, which is a user-writeable directory and will
therefore avoid a crash on Windows Vista when trying to
write the user config file.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/0.6.2a@4123 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2009-10-16 01:29:19 +00:00
hikerstk
4979df5837 Created branch for 0.6.2a.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/0.6.2a@4122 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2009-10-16 01:23:17 +00:00
6 changed files with 26 additions and 10 deletions

View File

@@ -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
not subtract already allocated points.
* Bugfix: A race could be finished with an invalid shortcut.

5
NEWS
View File

@@ -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)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Bugfix: battle mode would not display track groups.

View File

@@ -1,6 +1,6 @@
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_PREREQ(2.61)

View File

@@ -1,5 +1,5 @@
Super TuxKart - 0.6.2
=====================
Super TuxKart - 0.6.2a
======================
Visit us at http://supertuxkart.sourceforge.net

View File

@@ -262,9 +262,15 @@ std::string FileManager::getHomeDir() const
{
std::string DIRNAME;
#ifdef WIN32
// For now the old windows config way is used: store a config file
// in the current directory (in other OS a special subdirectory is created)
DIRNAME=".";
// Try to use the APPDATA directory to store config files and highscore
// lists. If not defined, used the current directory.
std::ostringstream s;
if(getenv("APPDATA")!=NULL)
{
s<<getenv("APPDATA")<<"/supertuxkart/";
DIRNAME=s.str();
}
else DIRNAME=".";
#else
if(getenv("HOME")!=NULL)
{

View File

@@ -517,7 +517,7 @@
Optimization="0"
WholeProgramOptimization="false"
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;&quot;$(STK_INCLUDE)&quot;;../../../src/enet/include"
PreprocessorDefinitions="BT_NO_PROFILE;HAVE_OPENAL;HAVE_OGGVORBIS;_DEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\&quot;0.6.2\&quot;;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;DEBUG;PACKAGE=\&quot;supertuxkart\&quot;;HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
PreprocessorDefinitions="BT_NO_PROFILE;HAVE_OPENAL;HAVE_OGGVORBIS;_DEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\&quot;0.6.2a\&quot;;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;DEBUG;PACKAGE=\&quot;supertuxkart\&quot;;HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
GeneratePreprocessedFile="0"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -605,7 +605,7 @@
Name="VCCLCompilerTool"
WholeProgramOptimization="true"
AdditionalIncludeDirectories="../../../src;../../../src/bullet/src;&quot;$(STK_INCLUDE)&quot;;../../../src/enet/include"
PreprocessorDefinitions="HAVE_OPENAL;HAVE_OGGVORBIS;NDEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\&quot;0.6.2\&quot;;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;BT_NO_PROFILE;PACKAGE=\&quot;supertuxkart\&quot;;HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
PreprocessorDefinitions="HAVE_OPENAL;HAVE_OGGVORBIS;NDEBUG;_CONSOLE;WIN32;NOMINMAX;VERSION=\&quot;0.6.2a\&quot;;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;BT_NO_PROFILE;PACKAGE=\&quot;supertuxkart\&quot;;HAVE_GETTEXT;ENABLE_NLS;HAVE_GLUT"
RuntimeLibrary="2"
UsePrecompiledHeader="0"
WarningLevel="3"