aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--installer/UltraStar Deluxe.nsi2
-rw-r--r--installer/settings/variables.nsh4
-rw-r--r--src/base/UConfig.pas4
4 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 99f2fb3f..c240aa7d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@ AC_PREREQ(2.61)
# Init autoconf
AC_INIT([ultrastardx],
- [1.1-RC],
+ [1.1],
[http://sourceforge.net/tracker/?group_id=191560&atid=937872])
# specify the website here
PACKAGE_WEBSITE="http://www.ultrastardeluxe.org/"
diff --git a/installer/UltraStar Deluxe.nsi b/installer/UltraStar Deluxe.nsi
index 6eeeefb1..e98edc54 100644
--- a/installer/UltraStar Deluxe.nsi
+++ b/installer/UltraStar Deluxe.nsi
@@ -531,7 +531,7 @@ Function .onInit
${UAC.I.Elevate.AdminOnly}
var /GLOBAL version
- StrCpy $version "1.1RC"
+ StrCpy $version "1.1"
System::Call 'kernel32::CreateMutexA(i 0, i 0, t "USdx Installer.exe") ?e'
diff --git a/installer/settings/variables.nsh b/installer/settings/variables.nsh
index 43d19a7f..331df7e3 100644
--- a/installer/settings/variables.nsh
+++ b/installer/settings/variables.nsh
@@ -4,7 +4,7 @@
; Product Information:
-!define version "1.1RC" ; Make sure version is also set in onInit
+!define version "1.1" ; Make sure version is also set in onInit
!define name "UltraStar Deluxe"
@@ -86,4 +86,4 @@
!define download_sub3_song3 "http://downloads.sourceforge.net/ultrastardx/usdx_song-wise_guys_-_mensch_wo_bist_du_kar.zip"
; THEMES
-; (removed theme section - currently no additional skins available for this usdx version) \ No newline at end of file
+; (removed theme section - currently no additional skins available for this usdx version)
diff --git a/src/base/UConfig.pas b/src/base/UConfig.pas
index 74415f4d..e48b5493 100644
--- a/src/base/UConfig.pas
+++ b/src/base/UConfig.pas
@@ -130,7 +130,7 @@ const
USDX_VERSION_MAJOR = 1;
USDX_VERSION_MINOR = 1;
USDX_VERSION_RELEASE = 0;
- USDX_VERSION_STATE = 'RC';
+ USDX_VERSION_STATE = '';
USDX_STRING = 'UltraStar Deluxe';
(*
@@ -229,4 +229,4 @@ begin
' Build';
end;
-end. \ No newline at end of file
+end.