diff --git a/src/GcUpgrade.cpp b/src/GcUpgrade.cpp index fbbdb57f7..9e4627b6d 100644 --- a/src/GcUpgrade.cpp +++ b/src/GcUpgrade.cpp @@ -93,7 +93,7 @@ GcUpgrade::upgrade(const QDir &home) // Versions after 3 should add their upgrade processing at this point // DO NOT CHANGE THE VERSION 3 UPGRADE PROCESS ABOVE, ADD TO IT BELOW - if (last < VERSION3_SP1) { + if (last < VERSION3_SP2) { // 2. Remove old CLucece 'index' QFile index(QString("%1/index").arg(home.canonicalPath())); diff --git a/src/GcUpgrade.h b/src/GcUpgrade.h index c265ae0e7..7528faf4d 100644 --- a/src/GcUpgrade.h +++ b/src/GcUpgrade.h @@ -32,13 +32,15 @@ // 3010 - V3.0 RELEASE (June 7 2013) // 3020 - V3.0 SP1 RC1 // 3030 - V3.0 SP1 RELEASE (December 2013) +// 3032 - V3.0 SP2 RELEASE (March 2013) // 3040 - V3.1 DEVELOPMENT // different branch -#define VERSION_LATEST 3030 -#define VERSION_STRING "V3.0 SP1" +#define VERSION_LATEST 3032 +#define VERSION_STRING "V3.0 SP2" #define VERSION3_BUILD 3010 #define VERSION3_SP1 3030 +#define VERSION3_SP2 3032 class GcUpgrade {