From c6b1f30dd54f01a83801bfce84b95de5d47f3595 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Fri, 28 Feb 2014 21:32:07 +0000 Subject: [PATCH] Release 3.0-SP2 Releasing v3.0-SP2 A bug fix update for v3.0 Change Log * FitRideFile: correct issue with unknown field type in fit file * FitRideFile: We may need to add string support * FitRideFile: wrong copy-paste * FitRideFile: Fix SEGV on bad file/header in FitRideFile * GpxRideFile: using milliseconds for delta_t when calculating speed, supports Suunto Ambit gpx datafiles * WkoRideFile: Fix WKO import - another optpad constant * GoogleMap: Small fix for Google Maps * Performance: Speed up on mass import processing * Trainer: Added Support for Elite Supercrono PowerMag * Trainer: Added virtual power support for Tacx Blue Twist trainer * Trainer: Added virtual power support for Tacx Blue Motion trainer * Trainer: added Tacx Blue Twist and Tacx Blue Motion to Device Wizard * TrainingPeaks: Made the fault handling in TPDownload a little more user friendly --- src/GcUpgrade.cpp | 2 +- src/GcUpgrade.h | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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 {