Compare commits

...

2 Commits

Author SHA1 Message Date
Alejandro Martinez
f1054deb83 Fix Strava upload Train simulations as VirtualRide
Partially revert #4337 to fix this regression,
the presence of TRAIN XData is used to identify
an activity as VirtualRide in Strava upload.
2025-06-26 14:27:40 -03:00
Alejandro Martinez
85d343b709 v3.7 2025-05-30 15:06:19 -03:00
2 changed files with 3 additions and 6 deletions

View File

@@ -131,7 +131,7 @@
// the next two will with each build/release
#define VERSION_LATEST 5005
#define VERSION_STRING "V3.7"
//#define GC_VERSION VERSION_STRING // To force version string on non-tagged ci builds
#define GC_VERSION VERSION_STRING // To force version string on non-tagged ci builds
// default config for this release cycle
#define VERSION_CONFIG_PREFIX "http://www.goldencheetah.org/defaults/3.7"

View File

@@ -2303,11 +2303,8 @@ void TrainSidebar::diskUpdate()
<< "," << displayLatitude;
}
QString slopeStr = (status&RT_MODE_SLOPE)?QString::number(slope):QString("");
QString loadStr = (status&RT_MODE_ERGO)?QString::number(load):QString("");
recordFileStream << "," // headwind
<< "," << slopeStr
<< "," << slope
<< "," << displayTemp
<< "," << displayWorkoutLap
<< "," << displayLRBalance
@@ -2319,7 +2316,7 @@ void TrainSidebar::diskUpdate()
<< "," << displayTHB
<< "," << displayO2HB
<< "," << displayHHB
<< "," << loadStr
<< "," << load
<< "," << displayRppb
<< "," << displayRppe
<< "," << displayRpppb