mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
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
This commit is contained in:
@@ -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()));
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user