Skip to content

Commit 4e340eb

Browse files
committed
Update version and profile folder for the beta
1 parent 8209a81 commit 4e340eb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.4)
22

33
# root CMakeLists for the SuperTuxKart project
44
project(SuperTuxKart)
5-
set(PROJECT_VERSION "git")
5+
set(PROJECT_VERSION "0.10-beta1")
66
add_definitions( -DSUPERTUXKART_VERSION="${PROJECT_VERSION}" )
77

88
if(NOT (CMAKE_MAJOR_VERSION VERSION_LESS 3))

data/SuperTuxKart-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.8.1</string>
20+
<string>0.10-beta1</string>
2121
<key>CFBundleSignature</key>
2222
<string>SPTK</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.8.1</string>
24+
<string>0.10-beta1</string>
2525
<key>CSResourcesFileMapped</key>
2626
<true/>
2727
<key>LSMinimumSystemVersion</key>

src/io/file_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ void FileManager::checkAndCreateConfigDir()
930930
if(m_user_config_dir.size()>0 && *m_user_config_dir.rbegin()!='/')
931931
m_user_config_dir += "/";
932932

933-
m_user_config_dir +="0.10-git/";
933+
m_user_config_dir +="0.10-beta/";
934934
if(!checkAndCreateDirectoryP(m_user_config_dir))
935935
{
936936
Log::warn("FileManager", "Can not create config dir '%s', "

tools/windows_installer/supertuxkart-64bit.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
; Version information
3333
; TOOD get these from the source code directly
3434
!define VERSION_MAJOR 0
35-
!define VERSION_MINOR 9
36-
!define VERSION_REVISION 3
35+
!define VERSION_MINOR 10
36+
!define VERSION_REVISION 0
3737
; Empty means stable, could be -git, -rc1
38-
!define VERSION_BUILD "-git"
38+
!define VERSION_BUILD "-beta1"
3939

4040
;Name and file
4141
!define APPNAME "SuperTuxKart"

tools/windows_installer/supertuxkart.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
; Version information
3333
; TOOD get these from the source code directly
3434
!define VERSION_MAJOR 0
35-
!define VERSION_MINOR 9
36-
!define VERSION_REVISION 3
35+
!define VERSION_MINOR 10
36+
!define VERSION_REVISION 0
3737
; Empty means stable, could be -git, -rc1
38-
!define VERSION_BUILD "-git"
38+
!define VERSION_BUILD "-beta1"
3939

4040
;Name and file
4141
!define APPNAME "SuperTuxKart"

0 commit comments

Comments
 (0)