diff --git a/src/GcUpgrade.cpp b/src/GcUpgrade.cpp index 1e7f7cadf..734ececc8 100644 --- a/src/GcUpgrade.cpp +++ b/src/GcUpgrade.cpp @@ -94,7 +94,7 @@ GcUpgrade::upgrade(const QDir &home) // DO NOT CHANGE THE VERSION 3 UPGRADE PROCESS ABOVE, ADD TO IT BELOW // 3.0 SP1 upgrade processing - 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 ed0d3d1a2..a1f623c44 100644 --- a/src/GcUpgrade.h +++ b/src/GcUpgrade.h @@ -32,10 +32,12 @@ // 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 2014) // 3040 - V3.1 DEVELOPMENT #define VERSION3_BUILD 3010 // released #define VERSION3_SP1 3030 // released +#define VERSION3_SP2 3032 // released #define VERSION_LATEST 3040 #define VERSION_STRING "V3.1 (dev)"